
Posts
678
Respect
202Add +1
Forum Rank
Zombie Enslaver
Primary Group
Community Scripter
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
if ( self == attacker )
{
damage = int( self.maxhealth * .25 );
if ( damage < 25 )
{
damage = 25;
}
if ( self.health - damage < 1 )
{
self.health = 1;
}
else
{
self.health -= damage;
}
}
/*
if ( self == attacker )
{
damage = int( self.maxhealth * .25 );
if ( damage < 25 )
{
damage = 25;
}
if ( self.health - damage < 1 )
{
self.health = 1;
}
else
{
self.health -= damage;
}
}
*/