This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
-
X
XCoder
Post
by XCoder »
Hello
I need a simple msg script that send a message on joining the quakenet.
Zb.
/msg
Q@CServe.quakenet.org AUTH <Nick> <pw>
But i m too stupid

Please help me
-
]Kami[
- Owner
- Posts: 590
- Joined: Thu Jul 24, 2003 2:59 pm
- Location: Slovenia
-
Contact:
Post
by ]Kami[ »
Try this:
Code: Select all
bind evnt - init-server my:connect
proc my:connect init-server {
putquick "PRIVMSG Q@CServe.quakenet.org :AUTH <nick> <password>"
putquick "MODE $::botnick +x"
}
Btw mode +x hide bot's real host...
-
X
XCoder
Post
by XCoder »
Okay, on load i become this message:
[21:08] -Q (
TheQBot@CServe.quakenet.org)- Unknown command. Type "/msg Q showco
mmands"
(In the Telnet terminal)
-
]Kami[
- Owner
- Posts: 590
- Joined: Thu Jul 24, 2003 2:59 pm
- Location: Slovenia
-
Contact:
Post
by ]Kami[ »
Make sure when you were setting username and pass you removed < & >...
Like this:
Code: Select all
bind evnt - init-server my:connect
proc my:connect init-server {
putquick "PRIVMSG Q@CServe.quakenet.org :AUTH bot1 54321"
putquick "MODE $::botnick +x"
}