06.05.2018, 03:16
Bom galera to fazendo sistema de concecionaria e qualquer um estб podendo entrar no carro se alguem puder me ajudar agradeзo desde jб!
PHP Code:
for(new c = 0; c < MAX_CARROS; c++)
{
CarroInfo[c][IDCarro] = vehicleid;
if(PlayerInfo[playerid][DonoCarroID] != CarroInfo[CarroInfo[vehicleid][IDCarro]][IDCarro] && CarroInfo[CarroInfo[vehicleid][IDCarro]][TravaCarro] == 1)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
SetPlayerPos(playerid, X, Y, Z);
new stirng[5000];
format(stirng, sizeof(stirng),"Esse veнculo pertence б %s",DOF2_GetString(CarroArquivo(GetPlayerVehicleID(playerid)),"DonoCarro"));
SendClientMessage(playerid, vermelho, stirng);
return 1;
}
return 1;
}