31.08.2015, 20:48
A little bug, It removes me from every car in the map, while I want it just for the 5 cars from GSF. If you're not a GSF member it removes me from everycar in the map. Please help, how do I change it to just: If you're not a GSF member you cannot drive a GSF vehicle.
PHP код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if(newstate == PLAYER_STATE_DRIVER)
{
new vehicleid = GetPlayerVehicleID(playerid);
if(vehicleid == Veh || Veh2 || Veh3 || Veh4 || Veh5)
{
if(PlayerInfo[playerid][MemberGSF] >= 1 || PlayerInfo[playerid][LeaderGSF] >= 1)
{
SendClientMessage(playerid, COLOR_LIMEGREEN, "You have entered your organization vehicle!");
}
else
{
SendClientMessage(playerid, COLOR_RED, "Error: You are not a member of Grove Street Families!");
RemovePlayerFromVehicle(playerid);
}
}
}
return 1;
}