View Single Post
  #3  
Old 08-10-2004, 06:21 AM
sotonin
Demi-God
 
Join Date: May 2004
Posts: 1,177
Default

arg. the cluttered code hurts my head. =D

Code:
sub EVENT_SAY { 
	if ($text=~ /Hail/i){
		quest::say("Say [ready] if you want me to move you somewhere");
	}
	if ($text=~ /ready/i){
		quest::say("Very well, off you go then.");
		quest::movepc(219,-7,5,189);
	}
}
might wanna get in the habit of formatting it so it's more readable and doesn't run together so much.
Reply With Quote