diff options
author | Wombat <hpwombat@yahoo.com> | 2011-01-10 14:40:14 -0500 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2011-01-10 14:46:55 -0500 |
commit | cfce4f99b879e522cb1c3fe9174515a585d5d193 (patch) | |
tree | 36ba3003cb184db1631b2cf31d0aa2ec530f23ac /npc | |
parent | e8e5b6dc659f10c2f4d3d3fe4c21ec0d05672751 (diff) | |
download | serverdata-cfce4f99b879e522cb1c3fe9174515a585d5d193.tar.gz serverdata-cfce4f99b879e522cb1c3fe9174515a585d5d193.tar.bz2 serverdata-cfce4f99b879e522cb1c3fe9174515a585d5d193.tar.xz serverdata-cfce4f99b879e522cb1c3fe9174515a585d5d193.zip |
Made bowler hat dyeable
Made bowler hat dyeable by altering bleacher, selim and the item_db
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1_Tulimshar/bleacher.txt | 6 | ||||
-rw-r--r-- | npc/009-2_Hurnscald/selim.txt | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/npc/001-1_Tulimshar/bleacher.txt b/npc/001-1_Tulimshar/bleacher.txt index b877642d..68707f65 100644 --- a/npc/001-1_Tulimshar/bleacher.txt +++ b/npc/001-1_Tulimshar/bleacher.txt @@ -34,6 +34,7 @@ L_bleach_menu: "Cotton gloves", L_cotton_gloves, "Rabbit ears", L_rabbit_ears, "Wizard Hat", L_wizard_hat, + "Bowler Hat", L_bowler_hat, "Nevermind", -; goto L_close; @@ -112,6 +113,11 @@ L_wizard_hat: set @dyeBase, 2200; goto L_choose_color; +L_bowler_hat: + set @normal, 4030; + set @dyeBase, 2210; + goto L_choose_color; + L_choose_color: mes "[Candide]"; mes "\"And the color?\""; diff --git a/npc/009-2_Hurnscald/selim.txt b/npc/009-2_Hurnscald/selim.txt index 7c39a2ab..de02de0d 100644 --- a/npc/009-2_Hurnscald/selim.txt +++ b/npc/009-2_Hurnscald/selim.txt @@ -32,6 +32,8 @@ L_clothes_choice: "Cotton boots", L_cottonboots, "Cotton gloves", L_cottongloves, "Rabbit ears", L_rabbitears, + "Wizard hat", L_wizardhat, + "Bowler hat", L_bowlerhat, "I'm fine for now, thanks.", -; close; @@ -129,6 +131,12 @@ L_wizardhat: set @name$, "wizard hat"; goto L_picked_item; +L_bowlerhat: + set @del, 4030; + set @new, 2210; + set @name$, "bowler hat"; + goto L_picked_item; + L_picked_item: if (countitem(@del) == 0) goto L_havenone; L_colour: |