ToggleAllControls: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 10: Line 10:


==Example==   
==Example==   
This function will disable the use of all controls for 5seconds, for a freeze function.
This function will disable the use of all controls for a freeze function, which will be used everytime someone enters a vehicle.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function freezeThisDude ( player, time )
function freezeThisDude ( player, time )
   toggleAllControls ( player, false )
   toggleAllControls ( player, false ) -- disable this players controls
   setTimer ( "toggleAllControls", time, 1, player, true )
   setTimer ( "toggleAllControls", time, 1, player, true ) -- enable this players controls after the specified time
end
 
addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" )
function onPlayerEnterVehicle ( vehicle, seat, jacked )
  freezeThisDude ( source, 5000 ) -- 'freeze' him for 5000ms/5secs
end
end
</syntaxhighlight>
</syntaxhighlight>

Revision as of 20:01, 6 July 2006

Enables or disables the use of a all gta controls for a specified player.

Syntax

bool toggleAllControls ( player thePlayer, bool enabled ) 

Required Arguments

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

Example

This function will disable the use of all controls for a freeze function, which will be used everytime someone enters a vehicle.

function freezeThisDude ( player, time )
  toggleAllControls ( player, false ) -- disable this players controls
  setTimer ( "toggleAllControls", time, 1, player, true ) -- enable this players controls after the specified time
end

addEventHandler ( "onPlayerEnterVehicle", root, "onPlayerEnterVehicle" )
function onPlayerEnterVehicle ( vehicle, seat, jacked )
  freezeThisDude ( source, 5000 ) -- 'freeze' him for 5000ms/5secs
end

See Also