There is no error code. What did I do wrong?
function jumperProjectile::radiusDamage(%this, %obj, %col, %distanceFactor, %pos, %damageAmt)
{
%col = %col.sourceObject;
if(!isObject(%col) || !isObject(%obj))
return;
if(((%col.getClassName() $= "Player" && %obj.getClassName() $= "Player") && (!%col.PvP && !%obj.PvP)) || (%col.getClassName() $= "AIPlayer" && %obj.getClassName() $= "AIPlayer"))
return;
if(%obj == %col)
return;
%obj.setRPG_Stun(1);
%obj.RPG_Stun();
parent::radiusDamage(%this, %obj, %col, %distanceFactor, %pos, %damageAmt);
}