• 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!

Search results

  1. Peonso

    🇺🇦 Sprite Set - Donate or run fundraiser, get these sprites.

    It's a déjà vu? He we go again.
  2. Peonso

    7.7 damage and spell formulae

    When you say formulas I'm thinking only about damage. Regarding exhausting interactions, as you saw in the documentation I don't know the exact details on how it should work, nor found a server claiming those details work, Seliro's videos are lost aswell, someone would need to run a 7.7 real...
  3. Peonso

    old exhaust system.

    https://github.com/Ezzz-dev/OTHire/issues/144
  4. Peonso

    7.7 damage and spell formulae

    https://github.com/Ezzz-dev/OTHire/commit/43d3b1f3c83675451756d3e20064f1476e3ac7d0 On how to implement stuff to TFS, you could check how it was done in GitHub - Ezzz-dev/Nostalrius: Nostalrius is a 7.7 Tibia Clone Project based on The Forgotten Server 1.2 and CipSoft files...
  5. Peonso

    any free vps?

    I'm using this one for some weeks already How to get FREE VPS from Oracle Cloud (https://otland.net/threads/how-to-get-free-vps-from-oracle-cloud.279318/) You could use search aswell.
  6. Peonso

    Gesior2012 and MyAAC bug - release 2022-04-26 at 21:00 CET

    Gesior for president!
  7. Peonso

    Problem with add sprite

    If you are adding a new item add a new number aftet last valid id and make server and client ids of that item match.
  8. Peonso

    nostalrius 7.7 Select query

    Client will crash aswell because it requires soul info.
  9. Peonso

    TFS 1.2 npc that checks if monster x name exist if yes teleport

    local target = Creature("CreatureName") if target then player:teleportTo(target:getPosition()) else player:sendCancelMessage("Creature not found.") end
  10. Peonso

    nostalrius 7.7 Select query

    What you mean with "i basically removed 'soul' soulpoints everywhere"? Because when you ask if you need to compile it you sound kinda lost. Of course you need to compile the server and remove soul from the sources.
  11. Peonso

    Problem with add sprite

    Probably conflict on your items.otb items.xml Tibia.spr Tibia.dat combo, make sure you updated items.otb items.xml on rme folder and set 10.98 client on rme preferences to the updated Tibia.spr Tibia.dat folder.
  12. Peonso

    Lua TFS 1.X a nil value

    I don't know why line 271 is wrong. Sorry bro ;/ I gave my best.
  13. Peonso

    Problem with add sprite

    Change it there on proprieties window to 10.98, might work.
  14. Peonso

    Lua TFS 1.X a nil value

    local conjureItem = self:getItemById(reagentId, true, -1) if reagentId ~= 0 and not conjureItem then self:sendCancelMessage(RETURNVALUE_YOUNEEDAMAGICITEMTOCASTSPELL) self:getPosition():sendMagicEffect(CONST_ME_POFF) return false elseif reagentId ~= 0 and...
  15. Peonso

    Problem with add sprite

    Check on map proprieties if you map is truly a 10.98 map, probably not.
  16. Peonso

    Lua TFS 1.X a nil value

    local conjureItem = self:getItemById(reagentId, true) if reagentId ~= 0 and not conjureItem then self:sendCancelMessage(RETURNVALUE_YOUNEEDAMAGICITEMTOCASTSPELL) self:getPosition():sendMagicEffect(CONST_ME_POFF) return false else self:getItemById(reagentId...
  17. Peonso

    Problem with add sprite

    You need to go to preferences and search for 10.98 files on the folder u saved your new sprites, you might have the wrong sprite files set.
  18. Peonso

    Error Quest Chayenne realm TFS 1.5

    Try to replace this line if getGlobalStorageValue(71543) <= os.time() then For if tonumber(getGlobalStorageValue(71543)) <= os.time() then
  19. Peonso

    Lua add money checker

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  20. Peonso

    Lua TFS 1.X a nil value

    Replace local conjureItem = self:getItemById(reagentId, true, -1) if reagentId ~= 0 and not conjureItem then self:sendCancelMessage(RETURNVALUE_YOUNEEDAMAGICITEMTOCASTSPELL) self:getPosition():sendMagicEffect(CONST_ME_POFF) return false end local item =...
Back
Top