ToggleControl: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
Enables or disables the use of a gta control for a specified player.
Enables or disables the use of a GTA control for a specified player.


==Syntax==  
==Syntax==  
Line 11: Line 11:


==Example==   
==Example==   
This function will disable the use of the vehicle secondary-fire key for anyone in a hydra, consequently removing the ability to fire rockets.
This function will disable the use of the vehicle secondary-fire key for anyone in a Hydra, consequently removing the ability to fire rockets.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" )
addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" )

Revision as of 20:50, 6 July 2006

Enables or disables the use of a GTA control for a specified player.

Syntax

bool toggleControl ( player thePlayer, string control, bool enabled ) 

Required Arguments

  • thePlayer: The player you wish to toggle the control ability of.
  • control: The control that you want to toggle the ability of.
  • enable: A boolean value representing whether or not the key will be usable or not.

Example

This function will disable the use of the vehicle secondary-fire key for anyone in a Hydra, consequently removing the ability to fire rockets.

addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" )
function onPlayerEnterVehicle ( theVehicle, seat, jacked )
  if ( getVehicleID ( theVehicle ) == 520 ) then -- if they entered a hydra
    toggleControl ( source, "vehicle_secondary_fire", false ) -- disable their fire key
  else -- if they entered another vehicle
    toggleControl ( source, "vehicle_secondary_fire", true ) -- enable their fire key
  end
end

See Also