From ecc0eb38f7e20dce0bb17b173ae9d6eb17d83b98 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 12 Mar 2019 00:13:29 -0300 Subject: Cap how many Delights Ryan may ask from 330k to 190k --- npc/009-2/ryan.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'npc/009-2') diff --git a/npc/009-2/ryan.txt b/npc/009-2/ryan.txt index 63b9aa083..7b05babdf 100644 --- a/npc/009-2/ryan.txt +++ b/npc/009-2/ryan.txt @@ -9,8 +9,11 @@ if (BaseLevel < 17) goto L_Weak; if (!getq(HalinarzoQuest_LifeDelight)) goto L_Prologue; .@q=getq2(HalinarzoQuest_LifeDelight); - .@a=(.@q**2)+18; - // Maximum: 10'020 Delights + if (.@q < 50) + .@a=(.@q**2)+18; + else + .@a=2500+18*(.@q-49); + if (.@q > 100) goto L_Complete; mesn; mesq l("Ah, I just wanted @@... Yummy, lovely @@...", getitemlink(TonoriDelight), getitemlink(TonoriDelight)); @@ -40,7 +43,7 @@ mesq l("Hmmm... Yummy!"); // Landmark rewards - // Chef hat last stage: 120 Delights - 605 in total + // Chef hat last stage: 120 Delights - 583 in total .@r=getq(HalinarzoQuest_LifeDelight); .@q=getq2(HalinarzoQuest_LifeDelight); if (.@r < 2 && .@q >= 11) { @@ -63,6 +66,7 @@ Zeny+=rand(.@a, .@a+.@q)*.p; getexp rand(.@q,.@a)*.@l, rand(1, .@q); } + // Platinum + Iridium last stage: 3418 Delights - 189275 in total if (.@r < 3 && .@q == 100) { setq1 HalinarzoQuest_LifeDelight, 3; getitem PlatinumIngot, 1; -- cgit v1.2.3-70-g09d2