SetPlayerCanBeKnockedOffBike

From Multi Theft Auto: Wiki
Revision as of 09:48, 17 February 2008 by CJGrove (talk | contribs)
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.

function changeCanBeKnockedOff ( command )
-- The player should enter /knock
status = canPlayerBeKnockedOffBike ( getLocalPlayer())
 if (status == true) then
  setPlayerCanBeKnockedOffBike ( getLocalPlayer(), false )
  outputChatBox ( "Now you can't be knocked off your bike." )
  else
  setPlayerCanBeKnockedOffBike ( getLocalPlayer(), 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