SetHandlingCheat

From Liberty Unleashed Wiki
Revision as of 18:48, 24 September 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function enables or disables the improved handling cheat code (cornerslikemad in GTA III / gripiseverything in GTA:VC) for an individual player or the server globally.

Syntax

  1. bool SetHandlingCheat( bool enabled )
  1. bool SetHandlingCheat( Player plr, bool enabled )

Arguments

  • enabled - A boolean to either enable (true) or disable (false) this cheat code
  • plr - The player to enable/disable this cheat code for. Without this argument the function will change the global status

Example

This example enables the handling cheat globally if someone types '/handlinghax'.

  1.  
  2. function onPlayerCommand( player, command, text )
  3. {
  4. if ( command == "handlinghax" ) SetHandlingCheat( true );
  5. return 1;
  6. }
  7.  

Notes

The event onPlayerCommand was used in in this example. More info about it in the corresponding page.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox