LoadStringBJ

Parameters
key integer
missionKey integer
table hashtable
return type
string
Source code
function LoadStringBJ takes integer key, integer missionKey, hashtable table returns string
    local string s

    //call SyncStoredString(table, missionKey, key)
    set s = LoadStr(table, missionKey, key)
    if (s == null) then
        return ""
    else
        return s
    endif
endfunction
Source
Blizzard.j
wc3modding.com
LoadStringBJ