diff options
Diffstat (limited to 'npc/functions/gmbot.txt')
-rw-r--r-- | npc/functions/gmbot.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/npc/functions/gmbot.txt b/npc/functions/gmbot.txt index caa44cedd..1211c6fd9 100644 --- a/npc/functions/gmbot.txt +++ b/npc/functions/gmbot.txt @@ -34,11 +34,14 @@ OnSlaveDie: end; OnBourneAgain: - channelmes("#world", strcharinfo(0)+" did an act worth of notice."); - dispbottom l("Oh well, this sucks, but that was only an illusion."); - dispbottom l("The real Monster King is probably on his fortress. It'll take more than that to take him down."); - getexp BaseLevel**3, 0; - Mobpt = Mobpt + 165; + if (playerattached()) { + channelmes("#world", strcharinfo(0)+" did an act worth of notice."); + dispbottom l("Oh well, this sucks, but that was only an illusion."); + dispbottom l("The real Monster King is probably on his fortress. It'll take more than that to take him down."); + getexp BaseLevel**3, 0; + Mobpt = Mobpt + 165; + $MOST_HEROIC$=strcharinfo(0); + } // We need to start over .bar=true; OnInit: |