1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 16:06:41 +00:00

Added COMMANDS command sent to servers

This commit is contained in:
Dionysus 2023-06-22 00:21:08 -04:00
parent 2c12edc494
commit 8abaa042b3
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -203,7 +203,7 @@ class probe:
async def loop_initial(self): async def loop_initial(self):
try: try:
await asyncio.sleep(throttle.delay) await asyncio.sleep(throttle.delay)
cmds = ['ADMIN', 'CAP LS', 'HELP', 'INFO', 'IRCOPS', 'LINKS', 'MAP', 'MODULES -all', 'SERVLIST', 'STATS p', 'VERSION'] cmds = ['ADMIN', 'CAP LS', 'COMMANDS', 'HELP', 'INFO', 'IRCOPS', 'LINKS', 'MAP', 'MODULES -all', 'SERVLIST', 'STATS p', 'VERSION']
random.shuffle(cmds) random.shuffle(cmds)
cmds += ['PRIVMSG NickServ :REGISTER {0} {1}'.format(self.login['pass'], self.login['mail']), 'PRIVMSG ChanServ :LIST *', 'PRIVMSG NickServ :LIST *', 'LIST'] cmds += ['PRIVMSG NickServ :REGISTER {0} {1}'.format(self.login['pass'], self.login['mail']), 'PRIVMSG ChanServ :LIST *', 'PRIVMSG NickServ :LIST *', 'LIST']
for command in cmds: for command in cmds: