Top

Commands For Bot


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  3.0
Scores Submitted  2
Date Added  Jun 20, 2008
Last Updated  Jun 25, 2008
Tags  bot  commands  for 
  Bookmark and Share

Introduction

.mode Ex: /msg Botnick .mode #channelname -o NickToDeop

Grab the Code

Comments

  (7)  RSS
vaseline28
Comments: 134
 
mIRC Snippet:  Commands For Bot
Posted on Jun 20, 2008 10:55 am
So let me get this straight...
A user with level 100 or higher types in .op and gets opped, but if they have a level of 100 then they are above an op. Why does it need doing then?
Jamiie
Comments: 123
 
mIRC Snippet:  Commands For Bot
Posted on Jun 20, 2008 1:04 pm
Code:

On 100:TEXT:*:?: {
  if ($1 == .mode) { /mode $2- }
}

I don\'t see the point of this except for usermodes for the bot?. Get rid of all the /\'s. Makes the script look messy.

Code:

  if ($1 == .ban) { /ban # $2- }

needs to be
Code:

  if ($1 == .ban) { mode $chan +b $address($2,2) }
Premier*uekk
Comments: 5
 
mIRC Snippet:  Commands For Bot
Posted on Jun 20, 2008 2:11 pm
Oh Thanks :) hehe I will Fix them all :P
NindoLover
Comments: 6
 
mIRC Snippet:  Commands For Bot
Posted on Jun 20, 2008 2:20 pm
Whats the point to

Code:
.timer 1 2 /msg $chan Topic Changed To :( $2- ):


Cause in Lucid and them it already says

Quote:
Topic changed to BLah blah blah by BLah
it just makes the bot do more then what it needs to do. [/Quote]
Premier*uekk
Comments: 5
 
mIRC Snippet:  Commands For Bot
Posted on Jun 21, 2008 5:03 am
.timer 1 2 /msg $chan Topic Changed To :( $2- ):
}
Just To Make it more hekk hux ;)
napa182
Comments: 1,007
 
mIRC Snippet:  Commands For Bot
Posted on Jun 21, 2008 10:54 pm
Jamiie said:
Quote:
Code:
if ($1 == .ban) { /ban # $2- }

needs to be
Code:
if ($1 == .ban) { mode $chan +b $address($2,2) }


if you are going to ban someone why not kick them as well by useing
Code:
if ($1 == .ban) { ban -k # $2 2 Banned From Room }




mountaindew
Comments: 1,550
 
mIRC Snippet:  Commands For Bot
Posted on Jun 23, 2008 7:25 pm
Code:

On Private message ####

What\'s this for?

Please Register or Login to start posting comments.
Bottom