diff options
-rw-r--r-- | npc/003-3/malindou.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt index 36dc947cb..cefb184f6 100644 --- a/npc/003-3/malindou.txt +++ b/npc/003-3/malindou.txt @@ -97,13 +97,6 @@ OnInit: htput($@CONTRIBUTORS, "dustman", 50); htput($@CONTRIBUTORS, "dragonstar", 20); //htput($@CONTRIBUTORS, "", 1); - - // We must also apply penalty for losing Mana Fragments - // Forest Mana Fragment is lost: (+1% HP, +5% pop, 20s faster removal) - UpdateBF("monster_hp_rate",1); - UpdateBF("mob_count_rate",5); - UpdateBF("mob_remove_delay",-20000); - // Just copy these lines as fragments are lost end; OnPCLoginEvent: @@ -113,5 +106,14 @@ OnPCLoginEvent: #MerchantBank = 0; } end; + +OnInterIfInitOnce: + // We must also apply penalty for losing Mana Fragments + // Forest Mana Fragment is lost: (+1% HP, +5% pop, 20s faster removal) + UpdateBF("monster_hp_rate",1); + UpdateBF("mob_count_rate",5); + UpdateBF("mob_remove_delay",-20000); + // Just copy these lines as fragments are lost + end; } |