Squirrel/Client/Functions/Messages/ConsoleMessage

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Related Functions)
 
Line 1: Line 1:
 
{{Squirrel/Title|ConsoleMessage}}
 
{{Squirrel/Title|ConsoleMessage}}
This function sends a console message to the player running the client script only.
+
This function sends a message to the client's console.
  
 
== Syntax ==
 
== Syntax ==

Latest revision as of 03:55, 11 August 2016

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

This function sends a message to the client's console.

[edit] Syntax

  1. ConsoleMessage( string text )

[edit] Arguments

  • text - This is the message to send to the player

[edit] Example

This will send messages saying 'Testing... when a client script is loaded.

  1.  
  2.  
  3. function onScriptLoad( )
  4. {
  5. ConsoleMessage( "Testing..." );
  6. return 1;
  7. }
  8.  

[edit] Notes

The call onScriptLoad was used in in this example. More info about this in the corresponding page.

[edit] Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox