diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-06-27 16:40:37 +0200 |
---|---|---|
committer | Jesusalva Jesusalva <jesusalva@tmw2.org> | 2025-06-27 23:32:13 +0000 |
commit | c1855b0e13ca4c61fcfaf442efbb0ffefd0957d8 (patch) | |
tree | f420106c838dc5f20590783ab365b3a7a2474f7e | |
parent | 869f71a8b41f20586e35c2199f290982ff6a2a6d (diff) | |
download | serverdata-maxime_ryan_batching.tar.gz serverdata-maxime_ryan_batching.tar.bz2 serverdata-maxime_ryan_batching.tar.xz serverdata-maxime_ryan_batching.zip |
Fix Maxime's Ryan-dependent batchingmaxime_ryan_batching
-rw-r--r-- | npc/003-0-1/maxime.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/003-0-1/maxime.txt b/npc/003-0-1/maxime.txt index 34eb1490c..882074a46 100644 --- a/npc/003-0-1/maxime.txt +++ b/npc/003-0-1/maxime.txt @@ -20,14 +20,14 @@ mesc l("@@/1 @@", countitem(RoastedMaggot), getitemlink(RoastedMaggot)); mesc l("@@/120 GP", format_number(Zeny)); next; - .@q=getq(HalinarzoQuest_LifeDelight); + .@deliveries = getq2(HalinarzoQuest_LifeDelight); menuint l("I have the items, please bake for me"), 1, - rif(.@q > 10, l("I want two batches!")), 2, - rif(.@q > 20, l("I want THREE batches!")), 3, - rif(.@q > 30, l("I need FIVE batches!")), 5, - rif(.@q > 50, l("I have a supplier, gimme TEN batches!")), 10, - rif(.@q > 75, l("Do as much as possible.")), 100, + rif(.@deliveries > 10, l("I want two batches!")), 2, + rif(.@deliveries > 20, l("I want THREE batches!")), 3, + rif(.@deliveries > 30, l("I need FIVE batches!")), 5, + rif(.@deliveries > 50, l("I have a supplier, gimme TEN batches!")), 10, + rif(.@deliveries > 75, l("Do as much as possible.")), 100, l("Ah, nice to know."), 0; mes ""; |