Reg bot script
 

News:

29 December 2022 - PtokaX 0.5.3.0 (20th anniversary edition) released...
11 April 2017 - PtokaX 0.5.2.2 released...
8 April 2015 Anti child and anti pedo pr0n scripts are not allowed anymore on this board!
28 September 2015 - PtokaX 0.5.2.1 for Windows 10 IoT released...
3 September 2015 - PtokaX 0.5.2.1 released...
16 August 2015 - PtokaX 0.5.2.0 released...
1 August 2015 - Crowdfunding for ADC protocol support in PtokaX ended. Clearly nobody want ADC support...
30 June 2015 - PtokaX 0.5.1.0 released...
30 April 2015 Crowdfunding for ADC protocol support in PtokaX
26 April 2015 New support hub!
20 February 2015 - PtokaX 0.5.0.3 released...
13 April 2014 - PtokaX 0.5.0.2 released...
23 March 2014 - PtokaX testing version 0.5.0.1 build 454 is available.
04 March 2014 - PtokaX.org sites were temporary down because of DDOS attacks and issues with hosting service provider.

Main Menu

Reg bot script

Started by yoonohoo, 21 June, 2005, 15:11:45

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

yoonohoo

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

It might be simple for you but rocket science for me...

Dessamator

change this:
if (cmd == "!aceito") then


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


or this:
if (cmd == "!aceito") or ( cmd== "!agree")  then
Ignorance is Bliss.

yoonohoo

Thank you Dessamator

Can I use this
if (cmd == "!cmd1" or "!cmd2")  then
 in any other script to have 2 words 1 cmd?

It might be simple for you but rocket science for me...

Madman

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
We suffer in silence, we lurk in the shadows, we kill in the night
Site currently down, ETA of returning online is 2099 ;p

yoonohoo

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 option
if (cmd == "!aceito") or ( cmd== "!agree")  then
no probs so far.

Thanks

It might be simple for you but rocket science for me...

SMF spam blocked by CleanTalk