En:LoadValue
Материал из Pocket Fallout для КПК на PDA PC PPC Mobile.
Содержание |
[править]
Syntax
LoadValue(key : String) : BasicType
[править]
Description
Load variable value from repository by key;
[править]
Parameters
- key - string. Value identifier, by which is necessary to search value in repository;
[править]
Result
The function returns a value from repository. Data type - BasicType;
[править]
Example
if (isValueExists("inventoryCreated")) then
var val=LoadValue("inventoryCreated");
if (val==1) then
return
endif
endif
[править]