• 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. Lava Titan

    TFS 1.2 - Simple Magic Effects Function

    What do you mean?
  2. Lava Titan

    TFS 1.2 - Simple Magic Effects Function

    Updated first post :P
  3. Lava Titan

    TFS 1.2 - Simple Magic Effects Function

    Hey there, I created this simple function, it's nothing special but I guess it may save some lines for some people :p Some people may find it useless I guess, but like I said it's nothing special, it's just a simple function :p How to add? It's very simple, you can start by browsing...
  4. Lava Titan

    [ALL ACCS] LiveChat java

    nice I always wanted something like this XD
  5. Lava Titan

    Lua attempt to concatenate a nil value

    wow can't belive I missed that XD thanks it works :P
  6. Lava Titan

    TFS 1.1 , login tibia 10.9 i need upgrade 10.77 to 10.9 !

    If anyone can vouch for you I'll do it. Sorry to be this way but theres alot of "new" people scamming here... like Viking
  7. Lava Titan

    Lua attempt to concatenate a nil value

    hey, I created this function to use on donation items for example, and create few lines in a log file with details of usage and seems I'm missing something cuz getting an error that I'm not able to understand compat.lua function logItemUsage(playerId, itemId, directory) local log_str=""...
  8. Lava Titan

    Lua How to use global storage in TFS 1.2?

    thanks, I totally forgot about the nil value :P here's what I made: when first player logins, doesnt matter what player it will set global storage to 0 if it's nill (there must be other ways but I'm short of ideas atm if Game.getStorageValue(GLOBALSTORAGE_SCROLLS_USED) == nil then...
  9. Lava Titan

    Lua How to use global storage in TFS 1.2?

    so with Game.setStorageValue I will be able to track for example total premium scrolls used on the server? like Game.setStorageValue(PACC_STORAGE, (Game.getStorageValue(PACC_STORAGE)+1)) Edit: doesn't work Shouldn't Game.getStorage etc etc... be on this list? https://i.imgur.com/YwsIAsf.png
  10. Lava Titan

    Lua How to use global storage in TFS 1.2?

    Hiho, like the title says could some1 explain me please how to set global storage in TFS 1.2? Thanks in Advance <3
  11. Lava Titan

    When premium end player to back city 1.2

    What if player set town in premium zone? If you do that he will be teleported to premium zone anyways... This is what you want, but I don't advise using it if players can set town in premium zone. local freeTown = Town(player:getTown()):getTemplePosition() -- edit here town where player...
  12. Lava Titan

    When premium end player to back city 1.2

    You can get it from map editor CTRL+T
  13. Lava Titan

    When premium end player to back city 1.2

    in login.lua add: local freeTown = Town(id or name):getTemplePosition() -- edit here town where player should get teleported to if player:getPremiumDays() <= 0 and player:getStorageValue(998899) == 1 then player:teleportTo(freeTown) player:sendTextMessage(MESSAGE_STATUS_WARNING, "Your...
  14. Lava Titan

    [TFS 1.X] Prize Box (By % Chance)

    true I totally forgot about that XD my bad, sorry to every1 who got cancer reading my posts in this thread :P
  15. Lava Titan

    [TFS 1.X] Prize Box (By % Chance)

    both items are giving random items not items by chance suprise bag: local config = { [6570] = { -- blue present {2687, 10}, {6394, 3}, 6280, 6574, 6578, 6575, 6577, 6569, 6576, 6572, 2114 }, [6571] = { -- red present {2152, 10}, {2152, 10}, {2152, 10}, 2153, 5944...
Back
Top