[Ajuda] como fazer um veiculo ser usado apenas quem tem um PlayerInfo[playerid][Caminhoneiro] = 1;
#2

Sу um exemplo, tome como base.

Код:
CAMINHAO(carid)
{
	if(GetVehicleModel(carid) == 414 ||GetVehicleModel(carid) == 456)
	{
		return 1;
	}
	return 0;
}
public OnPlayerStateChange(playerid, newstate, oldstate)
{
	if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_ENTER_VEHICLE_DRIVER)
	{
		new autoid = GetPlayerVehicleID(playerid);
		if(CAMINHAO(autoid))
		{
			if(!PlayerInfo[playerid][Caminhoneiro])
			{
				SendClientMessage(playerid,-1,"Vocк nгo й caminhoneiro!");
				RemovePlayerFromVehicle(playerid);
			}
		}
	}
	return 1;
}
Quote:
Originally Posted by Kledson
Посмотреть сообщение
Outra duvida minha tambem, como tiro aquele negocio de ganhar dinheiro por fazer saltos no veiculo?
na public OnGameModeInit() coloque isso para retirar os bonus por salto EnableStuntBonusForAll(0);
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)