GetFlyingCars

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 flying cars cheat code (chittychittybb in GTA III / comeflywithme in GTA:VC) has been activated for a certain player or the server.

Syntax

  1. bool GetFlyingCars( [ 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 command returns whether the flying cars cheat has been globally activated.

  1.  
  2. function onPlayerCommand( player, command, text )
  3. {
  4. if ( command == "flyingcars" ) MessagePlayer( "Flying vehicles are currently set to " + GetFlyingCars(), 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