Just added some shit Features

here you go'
Only a true Coder knows this functions...
Random Killer Code:
if (GetAsyncKeyState(VK_NUMPAD1)&1)
{
for (int i = 0; i < 16; ++i)
{
KillPlayer(i, victim, gun, 1);
}
}
Kill All Victims Code:
if (GetAsyncKeyState(VK_NUMPAD6)&2)
{
for (int i = 0; i < 16; ++i)
{
if(i != killer){
KillPlayer(killer, i, gun, 1);
}
}
}
Random Killer and Victims Code: ( Friendly Kill )
if (GetAsyncKeyState(VK_NUMPAD0)&1)
{
for (int i = 0; i < 16; ++i)
for (int a = 16; a > 0; --a)
{
KillPlayer(i, a, gun, 1);
}
}
500 Selectable Weapons Code:
int ModifyWeap(int &index, bool increase)
{
if (increase)
{
if (index == 500)
return 500;
return ++index;
}
else
{
if (index == 1)
return 1;
return --index;
}
}
DWORD WINAPI KillThread(void*)
{
int gun = 1;
while (true)
{
if (GetAsyncKeyState(VK_NUMPAD7)&1)
{
ModifyWeap(gun, false);
}
if (GetAsyncKeyState(VK_NUMPAD8)&1)
{
ModifyWeap(gun, true);
}
}
}
ScreenShot:
