PtokaX forum

Archive => Archived 5.0 boards => Help with scripts => Topic started by: yoonohoo on 21 June, 2005, 15:11:45

Title: Reg bot script
Post by: yoonohoo on 21 June, 2005, 15:11:45
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
Title:
Post by: Dessamator on 21 June, 2005, 15:26:07
change this:
if (cmd == "!aceito") then

to this :
if (cmd == "!aceito" or "!agree")  then

or this:
if (cmd == "!aceito") or ( cmd== "!agree")  then
Title:
Post by: yoonohoo on 21 June, 2005, 15:37:56
Thank you Dessamator

Can I use this
if (cmd == "!cmd1" or "!cmd2")  then  in any other script to have 2 words 1 cmd?
Title:
Post by: Madman on 21 June, 2005, 16:53:57
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
Title:
Post by: yoonohoo on 21 June, 2005, 23:36:41
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