From 317c964db85d96adb47b1420aa0397956905751d Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Sat, 27 Aug 2011 14:50:47 -0700 Subject: Fix multiple entries in highscore list, spelling of throw, reduce time to 3 minutes --- world/map/npc/033-1/kimarr.txt | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'world/map/npc/033-1/kimarr.txt') diff --git a/world/map/npc/033-1/kimarr.txt b/world/map/npc/033-1/kimarr.txt index c8de9c50..0e4b77af 100644 --- a/world/map/npc/033-1/kimarr.txt +++ b/world/map/npc/033-1/kimarr.txt @@ -6,7 +6,7 @@ // Variables: // global $@Fluffy_Hunting - state of the quest // 0: nobody is hunting -// 1: somebody is hunting. The script checks every second if there is food on the ground. +// 1: somebody is hunting. The script checks every second if there is food on the ground. // 2: not used anymore, was: food dropped but no spawn yet // 3: not used anymore, was: monsters have been spawned // global $@Fluffy_Time - the number of seconds since you entered the area @@ -187,7 +187,7 @@ OnTimer1000: goto L_Died; set $@Fluffy_Time, $@Fluffy_Time + 1; - if ($@Fluffy_Time > 300) + if ($@Fluffy_Time > 180) goto L_TimeOver; goto L_CheckDrops; @@ -224,12 +224,12 @@ L_CheckDrops: goto L_ContinueTimer; L_TooManyFluffies: - if (@Fluffy_Toomany == 0) + if (@Fluffy_Toomany) + goto L_ContinueTimer; message strcharinfo(0), "Wow, calm down, there are already too many fluffies around here."; - if (@Fluffy_Toomany == 0) - set @Fluffy_Toomany, 1; + set @Fluffy_Toomany, 1; goto L_ContinueTimer; - + L_BeginHunting: set $@Fluffy_Spawn, @Fluffy_RedApple + 5 * @Fluffy_XmasCake + 3 * @Fluffy_Cake + @Fluffy_GreenApple; // limit the number of monsters that can be spawned, to prevent people creating lag with massive amount of monsters @@ -261,7 +261,8 @@ OnOtherDeath: end; OnFluffyDeath: - if ($@Fluffy_Hunting == 0) end; + if ($@Fluffy_Hunting == 0) + end; set $@Fluffy_Kills, $@Fluffy_Kills + 1; set $@Fluffy_Alive, $@Fluffy_Alive - 1; //TODO: remove announce after debugging @@ -275,7 +276,7 @@ OnFluffyDeath: end; L_Killedall: - message strcharinfo(0), "Good job, but you still have time to trow more food on the ground."; + message strcharinfo(0), "Good job, but you still have time to throw more food on the ground."; end; S_Clean: @@ -300,6 +301,9 @@ L_MaybeRecordScore: L_MaybeInsertNext: if ($@Fluffy_Kills > $Record_Fluffy_Kills[@rank]) goto L_InsertScore; + // you already had a better score + if (strcharinfo(0) == $Record_Fluffy_Name$[@rank]) + goto L_Reward1; set @rank, @rank + 1; if (@rank == MAX_HIGH_SCORES) goto L_Reward1; -- cgit v1.2.3-60-g2f50