View Single Post
  #2  
Old 12-10-2006, 09:00 AM
Cripp's Avatar
Cripp
Discordant
 
Join Date: Oct 2003
Location: The Shire
Posts: 474
Default

Code:
sub EVENT_SAY
{

	if($text=~/hail/i)
	{
		if (!defined $aflag)
		{
			quest::setglobal("aflag", 1, 5, "F");
			quest::say("Now Flagged.");
		}
		if (defined $aflag)
		{
			quest::say("You are already flagged.");
		}
	}
}
try this...

edit: Moved to Quests::Q&A
edit2: Dont forget to set qglobals to 1 for the npc in npc_types table.
__________________
Nug Blazers - ServerOP / founder
^^comming... later!

www.nugblazers.com

Last edited by Cripp; 12-10-2006 at 05:03 PM..
Reply With Quote