Made a simple npc to teleport to bazaar but it doesnt seem to do anything. Got it in quest folder in freeporttemple folder. And under the npc id (tried name too and it wouldnt work either) anyways code is
Code:
sub EVENT_SAY {
if($text=~/hail/i) {
plugin::Whisper("Hello, would you like to visit the " . quest::saylink("Bazaar", 1) . "?");
}
elsif($text=~/Bazaar/i) {
plugin::Whisper("Very well.");
quest::zone(Bazaar);
}
}
sub EVENT_SPAWN {
plugin::SetMobColor(quest::ChooseRandom(0..255), quest::ChooseRandom(0..255), quest::ChooseRandom(0..255));
}
}