RU/setTime
Jump to navigation
Jump to search
This function sets the current GTA time to the given time.
Использование
Click to collapse [-]
Server and Clientbool setTime ( int hour, int minute )
Необходимые параметры
- hour: The hour of the new time (range 0-23).
- minute: The minute of the new time (range 0-59).
Что возвращается
Returns true if the new time was successfully set, false otherwise.
Пример
This serverside function sets the time and notifies players.
Click to collapse [-]
Serverfunction setTimeAndNotify( hour, minute ) -- set the time first setTime ( hour, minute ) -- format a notification message, adding leading zeros (e.g. 12:03 instead of 12:3) local notifyMessage = string.format("Time changed to %02d:%02d!", hour, minute) -- output the message outputChatBox ( notifyMessage ) end
Смотри также
- areTrafficLightsLocked
- getCloudsEnabled
- getGameSpeed
- getGravity
- getHeatHaze
- getJetpackMaxHeight
- getMinuteDuration
- getSkyGradient
- getTime
- getTrafficLightState
- getVehiclesLODDistance
- getWeather
- getZoneName
- isGarageOpen
- resetSkyGradient
- resetHeatHaze
- setCloudsEnabled
- setGameSpeed
- setGarageOpen
- setGravity
- setHeatHaze
- setMinuteDuration
- setSkyGradient
- setTime
- setTrafficLightState
- setTrafficLightsLocked
- setVehiclesLODDistance
- setWeather
- setWeatherBlended
- setInteriorSoundsEnabled
- getInteriorSoundsEnabled
- setRainLevel
- getRainLevel
- resetRainLevel
- setSunSize
- getSunSize
- resetSunSize
- setSunColor
- getSunColor
- resetSunColor
- setWindVelocity
- getWindVelocity
- resetWindVelocity
- setFarClipDistance
- getFarClipDistance
- resetFarClipDistance
- setFogDistance
- getFogDistance
- resetFogDistance
- removeWorldModel
- restoreWorldModel
- restoreAllWorldModels
- setOcclusionsEnabled
- getOcclusionsEnabled
- setJetpackWeaponEnabled
- getJetpackWeaponEnabled
- setAircraftMaxVelocity
- getAircraftMaxVelocity
- setMoonSize
- getMoonSize
- resetMoonSize