Top

Fun temp ban script

+ 0 likes
Please Register to submit score.
Average Score  5.0
Scores Submitted  1
Date Added  Dec 17, 2006
Last Updated  Dec 18, 2006
Tags  ban  fun  temp  temporary  volcano 

Introduction

Ok, you paste it in remotes. You must be Op or Halfop in a channel for other Ops or Halfops to use it.
Command is: !volcano (nick) (minutes) (reason)
When they are unbanned it will notice them if they are still online.
It also gives protection to Ops and Halfops.

Grab the Code

Comments

  (6)  RSS
Noutrious
Comments: 343
 
mIRC Snippet:  Fun temp ban script
Posted on Dec 17, 2006 8:17 am
Its nice, i like it.
Krobeluskill
Comments: 26
 
mIRC Snippet:  Fun temp ban script
Posted on Dec 17, 2006 8:35 am
Thanks, this one and the whois lookup have got to be some of the best scripts i\'ve made.
Lindrian
Comments: 728
 
mIRC Snippet:  Fun temp ban script
Posted on Dec 17, 2006 11:18 am
haha, funny ^.-
no_body21
Comments: 76
 
mIRC Snippet:  Fun temp ban script
Posted on Dec 17, 2006 11:54 am
on *:TEXT:!Volcano*:#: {
if ($nick isop $chan) || ($nick ishop $chan) {
if (!$nick($chan,$2)) {
.notice $nick $2 isn\'t on $chan
}
elseif ($3 !isnum) {
.notice $nick The time for the ban is invalid, it must be a number.
}
elseif (!$4) {
.notice $nick Please put a reason.
}
elseif ($nick($chan,$2,oh)) {
notice $nick I will not use this command on Ops and Halfops
}
elseif $(nick($chan,$nick,oh)) {
inc %kcount
ban $+(-,ku,$calc($3 * 60)) $chan $2 3 4 $2 is thrown inside a volcano! BURN IN HELL - 5Noobs burnt:4 ( $+ %kcount $+ )
.notice $2 You have been banned from $chan for $3 minutes Reason: $4- - $3
}
}
on *:unban:#:{
if $bnick { .notice $bnick You have been unbanned from $chan }
}
}

-----
has a missing bracket
}
}
on *:unban:#:{
if $bnick { .notice $bnick You have been unbanned from $chan }
}
}
Krobeluskill
Comments: 26
 
mIRC Snippet:  Fun temp ban script
Posted on Dec 17, 2006 1:33 pm
I see no difference between my version and your version of the unban part.
Marshtomp
Comments: 39
 
mIRC Snippet:  Fun temp ban script
Posted on Dec 18, 2006 10:41 am
elseif $(nick($chan,$nick,oh)) { <-- ($nick($chan,$nick,oh)) ?
has a missing bracket
}
}
on *:unban:#:{
if $bnick { .notice $bnick You have been unbanned from $chan }
}
} <-- it needs to be:
on *:UNBAN:#:(notice space here, better for the mirc. ;)) {
if ($bnick) { .notice $bnick You have been unbanned from $chan }
}
Also, I don\'t see why it would work at all, missing brackets...
Where does $bnick come from? i don\'t see an alias with return.....

Please Register or Login to start posting comments.
Bottom