diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-03 09:26:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-03 09:26:42 -0300 |
commit | b1e84724744c5941c0d12555f507928f912cb6eb (patch) | |
tree | 5a8cd6a6c56459c79525735fb1312f37ef955949 | |
parent | c4ac16cb0c424dc0e5c6609ab2901559670cb1c7 (diff) | |
download | serverdata-b1e84724744c5941c0d12555f507928f912cb6eb.tar.gz serverdata-b1e84724744c5941c0d12555f507928f912cb6eb.tar.bz2 serverdata-b1e84724744c5941c0d12555f507928f912cb6eb.tar.xz serverdata-b1e84724744c5941c0d12555f507928f912cb6eb.zip |
The last small push :3
-rw-r--r-- | npc/003-0-1/maxime.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/003-0-1/maxime.txt b/npc/003-0-1/maxime.txt index 50015c6b3..ed3204b9e 100644 --- a/npc/003-0-1/maxime.txt +++ b/npc/003-0-1/maxime.txt @@ -27,6 +27,7 @@ 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, l("Ah, nice to know."), 0; mes ""; @@ -35,8 +36,8 @@ goto L_Close; for (.@i=0; .@i < @menuret; .@i++) { - if (!MaximeOven()) - goto L_Missing; + if (!MaximeOven()) + goto L_Missing; } mesn; @@ -49,6 +50,7 @@ L_Close: close; L_Missing: + if (@menuret == 100) close; mesn; mesq l("You don't have everything I asked you for."); next; |