RU/get: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '{{RU/Server function}} __NOTOC__ This function gets a setting's value, or a group of settings' values, from the settings registry. ==Использовани…')
 
No edit summary
Line 31: Line 31:
==Смотри также==
==Смотри также==
{{RU/Settings registry functions}}
{{RU/Settings registry functions}}
[[en:get]]

Revision as of 14:32, 18 March 2010

This function gets a setting's value, or a group of settings' values, from the settings registry.

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

var get ( string settingName )

Необходимые параметры

settingName: The name of the setting you want to set. See setting names for information on settings names.

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

Returns the value of the setting if a single setting was specified and found, or a table (in associative-array form) containing:

  • the list of global setting name/value pairs if "." is passed as a setting name,
  • the list of resource settings if a resource name followed by a "." is passed,
  • the list of the script's resource settings if an empty string is passed.

It returns false if the specified setting or settings group doesn't exist, or if the settings group you are trying to retrieve doesn't have any public or protected settings.

Пример

Example returns a value from the settings registry with the name "respawnTime".

function getMySetting()
    if get ( "respawnTime" ) then
        return get ( "respawnTime" )
    end
    return false
end

Смотри также