View Single Post
  #3  
Old 07-30-2014, 09:30 AM
noudess
Discordant
 
Join Date: Sep 2012
Location: Upstate NY
Posts: 274
Default

Quote:
Originally Posted by Splose View Post
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?");
	}
}
Meaning what, the NPC stopped walking? They stop walking when hailed by default. The pause happened before the say?

I have an NPC on a grid. When he reaches a specific (dynamically determined) waypoint I use pause(60) to implement a pl generated pause. He stays there forever.
Reply With Quote