Top

Comments

  (7)  RSS
Soresser's
napa182
Comments: 742
 
mIRC Snippet:  30 min ban
Posted on Mar 26, 2008 12:43 pm
um i dont know why you have it unsetting a var that it never set's .

and these 2 lines
Code:
kick # $2 Banned for 30 Minutes. | ban -u1800 # $address($2,1)

you can do this instead
Code:
ban -ku1800 # $2 1 Banned for 30 Minutes.

and you are also missing a ending bracket...

@criminal why tell them they are unbaned for. when it says they are banned for 30 Minutes in the kick message.
Gummo
Comments: 100
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Mar 26, 2008 9:27 am
criminal: $nick can never equal $me on text..
criminal
Comments: 126
 
mIRC Snippet:  30 min ban
Posted on Mar 26, 2008 7:32 am
Ban? this is kickban :P
Maybe add a timer that will notice or msg the bannick when he's unbanned.
Timer 1 1800 notice $2 You have been unbanned from $chan ( 30M ban )
criminal
Comments: 126
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Mar 26, 2008 7:23 am
Quote:

Anyone in a channel you are in could cause you to identify. I have a similar script but I have both commands in the on connect part.

Code:

on $*:TEXT:/^[.!@]id(entify)/si:#: {
if ($nick != $me) { halt }
else { ns identfiy <Password> }
}

I also have both commands on connect.
Callison1
Comments: 130
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Aug 6, 2007 3:47 am
Anyone in a channel you are in could cause you to identify. I have a similar script but I have both commands in the on connect part.
xredxthornsx
Comments: 14
 
mIRC Snippet:  Auto Identify on Connect or command
Posted on Aug 5, 2007 11:45 pm
the on connect script is a good concept but it can be acheived by setting up a perform in the mIRC options (connect//options//click perform) and the on text script is good i use it with my bot

KEEP UP THE SCRIPTING ^^ have a nice day
GAWD
Comments: 1
 
mIRC Snippet:  on join say channels
Posted on Aug 3, 2007 7:48 pm
i've got that too :D

on *:JOIN:#chanhere: { whois $nick }
raw 319:*: { msg #chanhere 13,1 $2 8,1 is on 7,1 $3- }
Bottom