View Single Post
  #2  
Old 05-18-2009, 09:39 PM
Theeper
Discordant
 
Join Date: May 2004
Posts: 290
Default

You could put it in player.pl and use it like this. Then every time a player completed an activity, you'd have the $activity_id and $task_id variables to play with.

Code:
sub EVENT_TASK_STAGE_COMPLETE {
quest::say("Yay!, I completed activity $activity_id of task $task_id");
}
Reply With Quote