• 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

    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.
  2. Peonso

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

    Gesior for president!
  3. 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.
  4. Peonso

    nostalrius 7.7 Select query

    Client will crash aswell because it requires soul info.
  5. 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
  6. 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.
  7. 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.
  8. Peonso

    Lua TFS 1.X a nil value

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

    Problem with add sprite

    Change it there on proprieties window to 10.98, might work.
  10. 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...
  11. Peonso

    Problem with add sprite

    Check on map proprieties if you map is truly a 10.98 map, probably not.
  12. 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...
  13. 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.
  14. 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
  15. 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)...
  16. 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 =...
  17. Peonso

    Hide banned accounts from Highscores

    Replace b.account_id depending on your ban table. I might have fucked up join syntax, but should be something like that. $timeNow = time(); SELECT p.name, p.level, p.vocation, za.flag, ps.value AS value FROM players AS p INNER JOIN znote_accounts AS za ON p.account_id=za.account_id INNER JOIN...
  18. Peonso

    DoRemoveCreature and DoCreateNPC

    Try doRemoveCreature(getCreaturePosition(getCreatureByName('Test NPC').uid))
  19. Peonso

    NPC selling items in say not trade window

    You can change here forgottenserver/modules.lua at master · otland/forgottenserver (https://github.com/otland/forgottenserver/blob/master/data/npc/lib/npcsystem/modules.lua#L29) to SHOPMODULE_MODE_TALK
  20. Peonso

    Problem with add sprite

    You added to remeres' items.xml and tibia.spr and dat that RME is loading?
Back
Top