Jass:GetStoredStringBJ
Aus Mappedia
| Funktion: GetStoredStringBJ | |
|---|---|
| Parameter: | string string gamecache |
| Rückgabewert: | string |
| Autor: | Blizzard |
| Quelle: | Blizzard.j |
| Synchron: | Unbekannt |
Code
function GetStoredStringBJ takes string key, string missionKey, gamecache cache returns string local string s //call SyncStoredString(cache, missionKey, key) set s = GetStoredString(cache, missionKey, key) if (s == null) then return "" else return s endif endfunction
Parameter
| Typ | Name | Beschreibung |
|---|---|---|
| string | key | |
| string | missionKey | |
| gamecache | cache |
