Squirrel/Server/Functions/Game/GetHour

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
m (Updated with the latest functions)
m
Line 30: Line 30:
 
== Related Functions ==
 
== Related Functions ==
  
{{Squirrel/Functions/Game}}
+
{{Squirrel/Server/Functions/Game}}

Revision as of 23:25, 26 November 2009

Returns the current hour in the server.

Syntax

  1. int GetHour()

Arguments

  • None

Example

This command will tell player the current time in the server when they type '/time'.

  1.  
  2. function onPlayerCommand( plr, cmd, text )
  3. {
  4. if ( cmd == "time" )
  5. {
  6. MessagePlayer( "Server time is: " + GetHour() + ":" + GetMinute(), plr );
  7. }
  8. }
  9.  

Notes

The functions MessagePlayer, GetMinute and call onPlayerCommand were used in in this example. More info about them in corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox