xxxxxxxxxx.pl plugin name of file
#!/usr/bin/perl
sub name_say {
my $text = shift;
if($text=~/hail/i){
quest::say("$name Hears a Voice that seems to come out Of the Rift.- This Will [Send] you back in time to South Qeynos. Please be careful to not change the future.");
}elseIf($text=~/Send/i) {
quest::movepc(302,0,10,5);
}
#END of FILE
put this file in plugins dirctory to work in every zone.
put this file in every zone replace xxxxxx and pluginname
xxxxxxxxxx.pl plugin name of file
#generic pluginname quest
sub EVENT_SAY {
plugin::pluginname_say($text);
}
|