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

    NPC task again every 3 days

    Okay, now no error in console. But got a problem. I finish a task, all fine, can kill all monsters without problem, also i get the reward. But the problem is that I can't start other task. 22:07 Tasker: Good job, here is your reward. 22:07 x [145]: bye 22:07 Tasker: Bye. 22:07 x [145]: hi...
  2. V

    NPC task again every 3 days

    Should add it? I didn't added it before put your script and working fine What should I put in storages?
  3. V

    NPC task again every 3 days

    Tested and this is the result: 18:41 x [100]: hellfire fighters 18:41 Tasker: You already did the Hellfire Fighters mission. You must wait none to do it again. 18:41 x [100]: ironblights 18:41 Tasker: You already did the Ironblights mission. You must wait none to do it again. I never done...
  4. V

    NPC task again every 3 days

    Same error (I've it added before)
  5. V

    NPC task again every 3 days

    [Warning - NpcScript::NpcScript] Can not load script: Xodettt.lua data/npc/scripts/Xodettt.lua:118: 'end' expected (to close 'if' at line 111) near 'elseif'
  6. V

    NPC task again every 3 days

    Where should I put: local exhoustionStorage = 62004 -- if not used and: player:setStorageValue(exhoustionStorage, os.time() + 3 * 24 * 60 * 60) @edit: script should be like this? local exhoustedTime = player:getStorageValue(exhoustionStorage)-os.time() local exhoustionStorage = 62004...
  7. V

    Item remove storages

    Hi everyone. I want a item that remove multiple storages when use and remove it. Anyone can help me? Thank you so much! Tfs 1.2
  8. V

    NPC task again every 3 days

    I try tested it, but when I want get a task, NPC didn't reply. @edit: error in console about exahustion.
  9. V

    NPC task again every 3 days

    I'm using tfs 1.2 forgot to post it. It should work? Can i set 3*24*60*60) to 60) for test?
  10. V

    NPC task again every 3 days

    Hi to all, I want to make that you can only repeat task every 3 days. On this script you can repeat every time when you finish it, but I want to put 3 days for doing again. Sorry for my english. Thanks in advance! Npctask.lua -- Monster Tasks by Limos local keywordHandler =...
  11. V

    Lua Set storage, -1 with time

    bump
  12. V

    Lua Set storage, -1 with time

    bump
  13. V

    Lua Set storage, -1 with time

    I'm so bad, and don't know where should I put that on the npc script :/
  14. V

    npc that gives outfit for items

    Here you got: [Lua] addon.lua - Pastebin.com Just edit: if getPlayerItemCount(cid,2181) >= 1 and getPlayerItemCount(cid,2182) >= 1 and getPlayerItemCount(cid,2183) >= 1 and getPlayerItemCount(cid,2185) >= 1 and getPlayerItemCount(cid,2186) >= 1 and getPlayerItemCount(cid,2187) >= 1 and...
  15. V

    Lua Set storage, -1 with time

    Hi all, I want to add time to an NPC. lua storage, i tried it but doesn't work :/ (tfs 1.2) player:addExperience(x.exp) player:setStorageValue(x.mstorage, -1, os.time() + 15 * 60 * 60) player:setStorageValue(x.storage, -1, os.time() + 15 * 60 *...
  16. V

    NPC when finish a task do it again

    I wanna put a better idea than it, want add time for doing again task. I tried it: player:addExperience(x.exp) player:setStorageValue(x.mstorage, -1, os.time() + 15 * 60 * 60) player:setStorageValue(x.storage, -1, os.time() + 15 * 60 * 60)...
  17. V

    NPC when finish a task do it again

    Okey, it working fine! thank you a lot :) Is there a posibility to do more than one task at same time?
  18. V

    NPC when finish a task do it again

    It should look like this? player:addExperience(x.exp) player:setStorageValue(x.mstorage, -1) player:setStorageValue(x.storage, -1) player:setStorageValue(storage, -1) npcHandler.topic[cid] = 3 else
  19. V

    NPC when finish a task do it again

    I will try it. And for creaturecount repeat? the creaturescript i mean
  20. V

    NPC when finish a task do it again

    Hi everyone, I wanna do that you can repeat any task when you finish it, but tried a lot of ideas but nothing is working :/ Hope anyone can help me with this. NPCtask.lua -- Monster Tasks by Limos local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
Back
Top