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.
-
HolyCow
- Voice
- Posts: 16
- Joined: Mon Jun 14, 2004 9:39 am
- Location: Norway
-
Contact:
Post
by HolyCow »
Code: Select all
bind bot - htd.net htd.net.recv
proc htd.net.recv {bot command arg} {
putserv "PRIVMSG HolyCow: test?"
}
Isn't this suppose to react if I use
.tcl putbot the_bot_running_the_tcl "htd.net something something whatever"
from a bot in the botnet?
-
DarkJFMan
- Halfop
- Posts: 85
- Joined: Mon Dec 15, 2003 3:19 pm
Post
by DarkJFMan »
I'm new at scripting, but I think you need to have
PRIVMSG #chan :test?
cuz you had chan: test? - which is wrong
where it says bot command arg, you need to have nick uhost.
What are you trying to do exactly?
-
greenbear
- Owner
- Posts: 733
- Joined: Mon Sep 24, 2001 8:00 pm
- Location: Norway
Post
by greenbear »
yea, its
putserv "PRIVMSG HolyCow :test?"
not
putserv "PRIVMSG HolyCow: test?"