View Single Post
  #1  
Old 11-24-2012, 09:27 AM
Sinclipse
Hill Giant
 
Join Date: May 2012
Posts: 122
Default Task System Inquiry.

Hello everyone. I've gotten a few tasks to work, but for some reason this one is just failing. I'm not quite sure what I did wrong...

The perl text is this (I'll attach pictures of the Task//Goal//Activities).

Code:
##Leveling assistant
##ChambersE
##Made by Sinclipse

sub EVENT_SAY
{
	
	$npcname = "Level Assistant";
	
	if($text=~/hail/i)
	{
		$client->Message(315, "$npcname whispers to you 'Greetings $name. I am here to help you level. Please accept the task and return to me once you've completed it. Remember, if you're above the level said in the task, I will not accept the quest back.'");
		quest::assigntask(225);
	}
}
Adding in level restrictions later...

Picture of the Task ID//Goal//Activities.



is what it looks like, I edited out the desktop view and all that stuff. I've looked over other tasks and I have the same input and what not as they do... I just don't know what I did wrong.
Reply With Quote