• 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. Izaack

    The stacked runes, I throw one and spend all, how can I make them not all spend?

    check this autoStackCumulatives = false in config.lua and change true
  2. Izaack

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Even with 0 days of VIP status, he continues to access the VIP area. storage: 13545

    function onLogin(cid) local vipStorage = getPlayerStorageValue(cid, 13545) if vipStorage <= os.time() then local pos = {x = 154, y = 51, z = 7} doTeleportThing(cid, pos) doPlayerPopupFYI(cid, "Sua VIP Account acabou.") if...
  3. Izaack

    The stacked runes, I throw one and spend all, how can I make them not all spend?

    check this funcion in sourcers conjureRune
  4. Izaack

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Perfect System VIP 2.0 - Doesn't work as it should

    replace all doPlayerPopupFYI(cid, by doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR,
  5. Izaack

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Perfect System VIP 2.0 - Doesn't work as it should

    I think it does not eliminate the name because you do not have it specified. if getPlayerStorageValue(cid, 13545) <= os.time() then db.executeQuery("UPDATE `players` SET `name` = '"..name.."' WHERE `id` = "..getPlayerGUID(cid)..";") doRemoveCreature(cid) end You could add this code in...
  6. Izaack

    C++ attack on diagonals tfs 1.5

    bump
  7. Izaack

    C++ attack on diagonals tfs 1.5

    Exactly as mentioned, there is no error, but in the sqm where the dragons are, the player cannot attack. I need to know how to make it attack those sqm as well. Does anyone have an idea?
  8. Izaack

    C++ attack on diagonals tfs 1.5

    The error is shown in the image, where the dragons are, the player does not attack in those positions.
  9. Izaack

    C++ attack on diagonals tfs 1.5

    Bro, I get that error with that PR, how can I solve it?
  10. Izaack

    C++ attack on diagonals tfs 1.5

    bump
  11. Izaack

    C++ attack on diagonals tfs 1.5

    Hello friends of Otland, I have a question, currently I need to be able to attack on these diagonals, I followed a commit on github on this topic but I discovered that on these two diagonals I cannot get the player to attack when in the old versions of Tibia it could, do you know how? can I...
  12. Izaack

    Solved MAGIC WALL REMOVE WHEN DOWN STAIRS

    Good evening, how are you, could someone help me solve this error that I have with the magic wall rune, when you go down a ladder I need it to be eliminated. I am using Nekiro tfs 1.5 .
  13. Izaack

    Solved [MyACC] Call to a member function getID() on null

    What's up friends, I've been trying to correct this error but I couldn't, could someone help me? is for a storage query for a top frags box. I would be very grateful if you could help me, my error says a function but I don't know where it is or if it has to be created $storageData =...
  14. Izaack

    TFS 1.X+ War Mine TFS 1.5

    Thank you very much bro, it worked perfectly! thanks!
  15. Izaack

    TFS 1.X+ War Mine TFS 1.5

    this error when stepping on the crack does not do the damage
  16. Izaack

    TFS 1.X+ War Mine TFS 1.5

    Thanks brother, but how do I now do the damage from the crack when they step on it? If the player has utamo vita, first I lower the life and then the mana. the action only gives the damage if you use it in the backpack to the same player.
  17. Izaack

    TFS 1.X+ War Mine TFS 1.5

    Hello friends of Otland, I am starting to do scripts, I am currently making a war mine, I have two questions The first: how can I make the item only activate on the floor? The second: how can I make the damage when stepped on if the player has utamo vita lower his mana first. Here is a gift of...
Back
Top