diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-29 16:12:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-29 16:12:07 -0300 |
commit | 7501202f3b120033d406cbcd2ae0d0763ae2b290 (patch) | |
tree | 104be36452caa7ad62b8ab471b27e450e609f503 | |
parent | c7f8fd4c17b61cc6b1896eaf2039363c938c2f48 (diff) | |
download | serverdata-7501202f3b120033d406cbcd2ae0d0763ae2b290.tar.gz serverdata-7501202f3b120033d406cbcd2ae0d0763ae2b290.tar.bz2 serverdata-7501202f3b120033d406cbcd2ae0d0763ae2b290.tar.xz serverdata-7501202f3b120033d406cbcd2ae0d0763ae2b290.zip |
Fix lame bugs
-rw-r--r-- | npc/009-2/ryan.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/npc/009-2/ryan.txt b/npc/009-2/ryan.txt index 5e4913e15..e782ee213 100644 --- a/npc/009-2/ryan.txt +++ b/npc/009-2/ryan.txt @@ -17,7 +17,7 @@ mesq l("If you bring me @@ @@, I'll give you a reward!", .@a, getitemlink(TonoriDelight)); next; select - rif(countitem(TonoriDelight > .@a), l("I have everything!")), + rif(countitem(TonoriDelight) >= .@a, l("I have everything!")), l("Ah, not now..."); mes ""; if (@menu == 2) @@ -54,13 +54,12 @@ OnInit: setunitdata(.@npcId, UDT_HEADTOP, ChefHat); setunitdata(.@npcId, UDT_HEADMIDDLE, SilkRobe); setunitdata(.@npcId, UDT_HEADBOTTOM, CottonTrousers); - setunitdata(.@npcId, UDT_WEAPON, AssassinBoots); + setunitdata(.@npcId, UDT_WEAPON, Boots); setunitdata(.@npcId, UDT_HAIRSTYLE, 26); setunitdata(.@npcId, UDT_HAIRCOLOR, 2); .sex = G_MALE; .distance = 4; - npcsit; end; } |