11.09.2011, 11:13
i have made it so when you get a 5 killstreak, you get an airstrike... but you can use it more than once... i wanna make it so when you use it once... you can't use it again without dying and having to restart the killstreak
pawn Код:
case 6:
{
if(!response)
{
SendClientMessage(playerid, C_RED, "You didn't call a killstreak in");
return 1;
}
switch(listitem)
{
case 0:
{
CreateExplosion(x, y, z+10, 12, 10.0);
CreateExplosion(x, y+10, z+10, 12, 10.0);
CreateExplosion(x+10, y+5, z+3, 12, 10.0);
CreateExplosion(x+5, y+3, z+1, 12, 10.0);
CreateExplosion(x+3, y+2, z, 12, 10.0);
CreateExplosion(x+1, y+1, z, 12, 10.0);
}
}
}