diff options
Diffstat (limited to 'npc/009-2_Hurnscald/selim.txt')
-rw-r--r-- | npc/009-2_Hurnscald/selim.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/npc/009-2_Hurnscald/selim.txt b/npc/009-2_Hurnscald/selim.txt index 952bac9e..cc7a8863 100644 --- a/npc/009-2_Hurnscald/selim.txt +++ b/npc/009-2_Hurnscald/selim.txt @@ -5,7 +5,7 @@ //# # //################################################################################# -new_20-1.gat,32,104,0 script Selim 142,{ +009-2.gat,32,104,0 script Selim 142,{ setarray @all_colours$, "red", "green", "dark blue", "yellow", "light blue", "pink", "black", "orange", "purple", "dark green"; setarray @all_colours_cap$, "Red", "Green", "Dark Blue", "Yellow", "Light Blue", "Pink", "Black", "Orange", "Purple", "Dark Green"; @@ -26,6 +26,8 @@ L_clothes_choice: "Tank top ", L_tanktop, "Short tank top", L_tanktop_short, "Silk robe", L_robe, + "Cotton headband", L_headband, + "Desert hat", L_desert_hat, "I'm fine for now, thanks.", -; close; @@ -79,6 +81,18 @@ L_robe: set @name$, "silk robe"; goto L_picked_item; +L_headband: + set @del, 724; + set @new, 2140; + set @name$, "cotton headband"; + goto L_picked_item; + +L_desert_hat: + set @del, 723; + set @new, 2130; + set @name$, "desert hat"; + goto L_picked_item; + L_picked_item: if (countitem(@del) == 0) goto L_havenone; L_colour: |