29.06.2015, 19:22
Olб, estou desenvolvendo um sistema, e estou com uma simples duvida, usando o cуdigo abaixo..
a intenзгo й retirar a vida de todos que estгo no mesmo veiculo que o "playerid"(motorista), o jogador(passageiro) vai receber algum tipo de dano? caso nгo, qual a soluзгo?
PHP код:
for (new i = 0; i < MAX_PLAYERS; i++)
{
if (GetPlayerVehicleID(i) == GetPlayerVehicleID(playerid))
{
GetPlayerHealth(i, health), SetPlayerHealth(i, health - 7);
////
GetPlayerHealth(playerid, health), SetPlayerHealth(playerid, health - 7);
}
}