Scripting/Squirrel/Functions/SetHour

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

This function will set the game hour.

Syntax

SetHour( hour )

Arguments

  • int hour - The hour of the game (from 00 to 23)

Example

else if ( cmd == "sethour" )
{
if ( !text ) MessagePlayer( "Use /sethour <Hour>.", player );
else if ( !IsNum( text ) ) MessagePlayer( "Game hour must be an integer.", player );
else {
SetHour(text.tointeger())
MessagePlayer( "Game hour has been changed." , player );
}
}

Notes

Related Functions