From 4c028b6871c7d1deacfe9bdb99781d263b1810f9 Mon Sep 17 00:00:00 2001 From: tux9th Date: Sun, 15 Sep 2013 00:35:30 +0200 Subject: Orum fix: * no longer banishes people with OrumQuest > 32; Reported by Fortunato. * fix off by 1 error at first minigame. --- world/map/npc/017-4/orum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'world/map/npc') diff --git a/world/map/npc/017-4/orum.txt b/world/map/npc/017-4/orum.txt index 950b8768..6335bd9b 100644 --- a/world/map/npc/017-4/orum.txt +++ b/world/map/npc/017-4/orum.txt @@ -47,7 +47,7 @@ set @REWARD_MONEY, 100000; set @REWARD_EXP, 100000; - if (OrumQuest == 32) goto L_Done; + if (OrumQuest > 31) goto L_Done; if (OrumQuest == 31) goto L_PlacedFifthFlower; if (OrumQuest == 30) goto L_PlaceFifthFlower; @@ -322,7 +322,7 @@ L_EasyMinigame: L_EasyCheck: set @bubblingLevel, @bubblingLevel + 3 - rand(7); - if (@bubblingLevel < 22) + if (@bubblingLevel < 21) goto L_EasyTooEarly; if (@bubblingLevel > 27) goto L_EasyTooLate; -- cgit v1.2.3-60-g2f50