Apparently openluup does not like forward slashes inside variables.
loader.lua complains about being unable to concat when a “/” is part of a string inside a variable. (Line 283) while loading a plugin
local source_code = table.concat (loadList, '\n') -- concatenate the code
I had to insert the value in decimal and convert to character in order to bypass the complaining…
local slash = string.char("47")
local end_request = "<" ..slash.. "IRCCCode><" ..slash.. "u:X_SendIRCC><" ..slash.. "s:Body><"..slash.. "s:Envelope>"
wondering if anyone else has experience something similar?