Thread: Noob Perl user
View Single Post
  #2  
Old 10-07-2004, 03:07 AM
x-scythe
Discordant
 
Join Date: Jun 2003
Posts: 449
Default

try to space out your code
like

Code:
sub EVENT_SAY
{
  if($text=~/what up yo/i)
   {
     quest::say("Nothin much, lets go shoot up some homies!");
   }
}
makes it easier to read and find mistakes
Reply With Quote