LoadStringBJ

Parameters
key integer
missionKey integer
table hashtable
comment
patch

1.24a

Source
Blizzard.j
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