SetPlayerCanBeKnockedOffBike

From Multi Theft Auto: Wiki
Revision as of 12:03, 17 February 2008 by Bardokas (talk | contribs) (Tweaked Example)
Jump to navigation Jump to search

This function controls if you can fall of your bike.

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

Shared