Get in Player Vehicle
#1

I want to add a Command /giv playerid (getinvehicle)

If I type this vehicle I get in a vehicle of the Player.

But I dont now how to script it can someone help me please :/
Reply
#2

so you mean you want to get into the vehicle of the specified playerid?

pawn Код:
CMD:giv( playerid, params[ ] )
{
    new targetid;
    if( sscanf( params, "u", targetid ) ) return SendClientMessage( playerid, -1, "Usage: /giv [playerid]" );
    if( targetid == INVALID_PLAYER_ID ) return SendClientMessage( playerid, -1, "Invalid playerid!" );
    if( !IsPlayerInAnyVehicle( targetid ) ) return SendClientMessage( playerid, -1, "This player has no vehicle!" );
    RemovePlayerFromVehicle( targetid );
    PutPlayerInVehicle( playerid, GetPlayerVehicleID( targetid ), 0 );
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)