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

    TFS 1.X+ On use 1 of 5 item get a new item

    Thank you, I added a storage for use one only time. local hotaItems = {2335, 2336, 2337, 2338, 2339, 2340, 2341} local HotaCompleted = 2343 function onUse(player, item, fromPosition, target, toPosition, isHotkey) local itemType = ItemType(HotaCompleted) if...
  2. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    player is missing item 2335 player is missing item 2335 player is missing item 2335
  3. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    No print nothing... local hotaItems = {2335, 2336, 2337, 2338, 2339, 2340, 2341} local HotaComplete = 2343 function onUse(player, item, fromPosition, target, toPosition, isHotkey) if not isInArray(hotaItems, item.itemid) then print('item.itemid') return true end...
  4. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    local hotaItems = {2335, 2336, 2337, 2338, 2339, 2340, 2341} local HotaComplete = 2343 function onUse(player, item, fromPosition, target, toPosition, isHotkey) print('if not isInArray(hotaItems, item.itemid) then') if not isInArray(hotaItems, item.itemid) then return true...
  5. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    5, and you click on any of them. I haven't added a storage yet
  6. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    It does nothing.
  7. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    It doesn't work. Thank you
  8. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    It don't work. You set a new variable? local items = {} local hotaItem
  9. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    Lua Script Error: [Action Interface] data/actions/scripts/hota.lua:onUse data/actions/scripts/hota.lua:11: attempt to get length of global 'helmetIds' (a nil value) stack traceback: [C]: in function '__len' data/actions/scripts/hota.lua:11: in function...
  10. Eduardo170

    TFS 1.X+ On use 1 of 5 item get a new item

    I try this Example: U have 5 items on your backpack, you use 1 of 5 and remove it then get a new item local hotaItems = {2335, 2336, 2337, 2338, 2339, 2340, 2341}-- Items to check if you have and remove when using any of them. local HotaComplete = 2343 -- new item function onUse(player, item...
  11. Eduardo170

    Lua [TFS 1.3] check if a table is nil?

    I could take this for my server?.
  12. Eduardo170

    TFS 1.X+ [TFS 1.3]Is possible added a own exhauste to a spell?

    Is possible added a own exhauste to a spell? Protocol: 8.6 Example I want to added a own exhauste to local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT...
  13. Eduardo170

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    I had to delete line 206, if not, it gives error. doesn't take the "--". Thank you. --,FOREIGN KEY (`id`) REFERENCES `guild_wars` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
  14. Eduardo170

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    How I do for reinstall all Znote tables of my db?
  15. Eduardo170

    TFS 1.X+ Problem with a creaturescript when players dead.

    I think I solved it. I had added to login.lua and that should never didn't. Cause that and this made like a loop player:unregisterEvent("ZombiePlayerDeath")
  16. Eduardo170

    TFS 1.X+ Problem with a creaturescript when players dead.

    Up, Idk. I use TFS 1.3.
  17. Eduardo170

    TFS 1.X+ when player kill the monster and looted rare item

    How do you have it added to login.lua, and what is the error it gives you? @massinha
Back
Top