Ahh, yeah then you just want to set a timer directly from EVENT_SAY. Just set the timer, then I think moveto should work if you use it like this in your timer:
Code:
my $SpawnHeading = $npc->GetSpawnPointH();
$npc->MoveTo($x, $y, $z, $SpawnHeading);
Or, you might try this:
Code:
my $SpawnHeading = $npc->GetSpawnPointH();
$npc->SetHeading($SpawnHeading);
One of those will probably work.