• 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 for query: party task

  1. 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...
  2. Jpstafe

    Tasks do not count for everyone in the party

    Hello otland community, I would like my task system to count all the tasks when they are being done in a party, it only counts the last one that deals damage, is there a solution for this? I am using the otx 7.4
  3. zapo

    task party

    Hi, i have some problem with my task scripts if in a group the monsters are killed individually, it counts well, while when all monsters are killed, e.g. with avalanche that all monsters will die in one moment, one additional ... my code: local function getKillers(creature, party) local...
  4. shakal1994

    Lua Task system TFS 1.2 count party

    I'm using this creativescripts, I wanted you to tell everyone who attacks the monster, can you help me?? 1684169160 I got a creaturescripts that counts the party, the problem is that it counts the one that deals the most damage and the last hit, so it counts 2 times for the one that deals the...
  5. freaked1

    Lua TFS 1.2 party+tasks

    Hello, when a player in a party kills a monster it does not count for both in tasks. Is it possible to change something in creaturescript killtask.lua to make it work for partymembers within a certain range? function onKill(cid, target, lastHit) local started = getPlayerStartedTasks(cid) if...
  6. shakal1994

    task party share tfs 1.2

    I wanted a party system where everyone who attacked the monsters would get a score. My current script function onKill(player, target) if target:isPlayer() or target:getMaster() then return true end local targetName, startedTasks, taskId = target:getName():lower()...
  7. Vantoria

    share task with party

    hello i would like how this task function on creaturescripts can be done with party member function onKill(player, target) local monster = config[target:getName():lower()] if not monster or target:getMaster() then return true end local storageValue =...
  8. Hbraveq

    Lua Task in party TFS 1.5 7.72

    Hello, I'm using simple script for task. Is it possible to enable counting task kills for all party members? :p TFS 1.5 7.72 by nekiro!
  9. Hbraveq

    Lua Task count even if people in party are far away, also only in party..

    TFS 1.5 7.72 by nekiro Hello, I'm using this script in creaturescripts killtask.lua and problem is you can make party with unlimited people, stay away and make tasks, also tasks count only if player is in party....
  10. freaked1

    TFS 1.3/OTX3 Party + Task

    Hello! I have tried for a while in the support board but maybe I can post this as a request instead? I want this creaturescript to give all party members within a certain range the kill too, and not only most damage/lasthitter. Thanks in advance! function onKill(cid, target, lastHit) local...
  11. 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...
  12. wizinx

    TFS 1.X+ Creaturescripts task count in party

    Hi everyone, I'm editing the code so that the tasks will count in party, but I can't make it 100% functional, since I want to make it count only by damaging the creature. At the moment it works if they both hit almost the same damage to the creature. Could you help me?. Thank you local...
  13. icekis

    Task counting on party sharing

    I'm trying to set up my server's task system to count to the last hit and the most damage players. I use this system of tasks: NPC - [TFS 1.1] Monster Tasks (https://otland.net/threads/tfs-1-1-monster-tasks.230942/) Could someone help?
  14. wizinx

    Task count in party tfs 1.2

    Hello, could someone help me to run the task count in party ?, I use tfs 1.2 base nostalrius. function onKill(player, target) local monster = config[target:getName():lower()] if not monster or target:getMaster() then return true end local storageValue =...
  15. Madusa

    TFS 1.X+ task and daily system I want it to be counted for all players in the party

    Hello, I use this system,tfs 1.5 and as stated in the title, I want all kills for players in the party to be counted https://otland.net/threads/1-5-simple-task-4-0-vodkart.282693/ Thanks in advance
  16. Stellow

    Lua 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? following my killtask creaturescripts:
  17. M

    Insert party task count (custom system)

    how i can insert this solution on the script https://otland.net/threads/tfs-1-2-task-party.273451/#post-2652592 tfs 1.2
  18. rlx

    Lua Nostalrius - Shared Party Kills?

    There are numerous threads under search results - Search results for query: party task (https://otland.net/search/3452492/?q=party+task&o=relevance) I got my tasks by this thread I guess: Lua - [TFS 1.2] Task Party. (https://otland.net/threads/tfs-1-2-task-party.273451/)
  19. Stellow

    [BRAZIL] D2 Server 7.4 Cast - Online 2018

    Task and Party update: Now players in party all receive task kill by killing a single monster.
  20. Schlangemann

    LUA Monster onDeath give storage id to party

    TFS 1.4 Hi! I am trying to make a boss give storage id to all party members who have damaged it when it dies. I am using a variation of Slavi's code from this post Lua - onKill players on party sharing xp to get task counted...
Back
Top