Scripting/Squirrel/Functions/GetMaxPlayers: 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
No edit summary
Line 15: Line 15:
== Example ==
== Example ==


<code>
<source language="squirrel">
function onPlayerCommand( plr, cmd, text )
function onPlayerCommand( plr, cmd, text )
{
{
Line 25: Line 25:
     return 1;
     return 1;
}
}
</code>
</source>


=== Notes ===
=== Notes ===

Revision as of 14:35, 3 February 2014

This function will get max players limit.

Syntax

GetMaxPlayers()

Arguments

N/A

Return value

  • Fuck off

Example

function onPlayerCommand( plr, cmd, text )
{
     if ( cmd == "date" )
     {
          ClientMessage( "The time is now: " + GetFullTime(), plr, 135, 210, 40 );
     }
     
     return 1;
}

Notes

Related Functions