TomTheGeek i believe made a New Rewards where its like killing streaks and stuff!
It goes: Bushido IS H@XOR - 172348217498273 kills!
Right now, it fails, i get a syntax error that it thinks it has ##R##atio
Here is complete code, please do not steal:
package TG_NewRewards
{
function GameConnection::onDeath(%this, %sourceObject, %sourceClient, %damageType, %damLoc){
Parent::onDeath(%this, %sourceObject, %sourceClient, %damageType, %damLoc);
//Reset victim's kill count
%this.RewardKills = 0;
}
//Kill ratio stuff
%this.RatioKilled++;
}
//Check for Self Delete
if(%this == %sourceClient){
return;
}
}
%sourceClient.RatioKills++;
}
if(isObject(%sourceClient)){
%sourceClient.RewardKills++;
}
//Check for kills in a row
switch(%sourceClient.RewardKills){
case 3:
messageAllExcept(%sourceClient, '', "<font:impact:20><color:ff00ff>" @ %sourceClient.name @ " <color:ffff00>is on a RAMPAGE - 3 kills in a row!");
messageClient(%sourceClient, '', "You are on a RAMPAGE - 3 kills in a row!");
case 6:
messageAllExcept(%sourceClient, '', "<font:impact:20><color:ff00ff>" @ %sourceClient.name @ "<color:ffff00> is on a KILLING SPREE - 6 kills in a row!");
messageClient(%sourceClient, '', "You are on a KILLING SPREE - 6 kills in a row!");
case 9:
messageAllExcept(%sourceClient, '', "<font:impact:20><color:ff00ff>" @ %sourceClient.name @ " <color:ffff00>is UNSTOPPABLE - 9 kills in a row!");
messageClient(%sourceClient, '', "You are UNSTOPPABLE - 9 kills in a row!");
case 12:
messageAllExcept(%sourceClient, '', "<font:impact:20><color:ff00ff>" @ %sourceClient.name @ "<color:ffff00> is DOMINATING - 12 kills in a row!");
messageClient(%sourceClient, '', "You are DOMINATING - 12 kills in a row!");
case 15:
messageAllExcept(%sourceClient, '', "<font:impact:20><color:ff00ff>" @ %sourceClient.name @ "<color:ffff00> is GOD-LIKE - 15 kills in a row!");
messageClient(%sourceClient, '', "You are GOD-LIKE - 15 kills in a row!");
case 18:
messageAllExcept(%sourceClient, '', "<font:impact:20><color:ff00ff>" @ %sourceClient.name @ "<color:ffff00> is a H@X0R - 18 kills in a row!");
messageClient(%sourceClient, '', "You are a H4X0R - 15 kills in a row!");
}
}
};
ActivatePackage(TG_NewRewards);