Link
I need to know how to use it, I haven't tested it out yet, cause I can't follow the coding (so complex lol). Running it through my Scite some errors poped up, and I put in as best a fix I could find, but I'm not sure if I broke the script or not. Does anyone remember this content browser or how it is worked? If I could get it working I can do great things with it lol.
(Example) One of the errors I found and tried as best I could for a fix:
--From The Module: LibraryCBOutboundRequestRelay
Original:
CODE
list parseStringKeepNulls(string src)
{
// The seperator should be the first SEPERATOR_LEN
// characters in the string.
return llParseStringKeepNulls(llDeleteSubString(src, 0, SEPERATOR_LEN - 1), [[[llGetSubString|llGetSubString]](src, 0, SEPERATOR_LEN - 1)], []);
}
( I couldn't even begin to follow what the creator was thinking here
)My Fix:
CODE
list parseStringKeepNulls(string src)
{
// The seperator should be the first SEPERATOR_LEN
// characters in the string.
return llParseStringKeepNulls(llDeleteSubString(src, 0, SEPERATOR_LEN - 1), [llGetSubString(src, 0, SEPERATOR_LEN - 1)], []);
}
Any help at all would be very much appreciated
