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

    Lua Function [TFS 1.2/1.3] player:setAttackSpeed(ms) | player:getAttackSpeed()

    0 errors during compile but server cannot take off console appears and disappears (sorry for english)
  2. ssiwyy158

    Atakowanie podczas używania potów (Paladin)

    Cześć. Przeglądałem masę tematów związanych z problem ataku palka podczas używania potków. Niestety nie udało mi się znaleźć rozwiązania pomimo podmiany różnych kodów. W żadnym temacie nie było 100% zgodności do tego czy kod jest w 100% działający i czy nie będzie sprawiał problemów w rozgrywce...
  3. ssiwyy158

    TFS 1.X+ Fix MR effect and cooldowns

    function onUse(cid, item, frompos, itemEx, topos) local playerinfo = -- Please don't touch { level = getPlayerLevel(cid), mlevel = getPlayerMagLevel(cid), voc = getPlayerVocation(cid) } local config = { strenght = "template", ---Values: template (strenght dependent on level and magic level)...
  4. ssiwyy158

    TFS 1.X+ check if someone is in the room

    Hello. Trying to install a script that allows only one player to enter the teleport, when he leaves the room then another player can enter (Sorry google translate) function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition) local pos = {x = 908, y = 696, z = 9} local area...
  5. ssiwyy158

    [Tf 1x+] Event Roulette

    Thanks ! Very interesting :D For the lazy i created veeery fast map for 8.6 client: Download Scan
  6. ssiwyy158

    TFS 1.2 war system

    Cześć. Szukam war systemu z blaszkami pod tfs 1.2 klienta gry 8.6 i działającego z MyAcc. Moge nawet zapłacić.
  7. ssiwyy158

    Scroll that boosts exp for x time

    use the command once every 10 sec exhausted but i done it: local cfg = { exhausted = 10, -- Time you are exhausted. storage = 78949 -- Storage used for "exhaust." } function onSay(player, words, param) if (player:getStorageValue(cfg.storage) > os.time())then player:sendCancelMessage("You...
  8. ssiwyy158

    Scroll that boosts exp for x time

    Great ! How to add to your script exhaust ?
  9. ssiwyy158

    TFS 1.X+ Check time storage

    I try: function onSay(cid, words, param) local player = Player(cid) local remaining = getPlayerStorageValue(cid, 98546) - os.time() if remaining == 0 then player:sendCancelMessage("You do not have boost") else doCreatureSay(cid, "You have " .. remaining ...
  10. ssiwyy158

    TFS 1.X+ Check time storage

    Hello. How to write a script checking the duration of the xp bonus from this script ? : tfs 1.2 function onUse(cid, item, fromPosition, itemEx, toPosition) local player = Player(cid) if player:getStorageValue(98546) >= os.time() then player:say('You already have exp bonus!'...
  11. ssiwyy158

    Scroll that boosts exp for x time

    How to make talkaction to check how much time is left? tfs 1.2
  12. ssiwyy158

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    I gave you the original code from tfs 1.3 under 8.6. There were weapons in your code that were not found in 8.6 (Google Translate sorry)
  13. ssiwyy158

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    Try this https://pastebin.com/neS6FF59
  14. ssiwyy158

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    Remove: <!-- Rods --> <wand id="23721" level="1" mana="1" min="3" max="7" type="ice"> <!-- The Chiller --> <vocation name="Druid" /> </wand> and <!-- Wands --> <wand id="23719" level="1" mana="1" min="3" max="7" type="fire"> <!-- The Scorcher --> <vocation name="Sorcerer"...
  15. ssiwyy158

    DotA Event (TFS 1.X)

    Where is teleport join event position ?
  16. ssiwyy158

    TFS 1.X+ Firestorm event

    Hello. I use this script: https://otland.net/threads/firestorm-event-tfs-1-2.237061/ All works but Player cant die . Cant get damage I dont know why :/ I use tfs 1.2 8.6 client
  17. ssiwyy158

    Firestorm Event | Tfs 1.2

    Player can't die does not take damage :( help me pls i use TFS 1.2 8.6 client
  18. ssiwyy158

    TFS 1.X+ last man standing

    Hello. I try to install this script: https://otland.net/threads/tfs-1-0-last-man-standing-by-nevix.222108/ All works but when a player die, he doesn't transfer him to dp, he just dies all the time (Sorry GOOGLE TRANSLATE :D ) I use TFS 1.2 8.6 client
  19. ssiwyy158

    TFS 1.X+ tfs 1.2 bank npc

    I use this script: https://otland.net/threads/tfs-1-3-bank-npc.260554/ And work perfect This script: function Player.depositMoney(self, amount) if not self:removeMoney(amount) then return false end self:setBankBalance(self:getBankBalance() + amount) return true end function...
Back
Top