Top

Bot talker


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  4.7
Scores Submitted  3
Date Added  Feb 01, 2007
Last Updated  Feb 16, 2007
Tags  act  bot  say  talk  talker 
  Bookmark and Share

Introduction

Very simple, just add this to your bots remotes and private message him with !Act <Channel> <Message> or !Say <Channel> <Message>.

Grab the Code

Comments

  (6)  RSS
jPh
Comments: 1
 
mIRC Snippet:  Bot talker
Posted on Feb 15, 2007 11:45 am
on *:TEXT:!setchan *:?: {
if ($nick ison $2) && ($nick isop $2) {
if (!$2) { .msg $nick Proper format is !setchan #Channel }
else {
.set %channeltopost $2
.msg $nick Channel set to %channeltopost
}
}
else { .msg $nick You are not an OP on $2 }
}
on *:TEXT:!say *:?: {
if (!$2) { .msg $nick Proper format is !say <message> }
elseif ($nick isop %channeltopost) {
var %post = $2-
.msg %channeltopost %post
}
else { .msg $nick You are not an OP on %channeltopost }
}
on *:TEXT:!act *:?: {
if (!$2) { .msg $nick Proper format is !act <message> }
elseif ($nick isop %channeltopost) {
var %describe = $2-
.describe %channeltopost %describe
}
else { .msg $nick You are not an OP on %channeltopost }
}
BackoffJackson
Comments: 56
 
mIRC Snippet:  Bot talker
Posted on Feb 16, 2007 3:28 am
Meh, that was a bit of overkill, but thanks!
peterpowell
Comments: 48
 
mIRC Snippet:  Bot talker
Posted on Apr 6, 2007 8:02 am
couldnt this be used to put !say nickserv drop

try making it check to see if $2 starts with #

-pp
Dizzlenub
Comments: 51
 
mIRC Snippet:  Bot talker
Posted on Jul 12, 2007 6:35 am
Uhhh, what's the point in this? Why don't you just switch windows to the mIRC bot and talk there?
Callison1
Comments: 130
 
mIRC Snippet:  Bot talker
Posted on Jul 22, 2007 2:54 pm
Dizzlenub, only the bot's owner can do that, that script allows other people to talk via the bot.
JOBNED1
Comments: 10
 
mIRC Snippet:  Bot talker
Posted on Feb 16, 2008 12:26 pm
The point is like with me if I'm on a different computer or a different place and leave my bot up all the time I can talk threw it even though I'm not at that computer. Does that help?

Please Register or Login to start posting comments.
Bottom