[Ajuda] Trancando veнculos.
#5

pawn Код:
//Inicio do GM ou FS..
new bool:Trancado[MAX_VEHICLES];

//Ongame ou onfilter...
    for(new i = 0; i < MAX_VEHICLES; i ++)
    {
        Trancado[i] = false;
        }
//OnPlayerEnterVehicle
        if(Trancado[vehicleid] == true)
        {
                new Float:x,Float:y,Float:z;
        GetPlayerPos(playerid, x, y, z);
        SetPlayerPos(playerid, x, y, z+0.5);
            }

//Comando para trancar...
    if(!strcmp(cmdtext, "/trancar", true)) //vlw por adiantar Pedro Pawno :)
    {
        //Checa se estб no veiculo.
        if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, -1,"Voce nгo estб em um veнculo!");
       
        if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER) return SendClientMessage(playerid,-1,"Vocк nгo pode trancar esse veнculo!");
        Trancado[GetPlayerVehicleID(playerid)] = true;
        //mensagem
        SendClientMessage(playerid, -1, "Veiculo foi trancado.");
        return true;
    } //o de destrancar vc faz ne? '-'
Reply


Messages In This Thread
Trancando veнculos. - by Bryaan_Smith - 10.04.2013, 02:04
Respuesta: Trancando veнculos. - by Pedro Pawno - 10.04.2013, 02:45
Re: Respuesta: Trancando veнculos. - by Axl. - 10.04.2013, 03:15
Respuesta: Trancando veнculos. - by Pedro Pawno - 10.04.2013, 03:33
Re: Trancando veнculos. - by GTO.DoDo - 10.04.2013, 05:05
Re: Trancando veнculos. - by Lуs - 10.04.2013, 06:51
Respuesta: Re: Trancando veнculos. - by Pedro Pawno - 10.04.2013, 12:52
Re: Respuesta: Re: Trancando veнculos. - by Lуs - 10.04.2013, 13:08
Respuesta: Re: Respuesta: Re: Trancando veнculos. - by Pedro Pawno - 10.04.2013, 13:16
Re: Trancando veнculos. - by Lуs - 10.04.2013, 13:24

Forum Jump:


Users browsing this thread: 2 Guest(s)