diff options
Diffstat (limited to 'npc/custom/quests/thq/THQS_ChatingNPC.txt')
-rw-r--r-- | npc/custom/quests/thq/THQS_ChatingNPC.txt | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/npc/custom/quests/thq/THQS_ChatingNPC.txt b/npc/custom/quests/thq/THQS_ChatingNPC.txt deleted file mode 100644 index 2ea65e3c9..000000000 --- a/npc/custom/quests/thq/THQS_ChatingNPC.txt +++ /dev/null @@ -1,93 +0,0 @@ -//===== Hercules Script ====================================== -//= Treasure Hunter Quests -//===== By: ================================================== -//= Fredzilla -//===== Current Version: ===================================== -//= 1.0 -//===== Description: ========================================= -//= Start for Treasure hunter quests -//===== Additional Comments: ================================= -//= Event_THQS - Used to check if you have already registered -//= #Treasure_Token - used to keep track of tokens -//============================================================ - -//Entrance Flags -yuno,48,101,6 script Notice GUILD_FLAG,{ - mes "^FF0000[ Treasure Hunter Guild House ]^000000"; - mes " "; - mes "Welcome to the Treasure Hunter's Guild House."; - mes "Feel free to drop in and look around"; - mes "and feel free to become a memeber if you wish."; - mes " "; - mes "For membership applications please talk to Keegan"; - mes "up the stairs and down the hall."; - close; -} -//Saver Girl; -yuno_in01,32,178,3 script Ahlma 4_F_MAID,{ - mes "[Ahlma]"; - if (Event_THQS == 0) goto N_Member; - mes "Welcome to The Treasure Hunter Guild."; - mes "How may I help you?"; - next; - if (select("Save", "Quit") != 1) { - mes "[Ahlma]"; - mes "Well if you think you are safe, good on you."; - close; - } - mes "[Ahlma]"; - mes "Ok, saved. Thank you ~ See you soon~"; - savepoint "yuno_in01",34,176; - close; -N_Member: - mes "Sorry, members only."; - close; -} -//Retired Smile mask girl; -yuno_in01,33,162,3 script Smile Helper 4_F_03,{ - mes "[Smile Gal]"; - mes "Oh man...I am so sick of"; - mes "trading Mr. Smile masks for crap."; - mes " "; - mes "You ask me for one and you'll find yourself 10 pounds lighter!"; - close; -} -//Usless Female Assasin; -yuno_in01,22,162,6 script Female Assasin 4_F_JOB_ASSASSIN,{ - mes "[Sharlet]"; - if (Event_THQS > 0) goto N_Member; - mes "Umm sorry I'm not gona waste my time talking to you if you arn't even a member!"; - close; -N_Member: - set @temp,rand(1,2); - if (@temp == 1) goto N_Chat1; - if (@temp == 2) goto N_Chat2; - mes "How are you reading this???"; - mes "Well unless you are reading the code :)"; - close; -N_Chat1: - mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(PC_NAME)+"."; - mes "Did you hear about that brave man that went into Glast Heim alone?! He must be crazy."; - close; -N_Chat2: - mes ""+strcharinfo(PC_NAME)+" don't you have something better you could be doing? Like a quest."; - close; -} -//another usless member -yuno_in01,25,162,6 script Female Wizard 2_F_MAGICMASTER,{ - mes "[Sasha]"; - if (Event_THQS > 0) goto N_Member; - mes "Umm sorry I'm not gona waste my time talking to you if you arn't even a member!"; - close; -N_Member: - set @temp,rand(2); - if (@temp == 1) goto N_Chat; - mes "Ahh welcome fellow Treasure Hunter "+strcharinfo(PC_NAME)+"."; - mes "Did you hear about that goat man running around in the trees?"; - mes " "; - mes "Aperently his name is Baphomet and he has been runing around the Forest Maze out side of prontera for quite some time now."; - close; -N_Chat: - mes ""+strcharinfo(PC_NAME)+" don't you have something better you could be doing? Like a quest."; - close; -} |