Scripting/Squirrel/Functions/GetObjectCount: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This function will return the current object count. == Syntax == <pre>GetObjectCount()</pre> == Arguments == '''N/A''' == Return value == * '''int.''' == Example == Thi...")
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 23: Line 23:
}
}
</source>
</source>
- Xmair.


=== Notes ===
=== Notes ===
Line 32: Line 30:


{{Scripting/Squirrel/Functions/Server_Settings}}
{{Scripting/Squirrel/Functions/Server_Settings}}
[[Category:Scripting/Squirrel/Functions/Server_Settings _Functions]]

Latest revision as of 19:13, 30 January 2017

This function will return the current object count.

Syntax

GetObjectCount()

Arguments

N/A

Return value

  • int.

Example

This command will return the object count.

function onPlayerCommand ( player , cmd , text )
{
if( cmd == "objects")
{
MessagePlayer("There are " + GetObjectCount() + " objects in this server!" , player );
}

Notes

Call onPlayerCommand was used in this example.

Related Functions