Thread: Q&A Thread
View Single Post
  #6  
Old 09-06-2018, 08:09 PM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default Help with quest::follow ?

Been trying to figure out what I am missing here with simple script. The text response works, but not the follow.

Code:
sub EVENT_SAY {

	my $gather = $entity_list->GetClientByCharID($charid);

	if($text=~/hail/i) {
	quest::say("I'm with you $name and following.");
	quest::follow($gather);
    }
}
Reply With Quote