[SOLVED] Vehicle Kick Problem
#8

Quote:
Originally Posted by //exora
pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if(newstate == PLAYER_STATE_DRIVER)
  {
    new vehicleid = GetPlayerVehicleID(playerid);
        new modelid = GetVehicleModel(vehicleid);

        if(modelid == 596 || modelid == 427 || modelid == 528 || modelid == 601 || modelid == 523 || modelid == 497 || modelid == 599)
        {
            if(gTeam[playerid] != 1 && gTeam[playerid] != 2)
      {
        SendClientMessage(playerid, COLOR_WHITE,"You are not allowed to enter this vehicle.");
              RemovePlayerFromVehicleEx(playerid);
            }
        }
        if(modelid == 416 || modelid == 407 || modelid == 544 || modelid == 487)
        {
            if(gTeam[playerid] != 3 && gTeam[playerid] != 4)
      {
        SendClientMessage(playerid, COLOR_WHITE,"You are not allowed to enter this vehicle.");
              RemovePlayerFromVehicleEx(playerid);
            }
        }
        if(modelid == 520 || modelid == 548 || modelid == 470 || modelid == 433)
        {
            if(gTeam[playerid] != 5)
            {
              SendClientMessage(playerid, COLOR_WHITE,"You are not allowed to enter this vehicle.");
              RemovePlayerFromVehicleEx(playerid);
            }
        }
    }
    return 1;
}

stock RemovePlayerFromVehicleEx(playerid)
{
    new Float:Position[3];
    GetPlayerPos(playerid, Position[0], Position[1], Position[2]);
    SetPlayerPos(playerid, Position[0]-1, Position[1], Position[2]+0.5);
}
Works, thanks
Reply


Messages In This Thread
[SOLVED] Vehicle Kick Problem - by FreddeN - 22.05.2010, 15:51
Re: [HELP] Vehicle Kick Problem - by FreddeN - 22.05.2010, 18:18
Re: [HELP] Vehicle Kick Problem - by Hiddos - 22.05.2010, 18:43
Re: [HELP] Vehicle Kick Problem - by russo666 - 22.05.2010, 18:48
Re: [HELP] Vehicle Kick Problem - by dice7 - 22.05.2010, 19:11
Re: [HELP] Vehicle Kick Problem - by FreddeN - 23.05.2010, 11:24
Re: [HELP] Vehicle Kick Problem - by woot - 23.05.2010, 11:57
Re: [HELP] Vehicle Kick Problem - by FreddeN - 23.05.2010, 12:52

Forum Jump:


Users browsing this thread: 1 Guest(s)