diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-13 02:50:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-13 02:50:07 -0300 |
commit | 330f83d446aecfaa481dca38e7da4ac44f4a9c5b (patch) | |
tree | b14c09b39c66c1665d02795d92a2b620e6870c2e | |
parent | df63a99394dffaa2cbdf9be21c9cf3bfd500a04f (diff) | |
download | serverdata-330f83d446aecfaa481dca38e7da4ac44f4a9c5b.tar.gz serverdata-330f83d446aecfaa481dca38e7da4ac44f4a9c5b.tar.bz2 serverdata-330f83d446aecfaa481dca38e7da4ac44f4a9c5b.tar.xz serverdata-330f83d446aecfaa481dca38e7da4ac44f4a9c5b.zip |
Use a more constant variable for Candor Battle
-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 8f922bf42..b3475c47b 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -377,7 +377,7 @@ OnReward: if ($@FEFE_WAVE % 5 == 0) Zeny+=.@prize; getexp .@prize, rand(1,3); - @crazypoints+=($@FEFE_CAVE_LEVEL >= 5 ? 2 : 1); + @crazypoints+=($@FEFE_CAVE_LEVEL >= .BONUS_LVL ? 2 : 1); end; // Every 5 seconds, handle cave, if fighting. Does nothing when waiting. @@ -407,5 +407,6 @@ OnInit: .delay=(60*25); .wtime=0; .DIFFICULTY=0; + .BONUS_LVL=5; end; } |