1
Modification Help / Re: a little help
« on: March 11, 2008, 03:12:56 PM »
Thanks for the help </sarcasm> I have figured it out for myself
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
%killer.play2d(rewardSound);
switch(%sourceClient.RewardKills){
case 3:
ShowRewardAll("* is on a RAMPAGE - 3 kills in a row!", "You are on a RAMPAGE - 3 kills in a row!", %sourceClient);
case 6:
ShowRewardAll("* is on a KILLING SPREE - 6 kills in a row!", "You are on a KILLING SPREE - 6 kills in a row!", %sourceClient);
case 9:
ShowRewardAll("* is UNSTOPPABLE - 9 kills in a row!", "You are UNSTOPPABLE - 9 kills in a row!", %sourceClient);
case 12:
ShowRewardAll("* is DOMINATING - 12 kills in a row!", "You are DOMINATING - 12 kills in a row!", %sourceClient);
case 15:
ShowRewardAll("* is GOD-LIKE - 15 kills in a row!", "You are GOD-LIKE - 15 kills in a row!", %sourceClient);
}
if(%sourceClient.RewardKills = 3)
{
ShowRewardAll("* is on a KILLING SPREE - 3 kills in a row!", "You are on a KILLING SPREE - 3 kills in a row!", %sourceClient);
%sourceClient.play2d(killingspree);
}
else if(%sourceClient.RewardKills = 6) {
ShowRewardAll("* is on a RAMPAGE - 6 kills in a row!", "You are on a RAMPAGE - 6 kills in a row!", %sourceClient);
%sourceClient.play2d(rampage);
}
else if(%sourceClient.RewardKills = 9) {
ShowRewardAll("* is on a DOMINATING - 9 kills in a row!", "You are on a DOMINATING - 9 kills in a row!", %sourceClient);
%sourceClient.play2d(rampage);
}
else if(%sourceCli1ent.RewardKills = 12) {
ShowRewardAll("* is on a UNSTOPPABLE - 12 kills in a row!", "You are on a UNSTOPPABLE - 12 kills in a row!", %sourceClient);
%sourceClient.play2d(rampage);
}
else if(%sourceClient.RewardKills = 15) {
ShowRewardAll("HOLY stuff - * has 15 kills in a row!", "HOLY stuff - You have 15 kills in a row!", %sourceClient);
%sourceClient.play2d(rampage);
}
to see if it would work. I have limited knowledge of the torque script so if anyone could help me get this working i would greatly appreciate it.