RemovePlayerFromVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
[[Category:Incomplete]]
__NOTOC__  
__NOTOC__  
This fake function is for use with blah & blah and does blahblahblabhalbhl
This function removes a player from a vehicle immediately.  This works for drivers and passengers.  Note that this removes the player from the vehicle and puts him in the exact position where the command was initiated.


==Syntax==  
==Syntax==  
Line 10: Line 8:


===Required Arguments===  
===Required Arguments===  
*'''argumentName:''' description
*'''player:''' The player you wish to remove from a vehicle
 
===Optional Arguments===
{{OptionalArg}}
*'''argumentName2:''' descriptiona
*'''argumentName3:''' description


===Returns===
===Returns===
Returns ''true'' if blah, ''false'' otherwise.
Returns ''true'' if the operation was successful, ''false'' otherwise.


==Example==  
==Example==  
This example does...
This example forces a player out of a police vehicle if he is not a policeman.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" ) --add an event for onPlayerEnterVehicle
blabhalbalhb --abababa
function onPlayerEnterVehicle ( vehicle, seat, jacked ) --when a player enters a vehicle
--This line does this...
    if ( vehicle == 598 or 596 or 597 or 599 ) and ( getPlayerSkin ( source ) ~= 280 or 281 or 282 or 283 or 284 or 285 or 286 ) then --if the vehicle is one of 4 police cars, and the skin is not a police skin
mooo
        removePlayerFromVehicle ( source )--force the player out of the vehicle
        outputChatBox ( "Only policeman can enter police cars!", source ) --and tell the player why
    end
end
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{FunctionArea_Functions}}
{{Vehicle functions}}

Revision as of 21:17, 13 August 2006

This function removes a player from a vehicle immediately. This works for drivers and passengers. Note that this removes the player from the vehicle and puts him in the exact position where the command was initiated.

Syntax

bool removePlayerFromVehicle ( element player )           

Required Arguments

  • player: The player you wish to remove from a vehicle

Returns

Returns true if the operation was successful, false otherwise.

Example

This example forces a player out of a police vehicle if he is not a policeman.

addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" ) --add an event for onPlayerEnterVehicle
function onPlayerEnterVehicle ( vehicle, seat, jacked ) --when a player enters a vehicle
    if ( vehicle == 598 or 596 or 597 or 599 ) and ( getPlayerSkin ( source ) ~= 280 or 281 or 282 or 283 or 284 or 285 or 286 ) then --if the vehicle is one of 4 police cars, and the skin is not a police skin
        removePlayerFromVehicle ( source )--force the player out of the vehicle
        outputChatBox ( "Only policeman can enter police cars!", source ) --and tell the player why
    end
end

See Also