I'm going to try the following, as I want a gaurenteed kill within "half radius"
Code:
new damage = 100;
radius = MAX_RADIUS / 2;
if (distance > radius)
{
distance -= radius;
damage = damage * (radius - distance) / radius;
}
SlapPlayer(target, damage, false);
__________________