View Single Post
  #2  
Old 07-29-2014, 10:57 PM
Splose's Avatar
Splose
Discordant
 
Join Date: Apr 2014
Posts: 280
Default

I was using it like this and it's working as explained for me.

Code:
sub EVENT_SAY {
	if($text =~/hail/i) {
		quest::pause(10);
		quest::say("I seem to have lost my wedding ring, have you seen it?");
	}
}
Reply With Quote