summaryrefslogtreecommitdiff
path: root/npc/re/merchants/wander_pet_food.txt
diff options
context:
space:
mode:
authordaegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-08-01 04:29:56 +0000
committerdaegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-08-01 04:29:56 +0000
commit8832adba3ec9df0f7f890154f69f0993b8d1d8e5 (patch)
tree0e73afe6a780abf29fe035301f1354f24762da7a /npc/re/merchants/wander_pet_food.txt
parentfa533907d49c7e288be33efb55fcb094f8e48591 (diff)
downloadhercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.tar.gz
hercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.tar.bz2
hercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.tar.xz
hercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.zip
Full npc folder reorganization. (I hope I didn't break anything D:)
-Now common scripts goes to the main npc folder, and pre-re-only/re-only ones goes to their respective folders. -NPCs with practically the same script but little differences have been left in the main folder and uses the command checkre() for the differences. -For those NPCs with different coordinates but same script, the script has been left in the main folder but the NPCs splitted as duplicates. -All pre-renewal files has been reverted back to their pre-renewal behavior. TODO: -Correct pre-re quest rewards. -Check for pre-re/re differences in mapflags. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16545 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/re/merchants/wander_pet_food.txt')
-rw-r--r--npc/re/merchants/wander_pet_food.txt75
1 files changed, 0 insertions, 75 deletions
diff --git a/npc/re/merchants/wander_pet_food.txt b/npc/re/merchants/wander_pet_food.txt
deleted file mode 100644
index 5bd9140e7..000000000
--- a/npc/re/merchants/wander_pet_food.txt
+++ /dev/null
@@ -1,75 +0,0 @@
-//===== rAthena Script =======================================
-//= Spirit Liquor trader.
-//===== By: ==================================================
-//= rAthena dev team
-//===== Current Version: =====================================
-//= 1.0
-//===== Compatible With: =====================================
-//= rAthena SVN
-//===== Description: =========================================
-//= [Aegis Conversion]
-//= Trade Broken Liquor Jars and alcohol for wanderer
-//= pet food, 'Spirit Liquor'
-//===== Additional Comments: =================================
-//= 1.0 First version
-//============================================================
-
-prontera,218,218,3 script Pet Enthusiast 96,{
- mes "[Pet Enthusiast Jenny]";
- mes "Oh, Hi there!";
- mes "Are you a lover of animals like I am?";
- next;
- mes "[Pet Enthusiast Jenny]";
- mes "I know that it's really hard to keep your cute pets happy.";
- mes "All it takes is the right kind of food.";
- next;
- mes "[Pet Enthusiast Jenny]";
- mes "I know that sometimes it is really hard to get the right food for your pet.";
- next;
- mes "[Pet Enthusiast Jenny]";
- mes "Do you have any food that you are looking for?";
- next;
- switch(select("Yes:No")) {
- case 1:
- if ((countitem(7158) > 19) && (countitem(970) > 0)) {
- mes "[Pet Enthusiast Jenny]";
- mes "Oh, you have ^ff000020 Broken Liquor Jar^000000s and ^ff00001 Alcohol^000000!";
- mes "Do you want to exchange them for";
- mes "^ff000020 Spirit Liquor^000000 for your Wanderer pet?";
- next;
- switch(select("Yes, please!:No thank you.")) {
- case 1:
- mes "[Pet Enthusiast Jenny]";
- mes "Ok here you go then.";
- mes "I hope it keeps your";
- mes "cute pet happy.";
- delitem 7158,20; //Broken_Wine_Vessel
- delitem 970,1; //Alchol
- getitem 7824,20; //Spirit_Liquor
- close;
- case 2:
- mes "[Pet Enthusiast Jenny]";
- mes "Hehe, well just let me know if you change your mind.";
- close;
- }
- }
- else {
- mes "[Pet Enthusiast Jenny]";
- mes "Actually, right now I can help you get Spirit Liquor for Wanderer pets.";
- next;
- mes "[Pet Enthusiast Jenny]";
- mes "All you have to do is bring me ^FF0000 20 Broken Liquor Jars^000000 and ^FF0000 1 Alcohol^000000.";
- mes "I can give you ^FF0000 20 Spirit Liquor^000000 for that.";
- next;
- mes "You can get the Broken Liquor Jars from Tengu monsters in Amatsu dungeon.";
- close;
- }
- case 2:
- close;
- }
-}
-
-prontera,220,218,3 script Berry Toe 955,{
- specialeffect EF_CHANGEDARK;
- end;
-}