Top

Commands For Bot


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

Introduction

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

Grab the Code

#######################
# Simple Bot Commands #
# By PremierUekk     #
#######################
 
On 100:TEXT:*:#: {
  if ($1 == .op) { /mode # +o $nick }
  if ($1 == .deop) { /mode # -o $nick }
  if ($1 == .voice) { /mode # +v $nick }
  if ($1 == .devoice) { /mode # -v $nick }
  if ($1 == .kick) { /kick # $2- }
  if ($1 == .ban) { mode $chan +b $address($2,2) }
  if ($1 == .say) { /msg # $2- }
  if ($1 == .adduser) { /auser $2 $3 | /msg $chan I Added $3 With Xs $2 }
  if ($1 == .topic) { /topic # $2- | .timer 1 2 /msg $chan Topic Changed To :( $2- ): }
}
menu NickList {
  Adduser Xs 100-=-:/guser 100 $$1
}
Private message->
 
On 100:TEXT:*:?: {
  if ($1 == .mode) { /mode $2- }
}
 
 

Comments

  (8)  RSS
vaseline28
Comments: 162
 
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: 167
 
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,454
 
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,826
 
mIRC Snippet:  Commands For Bot
Posted on Jun 23, 2008 7:25 pm
Code:

On Private message ####

What's this for?
Bullet_Dodger
Comments: 310
 
mIRC Snippet:  Commands For Bot
Posted on Oct 26, 2008 7:07 am
Quote:
#######################
# Simple Bot Commands #
# By PremierUekk #
#######################


should be
Quote:

;######################
; Simple Bot Commands #
; By PremierUekk #
;######################



Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom