diff options
Diffstat (limited to 'world/map/npc/mobs/mob_kill_handler.txt')
-rw-r--r-- | world/map/npc/mobs/mob_kill_handler.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/world/map/npc/mobs/mob_kill_handler.txt b/world/map/npc/mobs/mob_kill_handler.txt index 83f64d3e..9e2f69c7 100644 --- a/world/map/npc/mobs/mob_kill_handler.txt +++ b/world/map/npc/mobs/mob_kill_handler.txt @@ -58,10 +58,9 @@ L_Celestia: L_Terranite: if ( @mobID != Terranite ) goto L_Pink_Flower; - if (TERRAC < 1 || TERRAC > 1500) goto L_Return; - if (TERRAC % 100 == 0) - message strcharinfo(0), "Terranite : ##3Total Terranites Slain: "+TERRAC; - set TERRAC, TERRAC + 1; + if (QL_BEHEADER_TERRAC < 1 || QL_BEHEADER_TERRAC > 1500) + goto L_Return; + set QL_BEHEADER_TERRAC, QL_BEHEADER_TERRAC + 1; goto L_Return; L_Pink_Flower: |