GetStoredStringBJ

Parameters
key string
missionKey string
cache gamecache
return type
string
Source 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
Source
Blizzard.j
wc3modding.com
GetStoredStringBJ