Franklin Teek basic script
This is only a basic script for Franklin Teek, similiar to live, with no tasks or
quests wrote in. Just the hotzone listings. (sample hotzones used).
I created the npc in PoK at the same location as live;
x 1251, y 448, z -127, r 89
sub EVENT_SAY {
if($text=~/hail/i) {
quest::say("Hello there $name! Are you seeking an adventure? If so just tell me if you want to learn about opportunities for [level 20], [level 25], [level 30], [level 35], [level 40], [level 45], [level 50], [level 55], [level 60], [level 65], [level 70], [level 75], or [level 80].");
}
if($text=~/level 20/i) {
quest::say("You may wish to investigate Lavastorm Mountains.");
}
if($text=~/level 25/i) {
quest::say("You may wish to investigate Solusek's Eye.");
}
if($text=~/level 30/i) {
quest::say("You may wish to investigate Crystal Caverns.");
}
if($text=~/level 35/i) {
quest::say("You may wish to investigate Gulf of Gunthak.");
}
if($text=~/level 40/i) {
quest::say("You may wish to investigate City of Mist.");
}
if($text=~/level 45/i) {
quest::say("You may wish to investigate Natimbi, The Broken Shores.");
}
if($text=~/level 50/i) {
quest::say("You may wish to investigate Crypt of Nadox.");
}
if($text=~/level 55/i) {
quest::say("You may wish to investigate Grieg's End.");
}
if($text=~/level 60/i) {
quest::say("You may wish to investigate Plane of Nightmare.");
}
if($text=~/level 65/i) {
quest::say("You may wish to investigate Stoneroot Falls.");
}
if($text=~/level 70/i) {
quest::say("You may wish to investigate Valdeholm.");
}
if($text=~/level 75/i) {
quest::say("You may wish to investigate Loping Plains.");
}
if($text=~/level 80/i) {
quest::say("You may wish to investigate Kaesora Library.");
}
}
|