Top

Comments

  (50)  RSS
vegeto079's
Matt888
Comments: 2
 
mIRC Snippet:  Random Text
Posted on Nov 29, 2008 9:48 pm
Works fine, It would be nice to have a menu instead of having to remember all the aliases. Other than that, it's great.
vegeto079
Comments: 30
 
mIRC Snippet:  Away Script
Posted on Aug 2, 2008 5:17 pm
Meh, I just put that the same message on every script. Not like I don't expect people to switch it around a bit, just that I don't really want people editing and taking credit for it.
DaNzO
Comments: 75
 
mIRC Snippet:  Away Script
Posted on Jul 20, 2008 5:55 pm
"Do not edit this in anyway without my permission"

Srsly, Everyone customizes scripts to how they like them.
mountaindew
Comments: 1,711
 
mIRC Snippet:  Away Script
Posted on Jul 8, 2008 12:39 pm
Code:

  if (%send !isin %normchan) { goto next }
  if (%send isnum) { goto next }

You have a lot of stuff like this. You can use || which means "or" to use two things in one if statement.
Code:

  if (%send !isin %normchan || %send !isnum) { goto next }
vegeto079
Comments: 30
 
mIRC Snippet:  WPM Finder
Posted on Apr 11, 2008 2:45 pm
Fixed...again. Not sure why they weren't silenced when I had done it before (possibly it didnt save?), but they are now.
HoNdAx707
Comments: 58
 
mIRC Snippet:  WPM Finder
Posted on Apr 7, 2008 5:53 pm
you didnt silence the timers...
Code:
 
.timer 01 01 wmpa

thats how you would do it
vegeto079
Comments: 30
 
mIRC Snippet:  WPM Finder
Posted on Mar 31, 2008 10:06 pm
Fixed, thanks.
jonesy44
Comments: 1,201
 
mIRC Snippet:  WPM Finder
Posted on Mar 30, 2008 7:04 am
add a "." to the start: .timer x y /bla
vegeto079
Comments: 30
 
mIRC Snippet:  WPM Finder
Posted on Mar 29, 2008 2:05 pm
how do i do that >.<?
napa182
Comments: 1,161
 
mIRC Snippet:  WPM Finder
Posted on Mar 29, 2008 3:54 am
you should really silence ur timers.
vegeto079
Comments: 30
 
mIRC Snippet:  Channel Record Script.
Posted on Mar 23, 2008 5:59 pm
O.o
jonesy44
Comments: 1,201
 
mIRC Snippet:  Channel Record Script.
Posted on Mar 19, 2008 5:28 pm
o.O
DarkDaemon
Comments: 50
 
mIRC Snippet:  Channel Record Script.
Posted on Mar 19, 2008 4:39 pm
w0000000000000000oooooooooooooooo0000000000000!
DarkDaemon
Comments: 50
 
mIRC Snippet:  Channel Record Script.
Posted on Mar 19, 2008 4:39 pm
w0000000000000000oooooooooooooooo0000000000000!
vegeto079
Comments: 30
 
mIRC Snippet:  Channel Record Script.
Posted on Feb 28, 2008 2:45 pm
Thanks, fixed.
Sir_Sonic12
Comments: 15
 
mIRC Snippet:  Channel Record Script.
Posted on Feb 24, 2008 11:36 pm
instead of having two on text events for ! and @record, you could do:
Code:
on $*:TEXT:/^[!@]record/Si:#:{


then just set a var like:
Code:
var %msgway = $iif($left($1,1) == @,msg $chan,notice $nick)


and then put %msgway record stuff here
Olliegod
Comments: 74
 
mIRC Snippet:  Countdown Script. Great for Holidays.
Posted on Dec 1, 2007 9:11 am
Code:
alias blah {
  if (%1 == -11) {
    set %1 2
  }
  if (%1 == -10) {
    set %1 3
  }
  if (%1 == -9) {
    set %1 4
  }
  if (%1 == -8) {
    set %1 5
  }
  if (%1 == -7) {
    set %1 6
  }
  if (%1 == -6) {
    set %1 7
  }
  if (%1 == -5) {
    set %1 8
  }
  if (%1 == -4) {
    set %1 9
  }
  if (%1 == -3) {
    set %1 10
  }
  if (%1 == -2) {
    set %1 11
  }
  if (%1 == -1) {
    set %1 12
  }
}

This can be shortened to
Code:
alias blah if (%1 < 0 && %1 > -12) set %1 $calc(%1 + 13)


Also you should look into using while loops rather than goto's.
Altogether this isn't an amazing script but I suppose it's decent.
CharltonJ
Comments: 37
 
mIRC Snippet:  Power / Status
Posted on Sep 7, 2007 1:30 am
woww!! i like it :) 7/10 too :P
Metallboy100
Comments: 28
 
mIRC Snippet:  A RuneScape-Based !DM Snippet
Posted on Aug 19, 2007 6:33 am
Wery nice script, but it didnt work for me...
koutrelakosn
Comments: 8
 
mIRC Snippet:  A RuneScape-Based !DM Snippet
Posted on Aug 4, 2007 8:21 am
will it work for any chn other wise theres not POINT!
1 2 3 Next
Bottom