• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. R

    TFS 1.X+ TFS 1.3, Remove item on spot with timer

    post print of the error too
  2. R

    Use 100x item if have 100 item

    edited, copy and try aagain
  3. R

    error house price tfs 1.2

    your photo is horrible, copy the code, click on code </> and post here
  4. R

    Use 100x item if have 100 item

    local config = { [12782] = {exp = 97001, lvl = 79001, typ3="Hitpoints"}, [12783] = {exp = 97002, lvl = 79002, typ3="Manapoints"}, [12784] = {exp = 97003, lvl = 79003, typ3="Magic Level"}, [12785] = {exp = 97004, lvl = 79004, typ3="Melee"}, --[?] = {exp = 97005, lvl = 79005...
  5. R

    Lua Frags Look

    ?
  6. R

    Compiling No level difference restriction on kills

    post the complet code
  7. R

    Lua Add +1 frag if kill player

    function addPlayerFrag(cid, value) db.executeQuery("UPDATE players SET frags_all = frags_all + " .. value .. " WHERE id = " .. getPlayerGUID(cid) .. ";") return true end function onKill(cid, target) if isPlayer(cid) and isPlayer(target) then addPlayerFrag(cid, 1) end...
  8. R

    Lua Formula Exp script

    local expGainMultiplier = 1000 function onKill(cid, target, lastHit) if(isPlayer(cid) and isPlayer(target)) then if getPlayerIp(cid) ~= getPlayerIp(target) then doPlayerAddExperience(cid, (getPlayerExperience(target) / 1000) * expGainMultiplier) -- formula here else...
  9. R

    Solved Dont attack player with same ip

    function onCombat(cid, target) if getTileInfo(getThingPos (cid)). pvp then return true end if isPlayer(target) then if getPlayerIp(cid) ~= getPlayerIp(target) then if getPlayerGuildId(cid) ~= 0 and getPlayerGuildId(cid) == getPlayerGuildId(target) then...
  10. R

    RevScripts Change Position Script

    local setting = { centerRoom = {x = 32207, y = 32047, z = 14}, storage = Storage.DreamCourts.DreamScar.plaguerootTimer, Pillar1pos = {x = 32204, y = 32045, z = 14}, bossPosition = {x = 32208, y = 32047, z = 14}, kickPosition = {x = 32208, y = 32035, z = 13}...
  11. R

    Programmer I need to get some tibia.dat and tibia.spr

    A while ago a person stole some sprites from me and put them in his game. Now i need to do the same, get his sprites and put them in my game. If someone does this type of service you can send me a private message, the service will be paid!
  12. R

    Programmer TFS 1.X / OTClient services.

    He already did some jobs for me, this week I'm trying to contact him to do another job, but I didn't get a response. Maybe he is busy with other things and cannot answer us for now, maybe he have a particular problem that we don't know either. I only have praise for him for the work done to me...
  13. R

    Linux SSl certificate expiration (how can i renew)

    I received this email for "Let's Encrypt Expiry Bot <[email protected]>" Your certificate (or certificates) for the names listed below will expire in 19 days (on 20 Mar 21 16:59 +0000). Please make sure to renew your certificate before then, or visitors to your website will encounter...
  14. R

    TFS 1.X+ If die BY MONSTER, loss 50% exp if DIE by player

    Hi, i'm using tfs 1.3. How can i put if player DIE by monsters, he loss 50% less EXP if he die by players? OBS: NEED if the monster is the biggest damage killer. (not if monster is last hit killer) I think is something here: https://github.com/otland/forgottenserver/blob/master/src/player.cpp#L1910
  15. R

    GDB Dump

    What have on this pos? Pos1: 62611, 32767, 0 Pos2: 869, 1148, 5
  16. R

    TFS 1.X+ Tfs 1.3 8.6 default source, bug in online players, after some time (rare bug)

    hello, I'm using tfs 1.3 8.6 and there is a bug that happens rare (very rare) there are 50 players playing and the site shows 50 for several days (ok). but out of nowhere, someday, there are for example 50 players online and the site shows 40. function website that count players online...
  17. R

    TFS 1.X+ tfs 1.3 bug, player deleted when died?? 'Error while saving player: Dominic'

    1) A player died, and i see this error on log, and player was deleted, how i can solve it: [Error - mysql_real_query] Query: INSERT INTO `player_deaths` (`player_id`, `time`, `level`, `killed_by`, `is_player`, `mostdamage_by`, `mostdamage_is_player`, `unjustified`, `mostdamage_unjustified`)...
Back
Top