Squirrel/Server/Functions/Game/OpenGarage

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with '{{Squirrel/Title|OpenGarage}} This function opens the given garage door. List of garage IDs can be found from here. == Syntax == <code>boo…')
 
 
Line 12: Line 12:
 
== Example ==
 
== Example ==
  
{{Squirrel/NeedsExample}}
+
This will open the Portland hideout garage when the player types /opensesame
Explanation for the example
+
  
 
<code lang="squirrel">
 
<code lang="squirrel">
-- todo
+
function onPlayerCommand( pPlayer, szCommand, szText )
 +
{
 +
if ( szCommand == "opensesame" )
 +
{
 +
OpenGarage( PORTLAND_HIDEOUT_GARAGE );
 +
}
 +
 +
return 1;
 +
}
 
</code>
 
</code>
  
 
=== Notes ===
 
=== Notes ===
  
-- List of used functions and other notes here.
+
The event [[Squirrel/Server/Events/Player/onPlayerCommand|onPlayerCommand]] was used in this example. More info about this in the corresponding page.
  
 
== Related Functions ==
 
== Related Functions ==
  
 
{{Squirrel/Server/Functions/Game}}
 
{{Squirrel/Server/Functions/Game}}

Latest revision as of 23:44, 19 October 2010

Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

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

[edit] Syntax

  1. bool OpenGarage( int garage )

[edit] Arguments

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

[edit] Example

This will open the Portland hideout garage when the player types /opensesame

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

[edit] Notes

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

[edit] Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox