Thread: Transporter
View Single Post
  #1  
Old 06-15-2017, 08:30 PM
Baelu
Sarnak
 
Join Date: Jun 2017
Posts: 30
Default Transporter

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));
}
}
Reply With Quote