Log in

View Full Version : Group Version of task updates


atomic
05-09-2017, 01:31 PM
sub EVENT_DEATH_COMPLETE {
if (quest::istaskactivityactive(289,0))
{
quest::updatetaskactivity(289,0);
}
}


I have this for a task update but it only updates the pc thats killing. is there a group version? i use this because some npcs have more then one id and the task system only updates from 1 npc id. Like kill 10 Kobalds. not all Kobalds have same id. Any help please.

Castious
05-09-2017, 02:02 PM
You need to make a Goal List of the NPC ID's that will update the task. Doing so completely eliminates having to use Perl to update the task. It will also update anyone's task that are in the group/raid as well.

atomic
05-09-2017, 02:17 PM
ahh ok. thought that was the reward list. I'll give it a go. thanks

atomic
05-09-2017, 05:32 PM
Second question on same issue.

The Reward goallist... Can you give 3 of the same item on that and faction hits? I'm guessing not and this part will be perl.

Also the above worked for me. thanks again.

Castious
05-10-2017, 01:06 PM
Second question on same issue.

The Reward goallist... Can you give 3 of the same item on that and faction hits? I'm guessing not and this part will be perl.

Also the above worked for me. thanks again.

Nope, you'll have to handle that via scripting. Glad I was able to help. Good luck~!