diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/009-2/ryan.txt | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/npc/009-2/ryan.txt b/npc/009-2/ryan.txt index e782ee213..dcb0f5c3d 100644 --- a/npc/009-2/ryan.txt +++ b/npc/009-2/ryan.txt @@ -33,14 +33,26 @@ mesq l("Hmmm... Yummy!"); // Landmark rewards - // PS. 20 = 420 Delights + // Chef hat last stage: 120 Delights .@q=getq(HalinarzoQuest_LifeDelight); - if (.@q == 20) { + if (.@q == 11) { getitem ChefHat, 1; next; mesn; mesq l("Ah, you really deserve this @@. Good job!", getitemlink(ChefHat)); } + if (.@q >= 21) { + Zeny=Zeny+.@a; + getexp rand(1,.@q), rand(1, .@q); + } + if (.@q >= 51) { + Zeny=Zeny+.@a; + getexp rand(1,.@a), rand(1, .@q); + } + if (.@q >= 91) { + Zeny=Zeny+.@a; + getexp rand(.@q,.@a), rand(1, .@q); + } close; |