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

    TFS 1.X+ regeneration mp/hp for vip

    the player cannot sign in
  2. J

    TFS 1.X+ regeneration mp/hp for vip

    yes local STORAGE = 161398 local TIME = 60 * 60 * 12 function onUse(player, item, fromPosition, target, toPosition, isHotkey) local cur = math.max(player:getStorageValue(STORAGE) - os.time(), 0) player:setStorageValue(161398, os.time() + cur + TIME) item:remove(1)...
  3. J

    TFS 1.X+ regeneration mp/hp for vip

    local STORAGE = 161398 storage is vip function onLogin(player) if player:getStorageValue(161398) > 0 then -- YOUR VIP CONDITION player:addCondition(regenCondition) return true end end no work 1597686052
  4. J

    TFS 1.X+ regeneration mp/hp for vip

    function onLogin(player) if player:getStorageValue(161398) < 1 then -- YOUR VIP CONDITION player:addCondition(regenCondition) return true end end I put it like this
  5. J

    TFS 1.X+ regeneration mp/hp for vip

    after being placed on the server I can't login to the game
  6. J

    TFS 1.X+ regeneration mp/hp for vip

    how could you put more hp / mp regeneration for vip players? tfs 1.3
  7. J

    Lua Remove percentage of player's health

    how did the mechanics of this boss?
  8. J

    Lua Remove percentage of player's health

    how did the mechanics of this boss?
  9. J

    TFS 1.X+ CONVERT SCRIPT TFS-1.3

    I will check this
  10. J

    TFS 1.X+ CONVERT SCRIPT TFS-1.3

    tested, does not work
  11. J

    TFS 1.X+ CONVERT SCRIPT TFS-1.3

    BUMP
  12. J

    TFS 1.X+ CONVERT SCRIPT TFS-1.3

    BUMP
  13. J

    player name on the item you purchased at the shop

    I'm trying to put the name of the player on the item you bought at the store, how would it look? tfs 1.3 function onSay(cid, words, param) local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks. local cooldown = 15 -- in seconds. local player =...
  14. J

    TFS 1.X+ CONVERT SCRIPT TFS-1.3

    help me convert these gem system to tfs 1.3? below the codes:
  15. J

    CREATE TABLE DATABASE

    how would it be?
  16. J

    CREATE TABLE DATABASE

    solution to that error? CREATE TABLE IF NOT EXISTS boosted_creature ( boostname TEXT, date varchar(250) NOT NULL default '', raceid varchar(250) NOT NULL default '', PRIMARY KEY (date) ) AS SELECT 42 AS date, "name" AS boostname, 69 AS raceid; erro...
  17. J

    TFS 1.X+ Faster regeneration MP and HP/s

    good afternoon, how could you sell fast regeneration in the store? ex: 5 days fast regeneration = 10 coins 15 days fast regeneration = 25 coins 30 days fast regeneration = 45 coins thanks.
  18. J

    Feature Auto Loot Sytem for TFS 1.3

    puts in modal? it would be great to select loot in backpacks
  19. J

    TFS 1.X+ Show Time Storages

    someone help me with this talkaction, i want you to show the time of several storages instead of one. or it could be by name example: ! time quest1 ! time quest2 tfs 1.3 local STORAGE = 61398 function onSay(player, words, param) local cur = math.max(player:getStorageValue(STORAGE) -...
  20. J

    Character Auctions System

    Hello does anyone convert this character selling system to myaac? https://github.com/Znote/ZnoteAAC/commit/9c80585ef947652fc2b181f8140f6a982c1e5399
Back
Top