Thread: Task Question
View Single Post
  #2  
Old 02-22-2009, 03:34 PM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

I think you would use Player Quests for this:

http://www.eqemulator.net/wiki/wikka...rQuestExamples

Something along the lines of:

Code:
sub EVENT_PLAYER_PICKUP {

	if($picked_up_id == 12345) {
		if(quest::istaskactivityactive(taskid, activityid)) {
			quest::updatetaskactivity(taskid, activityid);
		}
	}
}
Reply With Quote