• 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!

task

  1. potinho

    [TFS 0.4] Task System

    Hello everyone, everything good? I am looking for a task system for TFS 0.4 that allows me to repeat the tasks. I'm using a Vodkart system but I can't repeat them. I didn't find anything on OTland or on other forums, could someone help me?
  2. Z

    Lua [TFS 1.2] Task Party.

    My task system seems to be set so that only the last player who attacked the monster, counts. I'm trying to get you to tell Party members to attack the monster. Creaturescript: function onKill(player, target) local monster = config[target:getName():lower()] if not monster or...
  3. potinho

    TFS 0.X Allow repeat task - 7.72

    Hello guys, I have a mod to do task in my server, but players cannot repeat, and i want to alllow players repeat tasks. Anyone can help me? Task (in mod's, folder) <?xml version="1.0" encoding="UTF-8"?> <mod name="Simple Task" version="3.0" author="Vodkart" contact="tibiaking.com"...
  4. M

    Lua NPC task

    0.4 Hello guys, I'm here to ask for a favor. To start, I have this npc's script, where it gives the player a task to do, like killing some amount of monsters, and it works perfectly, BUT i want something more. I was trying to do something like: If the player has a specific storage, the npc will...
  5. equero

    WAR SYSTEM 0.3.6, PROFESSION QUEST?

    Hey I'm looking for WAR SYSTEM 0.3.6 tfs on my server. I need jet QUEST for each profession separately. Thanks.
  6. Ns Sparkz

    Lua Mission Npc reward [TFS 0.4] [No Errors]

    Npc doesn't collect items or give reward where is the problem in the script, this is a modified version of andu's script(NPC - [FIXED] NPC with daily quests, fully configurable! by andu (https://otland.net/threads/fixed-npc-with-daily-quests-fully-configurable-by-andu.158833/)). i've stayed an...
  7. bybbzan

    Implement function to script

    Hello. is it possible to implement a function like this to the script? If so, could someone help me do it? implement part: if player:getStorageValue(22223) == 1 then -- Check if he has already started the task. npcHandler:say('You have...
  8. bybbzan

    Boss teleport

    TFS 0.4 I need a boss teleport script that works like this: Player complete task, gets storage X If player storage X and enter boss tp, face boss X. Else "You did not complete the task" Player complete task, gets storage Y If player storage Y and enter boss tp, face boss Y. Else "You did not...
  9. dunnish

    Lua Killing in the name of Problem Crascing server

    Hello! my Killing in the name of is makeing the hole server lagg. the script is trying to write to the database and when the guy reconnect its working again for a few min then its crash. Killinginthenameof.lua (in lib) [Lua] RANK_NONE = 0 RANK_HUNTSMAN = 1 RANK_RANGER = 2...
  10. P

    Lua error console npc

    I used OTX2 (Tfs 0.3.7) and not working this script [2/10/2018 1:52:52] [Error - NpcScript Interface] [2/10/2018 1:52:52] data/npc/scripts/simple_task.lua:onCreatureSay [2/10/2018 1:52:52] Description: [2/10/2018 1:52:52] data/lib/100-shortcut.lua:260: attempt to index a boolean value...
  11. D

    1 kill counting as 3 kills

    Hey. I've been trying to add a task system to my 7.72 open tibia project, and I'm encountering a problem with the task counter. I got the task npc working I added a task script in creaturescripts.lua called "Dragons" I added registerCreatureEvent(cid, "Dragons") in login.lua I added...
  12. ZeeBeast

    Help with a tasking system/NPC

    I have searched everywhere and I cant,for the life of me, find a decent tasking NPC. I tried editing some little task NPCs code, but what I want was a little too advanced. What I'm looking for: 1. A system that gives you specific monsters to kill if you are between x level and y level...
  13. rwxsu

    CreatureEvent [TFS 1.2] Task System

    Task System For TFS 1.2 Features: * You can add as many tasks as you want * You can add as many rewards as you want for each task * You can add multiple monsters to a task, so it registers the kill on different monsters (e.g. dragon and dragon lord) * You can change the name of the task * You...
  14. ssiwyy158

    TFS 0.X [MOD] Task

    Sorry for my English. I have a problem with task system [MOD] . Everything works but we can repeat task all time np. !task dragon. When we're done task and get rewards (addons) we can repeat task on dragons. How to make it impossible to repeat ? TFS 0.4 r3884 CODE: Wklejka #3392655 –...
  15. qben360

    Lua Task Script (7.6) like Grizzly Adams Help

    I have a problem with edit this lua task scripter. I need help with function when i said hi>easy>dragons and the task npc say me how many dragons i need to kill, like hi>easy>dragons>npc said You need to kill 200 Dragons. You want hunt ? and i said yes to start a task. Someone can help me? its...
  16. J

    onKill players on party sharing xp to get task counted

    Hello, on my task scripts, only the player who deal the last hit get the monster counted, is anyone has a solution for both players in party get it counted? function onKill(cid, target, lastHit) local started = getPlayerStartedTasks(cid) if isPlayer(target) then return true end if started and...
  17. Yalasari

    Lua Task Counting Problem

    Hi, i have this piece of code: broadcastMessage('script loading', MESSAGE_STATUS_WARNING) function onKill(player, target) broadcastMessage('onkill activated', MESSAGE_STATUS_WARNING) if(player:getStorageValue(72003) == 1) then if target:isPlayer() or target:getMaster() then...
Back
Top