View Single Post
  #11  
Old 01-18-2014, 06:02 AM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,603
Default

That doesn't seem to work. I have the following code in my global and I still get the error.
Code:
sub EVENT_SAY
{
	if($text=~/#Test/i)
	{
		quest::shout("TEST!");
		return 1;
	}
}


Code:
sub EVENT_SAY
{
	if($text=~/#Test/i)
	{
		quest::shout("TEST!");
	}
	return 1;
}
Reply With Quote