Thread: item cast help
View Single Post
  #1  
Old 07-18-2016, 12:47 PM
Maceblade
Hill Giant
 
Join Date: Jun 2010
Posts: 231
Default item cast help

So basically I created an item where once clicked, it gives you an AA and poofs. Only problem is, item poofs just fine but grants no reward...

Code:
sub EVENT_ITEM_CLICK {
	if($itemid == 1813){


	quest::emote("You have Gained an AA!!");	
		$client->AddAAPoints(1);} 
}
Reply With Quote