GetStoredStringBJ

Parameters
key string
missionKey string
cache gamecache
comment
patch

1.07

Source
Blizzard.j (suggest an edit or discuss on Github)
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