Top

Comments

  (17)  RSS
Siddhant's
jakobLUVSpizza
Comments: 32
 
mIRC Snippet:  How many channels you are OP of.
Posted on Sep 4, 2008 10:53 pm
it doesnt even work....
pwnisher3
Comments: 127
 
mIRC Snippet:  Spam Blocker
Posted on Aug 17, 2008 5:20 am
it didn't work for me

criminal
Comments: 122
 
mIRC Snippet:  Bot Nick
Posted on Apr 27, 2008 1:25 pm
Quote:

u call that simple?
why not:
Code:

on *:TEXT:!nick*:*:{
if ($2 == $null) { notice $nick Please specify new nick }
else {
nick $2
}
}

I ... Totally agree ...
if ($2 == $null) { can be done like this:
if (!$2) {
I learned that from mountaindrew Tbh >.<
But with your version, Lucsatise, everyone can change the nickname..
Code:

menu * {
  Botking
  .SetKing:set %king $$?="Name:"
  .DelKing:unset %king
}
on $*:TEXT:/^[!.@]Nick/si:#: {
  if ($nick == %king) {
    if (!$2) { notice $nick Enter a new nickname! }
    else {
      nick $2
    }
  }
  else {
    notice $nick Ohai, you're not my owner! :O
  }
}
Siddhant
Comments: 6
 
mIRC Snippet:  Spam Blocker
Posted on Jan 15, 2008 10:27 am
Heh, nah. It warns/kicks/bans the nick, if half or more than half of the $1- is uppercased.
Noutrious
Comments: 355
 
mIRC Snippet:  Spam Blocker
Posted on Jan 15, 2008 8:22 am
Well, i guess this detects some kind of text lenght or something, huh? Thats not really spamming..
waiyanlay88
Comments: 2
 
mIRC Snippet:  Bot Nick
Posted on Dec 23, 2007 4:42 am
on *:TEXT:!Nick*:#:{
if ($2 == $null) { msg $nick Please specify my new nick. }
if ($2 != $null) {
set %x $nick
set %y $2
nick $2
}
}

raw 432:*:{
msg %x $2-
unset %x
unset %y
halt
}

raw 433:*:{
var %a = 1, %b = $address($me,4)
while ($nick($chan,%a)) {
if (%b == $address($chan,%a)) {
ns ghost $nick($chan,%a) <password>
.timer1 1 5 nick %y
}
else inc %a
}
if ($me != %y) {
msg %x $2-
unset %x
unset %y
}
}

raw 438:*:{
timer1 1 $9 nick %y
msg %x $2-
}

on *:NICK:{
if ($newnick == %y) && ($nick == $me) {
msg %x My nickname was changed to $+(%y,$chr(44)) successfully.
unset %x
unset %y
}
}
waiyanlay88
Comments: 2
 
mIRC Snippet:  Bot Nick
Posted on Dec 23, 2007 4:41 am
on *:TEXT:!Nick*:#:{
if ($2 == $null) { msg $nick Please specify my new nick. }
if ($2 != $null) {
set %x $nick
set %y $2
nick $2
}
}

raw 432:*:{
msg %x $2-
unset %x
unset %y
halt
}

raw 433:*:{
var %a = 1, %b = $address($me,4)
while ($nick($chan,%a)) {
if (%b == $address($chan,%a)) {
ns ghost $nick($chan,%a) <password>
.timer1 1 5 nick %y
}
else inc %a
}
if ($me != %y) {
msg %x $2-
unset %x
unset %y
}
}

raw 438:*:{
timer1 1 $9 nick %y
msg %x $2-
}

on *:NICK:{
if ($newnick == %y) && ($nick == $me) {
msg %x My nickname was changed to $+(%y,$chr(44)) successfully.
unset %x
unset %y
}
}
Maath
Comments: 5
 
mIRC Snippet:  NickServ Seen Script
Posted on Dec 20, 2007 4:54 am
The script is good, i didn't see any bugs 5/10
LucSatise
Comments: 122
 
mIRC Snippet:  Bot Nick
Posted on Dec 19, 2007 4:36 pm
u call that simple?
why not:
Code:

on *:TEXT:!nick*:*:{
  if ($2 == $null) { notice $nick Please specify new nick }
  else {
    nick $2
  }
}
Siddhant
Comments: 6
 
mIRC Snippet:  Status Thanker v1.0
Posted on Dec 17, 2007 10:21 am
Hmm, then change "if ($me == $2)" to "if ($me isin $2-)".
AoRaToS
Comments: 2
 
mIRC Snippet:  Status Thanker v1.0
Posted on Dec 16, 2007 4:20 pm
Nice code but I don't think it'll work if...

* nick sets mode: +qqqao nick1 nick2 nick3 nick4 nick5

and the person whho uses this isn't the first nick, right?
Siddhant
Comments: 6
 
mIRC Snippet:  NickServ Seen Script
Posted on Dec 12, 2007 11:13 am
Lol. >.>
F*U*R*B*Y*
Comments: 587
 
mIRC Snippet:  NickServ Seen Script
Posted on Dec 12, 2007 11:08 am
-NickServ- The information for Example is private

^_^
Siddhant
Comments: 6
 
mIRC Snippet:  NickServ Seen Script
Posted on Dec 12, 2007 11:03 am
Comments please. :D
lover1010
Comments: 1
 
Profile:  Siddhant
Posted on Nov 25, 2007 8:04 pm
wats up
mountaindew
Comments: 1,645
 
mIRC Snippet:  Quote Script v1.0
Posted on Nov 24, 2007 9:08 am
Code:

" $+ $1- $+ "
" $+ $read(Quotes.txt,$1) $+ "

u can just do
Code:

$qt($1-)
$qt($read(Quotes.txt,$1))
kerstt
Comments: 64
 
mIRC Snippet:  Win/Lose Statistics
Posted on Aug 27, 2007 4:02 am
instead of using ctrl+k in front of echo you can use echo N -a TEXT
Bottom