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.

Search found 5 matches

by Spartacus
Sun Jan 21, 2007 9:10 am
Forum: Scripting Help
Topic: Bot not chatting
Replies: 5
Views: 3594

Sorry problem solved :P
The channel mode was +m
So when the bot wasn't an op, he couldn't talk :P
by Spartacus
Sun Jan 21, 2007 3:45 am
Forum: Scripting Help
Topic: Bot not chatting
Replies: 5
Views: 3594

Code: Select all

	putserv "PRIVMSG $handle :just a test"
	puthelp "PRIVMSG $handle :just a test"
These two do work, I get a private message
by Spartacus
Sat Jan 20, 2007 8:23 am
Forum: Scripting Help
Topic: A bind that gets triggered by any word possible?
Replies: 2
Views: 2386

Code: Select all

bind pubm - * pubm:yourproc
something like that?
by Spartacus
Sat Jan 20, 2007 8:21 am
Forum: Scripting Help
Topic: Bot not chatting
Replies: 5
Views: 3594

Thanks :)
This is inside my proc:

Code: Select all

	putlog "test1"
	putserv "PRIVMSG #channel :just a test"
	puthelp "PRIVMSG #channel :just a test"
	putlog "test2"
It shows test1 and test2 in the log, but it doesn't say anything in the channel #channel.. what could be wrong?
by Spartacus
Fri Jan 19, 2007 12:02 pm
Forum: Scripting Help
Topic: Bot not chatting
Replies: 5
Views: 3594

Bot not chatting

Hello, I have this script: bind dcc - sayit dcc:sayit proc dcc:sayit {handle, idx, handler} { putserv "PRIVMSG #channel :$handler" putmsg #channel "$handler" } #channel is the channel, it's not the real channel, this is just an example When I say .sayit test, both putserv and put...