diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/aurora.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index b085fb068..5195aa873 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -484,7 +484,9 @@ function script FYE_Raid { // Assign the boss stats $FYRAID_HP[.@id]=2000+FYRAID_LV*1000+(FYRAID_LV/5*500); // Also declared in 001-13/main.txt - $FYRAID_LV[.@id] = min($FYRAID_LV[.@id] + 1, FYRAID_LV); + // swap this max into min if you'd like to make teamwork into a strategy + // for keeping the bosses lower level, but still fightable. + $FYRAID_LV[.@id] = max($FYRAID_LV[.@id] + 1, FYRAID_LV); $FYRAID_TIME[.@id]=gettimetick(2)+3600; // One hour // Announce that the boss was found! |