Hi!
Have a request.
We're using an external bot that needs commands to be sent in MC.
But now it's not possible (what I can see) to use same prefix as the hub, but if we do the hub will respond with "Unknown command: XYZ"
My request is: For unknown commands just send it to main (so the external bot can see and act on it)
have tried this by changing line 1838 to: tSend:ChatToAll(line, sid) in Hub-funcs.lua and it do the trick...
(in the last Else statement in the - ["HubCommand"] = function(self, sid, line, tosid) - function)
Maybe a good solution is to add "pass-through" commands in a table instead of as my test above thats sends all unknown commands to make it possible just for some commands to go through and show "Unknown command: ..." for the others.
// Mike