Is it possible to add an extra cmd to this script?
As it is users to reg must type !aceito.
But I want to add !agree also. So users typing !aceito or !agree will be registered.
Thanks
--Requested by Cp6uja
--Made by nErBoS
--Converted to Lua 5 by jiten
sBot = frmHub:GetHubBotName()
function Main()
frmHub:RegBot(sBot)
end
function ChatArrival(user, data)
data = string.sub(data,1,string.len(data)-1)
s,e,cmd = string.find(data, "%b<>%s+(%S+)")
if (cmd == "!aceito") then
local s,e,pass = string.find(data, "%b<>%s+%S+%s+(%S+)")
if (pass == nil) then
user:SendPM(sBot, "Syntax Error, !aceito yourpassword, you must choose a password.")
else
AddRegUser(user.sName, pass, 3)
SendToOps(sBot, " A new user with the name "..user.sName.." has been registered in this hub!")
user:SendPM(sBot, "You have been successufly registered with the password: "..pass.. ". Please reconnect and type in your password.")
end
return 1
end
end
ToArrival = ChatArrival
change this:
if (cmd == "!aceito") then
to this :
if (cmd == "!aceito" or "!agree") then
or this:
if (cmd == "!aceito") or ( cmd== "!agree") then
Thank you Dessamator
Can I use this
if (cmd == "!cmd1" or "!cmd2") then
in any other script to have 2 words 1 cmd?
QuoteOriginally posted by yoonohoo
Thank you Dessamator
Can I use this
if (cmd == "!cmd1" or "!cmd2") then
in any other script to have 2 words 1 cmd?
Yes
If I use this if (cmd == "!aceito" or "!agree") then
and try to use Guarding cmd (ie hubstats) get pm message from reg bot...Weird Syntax Error, !aceito yourpassword, you must choose a password.
Tried several cmd (riteclick) all the same.
Changed to other optionif (cmd == "!aceito") or ( cmd== "!agree") then
no probs so far.
Thanks