Squirrel/Server/Events/Misc/onConsoleInput

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
m
(Example)
 
Line 25: Line 25:
 
      
 
      
 
     return 1;
 
     return 1;
}
+
}</code>
</code>
+
  
 
=== Notes ===
 
=== Notes ===

Latest revision as of 14:18, 27 July 2012

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

This is called when text is typed to the server console.

[edit] Syntax

  1. function onConsoleInput( string cmd, string text )

[edit] Arguments

  • cmd - This is the command typed to the console
  • text - These are the additional parameters for the command

[edit] Returns

This event does not handle return values.

[edit] Example

This example changes the server's gravity setting when someone types 'setgrav 0.001' into the server console.

  1.  
  2. function onConsoleInput( cmd, text )
  3. {
  4. if ( cmd == "setgrav" ) SetGravity( text.tofloat() );
  5. return 1;
  6. }

[edit] Notes

The function SetGravity was used in this example. More info about this in the corresponding page.

[edit] Related Events

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox