SetPlayerCanBeKnockedOffBike

From Multi Theft Auto: Wiki
Revision as of 07:51, 17 February 2008 by CJGrove (talk | contribs)
Jump to navigation Jump to search

Dialog-information.png This article needs checking.

Reason(s): Is this correct?

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.

function canBeKnockedOff ( command, state )
-- The player should enter /knock true or /knock false
setPlayerCanBeKnockedOffBike ( getLocalPlayer(), state )
-- Get the player and set true or false
end
addCommandHandler ( "knock", canBeKnockedOff )

See Also

Shared