when player enter vehicle? I need a small function. +1 rep for help
#8

Quote:
Originally Posted by NeverKnow
Посмотреть сообщение
Here you go I help you

Код:
///put on OnPlayerEnterVehicle
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{		
        if(ispassenger == 0)
        {
                GameTextForPlayer(playerid, "~y~Welcome to ~r~vehicle", 5000, 4);
        }
        return 1;
}
This is my function

Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if( oldstate == PLAYER_STATE_ONFOOT && newstate == PLAYER_STATE_DRIVER )
    {
        //If they got into a car from being on foot.
        if( GetVehicleModel(GetPlayerVehicleID( playerid )) == 428 )
        {
            if( GetPlayerSkin(playerid) != 27 )
            {
                 //If their skin is not 27

                //Remove them and send message.
                RemovePlayerFromVehicle( playerid );
                SendClientMessage( playerid,0xFF000000, "Noredami vairuoti si transporta turite buti elektriku" ); //-1
            }
        }
    }
    return 1;
}
Can you add your function into this code and fix some returns at code end..... ?
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)