SetPlayerCanBeKnockedOffBike: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Tweaked Example)
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
This function controls if you can fall of your bike.
This function controls if you can fall of your bike by accident - namely by banging into a wall.


==Syntax==  
==Syntax==  

Revision as of 12:43, 17 February 2008

This function controls if you can fall of your bike by accident - namely by banging into a wall.

Syntax

bool setPlayerCanBeKnockedOffBike ( player thePlayer, bool canBeKnockedOffBike )         

Required Arguments

  • thePlayer: the player whose knockoffstatus being changed
  • state: the true or false state

Example

This example sets the canBeKnockedOff status true or false.

local player = getLocalPlayer()
function changeCanBeKnockedOff ( command )
-- The player should enter /knock
status = canPlayerBeKnockedOffBike (player)
 if (status == true) then
  setPlayerCanBeKnockedOffBike (player, false )
  outputChatBox ( "Now you can't be knocked off your bike." )
  else
  setPlayerCanBeKnockedOffBike (player, true )
  outputChatBox ( "Now you can be knocked off your bike." )
  -- Get the player and set true or false
 end
end
addCommandHandler ( "knock", changeCanBeKnockedOff )

See Also