RU/getGameSpeed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '{{RU/Server client function}} __NOTOC__ This function gets the current game speed value. ==Syntax== <syntaxhighlight lang="lua">int getGameSpeed()</syntaxhighlight> ===Returns=== Returns a ''int''. ==Exa…')
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RU/Server client function}}
{{RU/Server client function}}
__NOTOC__
__NOTOC__
This function gets the current game speed value.
Эта функция показывает скорость игры на данный момент.


==Syntax==
==Использование==
<syntaxhighlight lang="lua">int getGameSpeed()</syntaxhighlight>
<syntaxhighlight lang="lua">int getGameSpeed()</syntaxhighlight>


===Returns===
===Что возвращается===
Returns a ''int''.
Возвращается параметр ''int'', показывающий скорость игры на данный момент.


==Example==
==Пример==
<section name="Server and Client" class="both" show="true">
<section name="Сервер и клиент" class="both" show="true">
This example adds a 'gamespeed' console command that prints the game speed to the chat box.
Данный пример добавляет команду "gamespeed", которая показывает скорость игры на данный момент.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function gamespeedvalue ( )
function gamespeedvalue ( )
Line 21: Line 21:
</section>
</section>


==See Also==
==Смотри также==
{{RU/World functions}}
{{RU/World functions}}
[[en:getGameSpeed]]

Latest revision as of 09:29, 8 March 2010

Эта функция показывает скорость игры на данный момент.

Использование

int getGameSpeed()

Что возвращается

Возвращается параметр int, показывающий скорость игры на данный момент.

Пример

Click to collapse [-]
Сервер и клиент

Данный пример добавляет команду "gamespeed", которая показывает скорость игры на данный момент.

function gamespeedvalue ( )
    local speed = getGameSpeed ( )
    outputChatbox ( "Gamespeed is currently set to " .. speed .. "." )
end
addCommandHandler ( "gamespeed", gamespeedvalue )

Смотри также