25.10.2013, 21:00
Й o seguinte, tentei criar um sistema de veiculo para as pessoas que sгo do emprego. Se a pessa nгo for ,ela ganha estrela. Mas sу que o jogador estб ganhando estrela em todos os carros . Veja sу .
//Topo do gm
//Topo do gm
PHP код:
new vcaminhao[3];
PHP код:
public OnGameModeInit()
{
//Carros
vcaminhao[0] = AddStaticVehicle(403,2057.3081,-1939.9397,13.9432,270.4501,0,0);
vcaminhao[1] = AddStaticVehicle(403,2050.3069,-1839.9107,15.9432,270.4501,0,0);
vcaminhao[2] = AddStaticVehicle(403,2060.3019,-1049.9007,1.9432,270.4501,0,0);
//Fim dos carros
return 1;
}
PHP код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if(newstate == PLAYER_STATE_DRIVER)
{
if(VDaOrg(vcaminhao,0,2) && (PlayerDados[playerid][Profissao] == 0))
{
SendClientMessage(playerid, AMARELO, "Vocк й caminhoneiro");
}
else
{
SetPlayerWantedLevel(playerid, 1);
SendClientMessage(playerid, AMARELO, "Vocк nгo й caminhoneiro");
}
}
return true;
}
PHP код:
#define VDaOrg(%0,%1,%2) GetPlayerVehicleID(playerid) >= %0[%1] && GetPlayerVehicleID(playerid) <= %0[%2]