Need help with infected mod
Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
im looking to add a nuke countdown timer before the round starts and add to the infected team red vission like they have been nuked.
also anyone can convert this would be a awesome.
unrealTournament(ServerClient client)
{
if (client.Stats.Kills == 2)
{
iPrintLn(client.Name + " ^3is on ^1KILLING SPREE", null);
iPrintLnBold(client.Name + " ^3is on ^1KILLING SPREE", null);
}
else if (client.Stats.Kills == 4)
{
iPrintLn(client.Name + " ^3is on ^1RAMPAGE SPREE!", null);
iPrintLnBold(client.Name + " ^3is on ^1RAMPAGE SPREE!", null);
}
if (client.Stats.Kills == 8)
{
iPrintLn(client.Name + " ^3is on DOMINATING SPREE!", null);
iPrintLnBold(client.Name + " ^3is on DOMINATING SPREE!", null);
}
if (client.Stats.Kills == 12)
{
iPrintLn(client.Name + " ^3is on ^1UNSTOPPABLE Spree!", null);
iPrintLnBold(client.Name + " ^3is on ^1UNSTOPPABLE Spree!", null);
}
if (client.Stats.Kills == 14)
{
iPrintLn(client.Name + " ^3is on ^1MONSTER SPREE!", null);
iPrintLnBold(client.Name + " ^3is on ^1MONSTER SPREE!", null);
}
if (client.Stats.Kills == 18)
{
iPrintLn(client.Name + " ^3is on ^1MEGA Spree!", null);
iPrintLnBold(client.Name + " ^3is on ^1MEGA Spree!", null);
}
if (client.Stats.Kills == 24)
{
iPrintLn(client.Name + " ^3is a WICKED sick!", null);
iPrintLnBold(client.Name + " ^3is a WICKED sick!", null);
}
if (client.Stats.Kills == 25)
{
iPrintLn(client.Name + " ^3is on ^1GOD LIKE!", null);
iPrintLnBold(client.Name + " ^3is on ^1GOD LIKE!", null);
}
if (client.Stats.Kills == 30)
{
iPrintLn(client.Name + " ^3is on ^1HOLY SHIT spree!", null);
iPrintLnBold(client.Name + " ^3is on ^1HOLY SHIT spree!", null);
}
if (client.Stats.Kills == 35)
{
iPrintLn(client.Name + " ^3is on ^1Zombie Master Killer Spree!", null);
iPrintLnBold(client.Name + " ^3is on ^1Zombie Master Killer Spree!", null);
}
}