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;
}
