08.11.2008, 13:34
SetTimer("killcar", 1000, 1); //you don't use playerid here but...
public killcar(playerid) //...you use it here...
for(new i = 0; i < GetMaxPlayers(); i++) //...so you need a loop...
if(BOOM[i] == 1) //..and check...
//the rest of your code here with "i" as playerid.
public killcar(playerid) //...you use it here...
for(new i = 0; i < GetMaxPlayers(); i++) //...so you need a loop...
if(BOOM[i] == 1) //..and check...
//the rest of your code here with "i" as playerid.