View Single Post
  #2  
Old 12-18-2008, 08:39 PM
Neiv
Hill Giant
 
Join Date: May 2008
Location: Colorado
Posts: 238
Default

You posted this in the wrong forum, and it will likely be move. But the corrected script would look like this:

Code:
sub EVENT_SAY 
	{
	if($text=~/hail/i)
		{
		quest::say("hello $name , Which guild would you like to be in [blood] or [crip].");
		}
	if ($text =~/blood/i) 
		{
		quest:::say("there you go");
		quest::setguild(guild_id,rank);
		}
	}
Reply With Quote