View Single Post
  #1  
Old 06-20-2013, 11:49 AM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,603
Default sub EVENT_ITEM_USE

Is there anyway to create the event in the title? When you use an item this event happens, I can't seem to find one in the current code, would someone care to shed some light on this?

EDIT: I believe this would require the ability to check item ids as well, like below, just an example. An item that when used enables a title.
Code:
sub EVENT_ITEM_USE
{
	if($itemid == 1)
	{
		quest::enabletitle(1);
	}
}
Reply With Quote