CloseGarage

From Liberty Unleashed Wiki
Revision as of 23:46, 19 October 2010 by Force (Talk | contribs)

Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function closes the given garage door. List of garage IDs can be found from here.

Syntax

  1. bool CloseGarage( int garage )

Arguments

  • garage - This is the ID of the garage you want to close. List of garage IDs can be found from here

Example

This will close the Portland hideout garage when the player types /closesesame

  1.  
  2. function onPlayerCommand( pPlayer, szCommand, szText )
  3. {
  4. if ( szCommand == "closesesame" )
  5. {
  6. CloseGarage( PORTLAND_HIDEOUT_GARAGE );
  7. }
  8. return 1;
  9. }
  10.  

Notes

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

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox