diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-14 17:57:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-14 17:57:13 -0300 |
commit | 7beeb17075b66b641abbe68893f7b8d2236c08f8 (patch) | |
tree | 8cb86b86d1c6d3ff73905a65c41b22f9a27b619a /npc/006-1 | |
parent | 6f327941bc23206dd62d5a102ac3f43e034834f5 (diff) | |
download | serverdata-7beeb17075b66b641abbe68893f7b8d2236c08f8.tar.gz serverdata-7beeb17075b66b641abbe68893f7b8d2236c08f8.tar.bz2 serverdata-7beeb17075b66b641abbe68893f7b8d2236c08f8.tar.xz serverdata-7beeb17075b66b641abbe68893f7b8d2236c08f8.zip |
Candor: Do not give strange coins for "Easy" and "Hard" runs
Diffstat (limited to 'npc/006-1')
-rw-r--r-- | npc/006-1/crazyfefe.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 2f6a430db..74cacc33c 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -335,6 +335,7 @@ function CleanUp { mapannounce "006-1", "Game over! Who will be the next to fall on Crazyfefe's Cave?", 0; areatimer "006-1", 20, 20, 70, 60, 10, "Crazyfefe::OnReward2"; + $@FEFE_OLD = $@FEFE_CAVE_LEVEL; $@FEFE_CAVE_LEVEL = 0; $@FEFE_WAVE = 0; $@FEFE_CAVE_HERO$ = ""; @@ -358,7 +359,7 @@ OnReward2: dispbottom l("Crazyfefe Cave: New Highscore: @@ points", CRAZYPOINTS); @crazypoints=0; } - if (!ispcdead()) + if (!ispcdead() && $@FEFE_OLD >= .BONUS_LVL) getitem StrangeCoin, limit(1, @crazypoints/25, 5); // Rewards surviving players between rounds, according to performance, and get rid of dead PCs. OnReward: |