diff options
Diffstat (limited to 'npc/017-3/doug.txt')
-rw-r--r-- | npc/017-3/doug.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/017-3/doug.txt b/npc/017-3/doug.txt index ac4509ffa..5594f0723 100644 --- a/npc/017-3/doug.txt +++ b/npc/017-3/doug.txt @@ -14,17 +14,17 @@ mesq l("I am willing to pay @@ GP for each 5 @@ you bring me!", .@price, getitemlink(CaveSnakeLamp)); next; select - rif(countitem(CaveSnakeLamp >= 5), l("Here they are!")), + rif(countitem(CaveSnakeLamp) >= 5, l("Here they are!")), l("Not now..."); mes ""; if (@menu == 1) { delitem CaveSnakeLamp, 5; Zeny=Zeny+.@price; - getexp .@price, 5; + getexp (.@price/rand(2,3)), 5; mesn; mesq l("Many, many thanks!"); + next; } - next; mesn; mesq l("Too bad these lamps wear off after a while... I am making stocks of them now!"); close; @@ -34,7 +34,7 @@ OnInit: setunitdata(.@npcId, UDT_HEADTOP, FancyHat); setunitdata(.@npcId, UDT_HEADMIDDLE, CreasedShirt); setunitdata(.@npcId, UDT_HEADBOTTOM, NPCEyes); - setunitdata(.@npcId, UDT_WEAPON, CandorBoots); // Boots + setunitdata(.@npcId, UDT_WEAPON, JeansShorts); setunitdata(.@npcId, UDT_HAIRSTYLE, 2); setunitdata(.@npcId, UDT_HAIRCOLOR, 4); |