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

    Lua Blessings settings

    Hello Otland, I am using TFS 0.3.7 [8.6] Can somebody explain me what that exacly means? And how to set up 100% sure blessings, (I can't lose my items with blessing. and can't lose more than blessing reduced.) blessingReductionBase = 30 blessingReductionDecrement = 5...
  2. therrax

    TalkAction Buy inactive houses

    @Summ Could you add to config max houses per account and message cancel "You can't buy more than x houses."
  3. therrax

    Solved Zombie event need help with small fix

    Ok, thanks. I checked it and working! :)
  4. therrax

    Solved Zombie event need help with small fix

    I checked now this script I have problem again. When 1 player enter to the event it should kick him after waiting time. But player is still inside event. Then I changed it if #getZombiesEventPlayers() > 1 then to if #getZombiesEventPlayers() >= 1 then but I have errors: 1 player inside active...
  5. therrax

    Solved Zombie event need help with small fix

    Thanks;)
  6. therrax

    Solved Zombie event need help with small fix

    @Limos Thanks for your message. By zombieauto.lua in global added with interval: local autoStartsTable = { {["day_of_week"] = 0, ["hour"] = 11, ["minute"] = 00, ["storage"] = 7862}, {["day_of_week"] = 0, ["hour"] = 19, ["minute"] = 00, ["storage"] = 7863}, {["day_of_week"] = 0, ["hour"] = 22...
  7. therrax

    Solved Zombie event need help with small fix

    Hi. Information: TFS 0.3.7 [8.6] I am using this Zombie Event: http://otland.net/threads/zombie-event-new-version-bug-free-updated.128664/ My problem. When someone enter to the Zombie Event it works correctly, but when starts and there is no participants it doesn't stop event. Then it rightly...
  8. therrax

    Solved Problem with NPC lib.

    Solved. I had to check every npc.. One of them had wrong item id..
  9. therrax

    Solved Problem with NPC lib.

    @Xikini Could you give me yours npc lib?
  10. therrax

    Solved Problem with NPC lib.

    I am using TFS 0.3.7 5969 (8.6) I have error on sever start: [22:3:40.927] [Error - NpcScript Interface] [22:3:40.927] data/npc/scripts/default.lua [22:3:40.927] Description: [22:3:40.927] data/npc/lib/npcsystem/modules.lua:1136: attempt to index local 'v ' (a boolean value) [22:3:40.943]...
  11. therrax

    Solved Why this counter doesn't work?

    Thanks ;)
  12. therrax

    Solved Why this counter doesn't work?

    @Limos I don't have errors. I will check it. _______ I checked it, when I delete this part it works, but I have to replace it? : or isSummon(target)
  13. therrax

    Solved Why this counter doesn't work?

    TFS 0.3.7 Why this counter from task system doesn't work? creaturescripts/killinginthenameof: function onKill(cid, target, lastHit) local started = getPlayerStartedTasks(cid) if isPlayer(target) or isSummon(target) then return true end if started and #started > 0 then for _, id in...
  14. therrax

    Which distibution is most stable to host 8.6 ots

    @dominique120 It's very stable?
  15. therrax

    Which distibution is most stable to host 8.6 ots

    Hi. In Your opinion which distribution is the best solution to host for 8.6 ot?
  16. therrax

    Solved promotion problem

    Thanks! :)
  17. therrax

    Solved promotion problem

    Should it look like this? function StdModule.promotePlayer(cid, message, keywords, parameters, node) local npcHandler = parameters.npcHandler if npcHandler == nil then error("StdModule.promotePlayer called without any npcHandler instance.") end if...
  18. therrax

    Solved promotion problem

    I changed only this one line. Take a look. function StdModule.promotePlayer(cid, message, keywords, parameters, node) local npcHandler = parameters.npcHandler if npcHandler == nil then error("StdModule.promotePlayer called without any npcHandler instance.")...
  19. therrax

    Solved promotion problem

    @Limos Console error: Lua Script Error: [Npc interface] data/npc/scripts/promotion.lua:onCreatureSay data/npc/lib/npcsystem/modules.lua:86: attempt to index global 'Storage' (a nil value) stack traceback: [C]: in function '__index' data/npc/lib/npcsystem/modules.lua:86: in...
  20. therrax

    Solved promotion problem

    @Limos I am using latest TFS 1.0 vers. I added premium = false to my promotion.lua but I still need premium. promotion.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid)...
Back
Top