[Tiny-Release] Invincibility for GMs

03/28/2009 23:46 justprownage#1
First search for: public bool GetHitDie(uint Damage)

Add this under it:
Code:
            if (MyClient.Status >= 3) //Edit the 3 to your GM Status. 
            {
                CurHP -= 0;
                MyClient.SendPacket(General.MyPackets.Vital(UID, 0, CurHP));
                return false;
            }
You will still see the damage you are inflicted upon, but your health won't go down.
03/29/2009 01:23 DougChester#2
nice =)