GetHandlingCheat

From Liberty Unleashed Wiki
Revision as of 19:58, 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 returns whether the improved handling cheat code (cornerslikemad in GTA III / gripiseverything in GTA:VC) has been activated for a certain player or the server. This function returns a simple true/false value.

Syntax

  1. bool GetHandlingCheat( [ Player plr ] )

Arguments

  • plr - With this optional argument you can check the cheat status for an individual player. Without it the function will return the global server status

Example

This example will return whether the handling cheat has been activated globally when someone types '/handling'.

  1.  
  2. function onPlayerCommand( player, command, text )
  3. {
  4. if ( command == "handling" ) MessagePlayer( "Perfect Handling is currently set to " + GetHandlingCheat(), player );
  5. return 1;
  6. }
  7.  

Notes

The function MessagePlayer and event onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox