Перейти к содержанию

GetTime

Материал из RAGE MP Wiki Archive
Версия от 20:55, 27 ноября 2019; imported>Avoid
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Gets the current time in the world.


TimeSpan NAPI.World.GetTime();

Example

<syntaxhighlight lang="csharp"> [Command("gettime")] public void GetTimeCommand(Client sender) {

   sender.sendChatMessage("Time: " + NAPI.World.GetTime().ToString());

}

</syntaxhighlight>