Hi!
I am running GBot 0.285 Beta 1 and want to hide the commands from main and point them to the bot instead?
Is this possible?
Thanks in advance!
Regards,
BrotherBear
If the bot is stand-alone (as your topic indicates) and is connected to the hub as a client, this is not possible because the hub will process the command before the bot does.
If the hub filters it, the bot doesn't see it. If the hub doesn't, the bot and all other connected users can see it.
Darn, that's to bad :S
Thanks for the explaining though CrazyGuy!
Regards,
BrotherBear
This is the old script i used to hide - LBOT- stand alone bot, to hide it in the matter of way as brother bear suggested,
[[
--// Hide +swenews
--// Revision 0.1 First public release
--// By Herman
botname = "-=swenews=-"
--// This function is fired when a new data arrives
function ChatArrival(curUser, sData)
s,e,cmd = string.find(sData,"%b<>%s++(%S+)")
if cmd ~= nil then
cmd = (string.sub(cmd,1,string.len(cmd)-1))
end
if (cmd == "swenews") then
SendToNick(botname, "<"..curUser.sName.."> +swenews")
return 1
end
end
]]
this was created for lbot on ptokax 3.3.0 and probably not tested on newer versions