Recent Posts

Pages: 1 ... 8 9 [10]
91
mIRC Code Snippets / Re: Quote System (DropLogs)
« Last post by Jane on February 23, 2011, 09:59:18 am »
Thanks, Have fun. ^^
92
Off topic / Re: Count to 5000
« Last post by Glow on February 23, 2011, 06:36:28 am »
39^^
Just 4961 left to touch the 5000!!
93
Off topic / Re: Say something about the user above you.
« Last post by morbid on February 23, 2011, 06:23:29 am »
the person above me should be scared
94
mIRC Scripting help / RSS Feed
« Last post by CJ101 on February 23, 2011, 02:59:38 am »
Is it possible to have a bot say something if it found a RSS feed has updated? I need a bot for irc that does this for my website.

:D
95
Off topic / Re: Say something about the user above you.
« Last post by CJ101 on February 23, 2011, 02:54:35 am »
the person above me has a scary signature
96
Off topic / Re: Say something about the user above you.
« Last post by morbid on February 22, 2011, 08:14:10 pm »
Person above me used a "above me" line I've already used x.x
97
mIRC Code Snippets / Re: Quote System (DropLogs)
« Last post by morbid on February 22, 2011, 08:11:05 pm »
Tested, Works great.
Only thing I think Quote System's should go into bots.
98
mIRC Code Snippets / Quote System (DropLogs)
« Last post by Jane on February 22, 2011, 06:24:12 pm »
!droplogs [add <item> | del <item> | clear]

!droplogs alone will display your drop logs

Made as a request from a friend, enjoy

**NOTE** This script is remote, not a personal command. (For Bots)


Code: [Select]
on $*:TEXT:/^[!@.](droplogs)/:#: {
  var %pre $iif($left($1,1) == @, msg $chan, notice $nick)
  if ($2 == add && $3 != $null) {
    writeini droplogs.ini $nick $replace($3-,$chr(32),_) $calc($readini(droplogs.ini,$nick,$replace($3-,$chr(32),_)) + 1)
    %pre [Drop Logs]: $3- added to your drop logs. You now have $readini(droplogs.ini,$nick,$replace($3-,$chr(32),_)) $3- $+ .
    halt
  }
  if ($2 == del && $ini(droplogs.ini,$nick,$replace($3-,$chr(32),_))) {
    remini droplogs.ini $nick $replace($3-,$chr(32),_)
    %pre [Drop Logs]: $3- removed from your drop logs.
    halt
  }
  if ($2 == clear && $ini(droplogs.ini,$nick)) {
    remini droplogs.ini $nick
    %pre [Drop Logs]: Your drop logs have been cleared.
    halt
  }
  if (!$ini(droplogs.ini,$nick)) { %pre [Drop Logs]: You don't have any logs. Try using !droplogs [add <item> $chr(124) del <item> $chr(124) clear] | halt }
  else {
    var %looptot $ini(droplogs.ini,$nick,0)
    var %looptemp 1
    var %string
    while (%looptemp <= %looptot) {
      %string = $addtok(%string,$replace($ini(droplogs.ini,$nick,%looptemp),_,$chr(32)) $+ ( $+ $readini(droplogs.ini,$nick,$ini(droplogs.ini,$nick,%looptemp)) $+ ) $chr(124),32)
      inc %looptemp 1
    }
    %pre [Drop Logs]: $remove(%string,$right(%string,2))
  }
}
99
Off topic / Re: Count to 5000
« Last post by Jane on February 22, 2011, 06:20:33 pm »
38
100
Off topic / Re: Say something about the user above you.
« Last post by Jane on February 22, 2011, 05:51:45 pm »
Person above me Glows
Pages: 1 ... 8 9 [10]