diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/aurora.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index df3e3129e..b085fb068 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -454,7 +454,7 @@ function script FYE_Raid { .@mob=getarg(0, killedrid); // Actually - ignore system or auto-generated entities. // This check also excludes the Raid boss itself. - if (.@mob > 1490) + if (.@mob >= 1490) return; .@lv=getmonsterinfo(.@mob, MOB_LV); // Chance goes from 10% to 1% @@ -484,7 +484,7 @@ 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 + 1, FYRAID_LV); + $FYRAID_LV[.@id] = min($FYRAID_LV[.@id] + 1, FYRAID_LV); $FYRAID_TIME[.@id]=gettimetick(2)+3600; // One hour // Announce that the boss was found! |