Squirrel/Server/Functions/Objects/GetObjectCount

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
 
Line 1: Line 1:
__NOTOC__
+
{{Squirrel/Title|GetObjectCount}}
 
This function returns the number of objects on the server.
 
This function returns the number of objects on the server.
  

Latest revision as of 10:51, 11 October 2010

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

This function returns the number of objects on the server.

[edit] Syntax

  1. int GetObjectCount()

[edit] Arguments

  • none

[edit] Example

  1.  
  2. function onPlayerCommand( player, cmd, text )
  3. {
  4. if ( cmd == "objcount" )
  5. {
  6. local objcount = GetObjectCount( );
  7.  
  8. if ( objcount > 0 ) MessagePlayer( "There are currently: " + objcount + " objects!", player );
  9. else MessagePlayer( "There are no objects", player );
  10. }
  11. }
  12.  

This command will give the player information on the amount of objects there are in the server.

[edit] Notes

The call onPlayerCommand 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