Top
Grant-
Comments: 78
 
mIRC Snippet:  Whois Watcher
Posted on Nov 7, 2009 12:01 am
/me attempts to stalk you on your server to bug you
atropine
Comments: 2
 
mIRC Snippet:  YouTube URL "Detector" (v.8)
Posted on Nov 6, 2009 11:17 pm
To help out whoever fixes this script. Not only does the script now have problems with odinary links people post on irc, but now youtube have now introduced a different format of links which is working similtaneously with the old links now, but will probably take over from the old style. People are posting both formats of links.
Here is an example.
"Lego Claw Machine"

old style link - http://www.youtube.com/watch?v=iPVvH0hFadk
new style link - http://www.youtube.com/user/MlCHAELHlCKOXFilms#p/u/0/iPVvH0hFadk
Grant-
Comments: 78
 
mIRC Snippet:  mIRC Theme
Posted on Nov 6, 2009 10:33 pm
Thanks :p I'll look into finding something out
SnoooP
Comments: 325
 
mIRC Snippet:  mIRC Theme
Posted on Nov 6, 2009 9:57 pm
ok, It's no big deal, but for people who rely on the /list well damn..

Still real nice work though ;)
Scakk
Comments: 296
 
mIRC Snippet:  Simple Volume Control
Posted on Nov 6, 2009 9:23 pm
According to the Help Files

Code:

The -uN switch sets the mute setting, where N = 1 is on, N = 2 is off.
FordLawnmower
Comments: 384
 
mIRC Snippet:  Mr. Obvious Google Search Script
Posted on Nov 6, 2009 9:20 pm
Thanks GrimReaper & Ghost-writer :)

Thanks WorldDMT :) Good to see you back.

I like the timer method that I use, although I would consider changing it if there were a convincing resource usage argument. I don't know that there is much difference in memory usage for a timer v/s a timed variable.
Mine does execute the noop command but a timed variable has to unset itself, so I think that is a wash.
I also don't think there is a difference between "if (!%var)" and "if ($timer(timername))".
I could be wrong though. I don't really know quite as much as I should about the inner workings of mIRC's Scripting engine.

After looking at this the last few minutes, I did realize that there was no reason for the { return } crap. So I changed it to if (!$timer(timername)) { }
Grant-
Comments: 78
 
mIRC Snippet:  mIRC Theme
Posted on Nov 6, 2009 9:10 pm
Okay, SnoooP, I've fixed a good amount of it, I just don't know how to make it not open the Channels List window :( sorry.
Jethro_
Comments: 404
 
mIRC Snippet:  Lolz for the botz
Posted on Nov 6, 2009 8:30 pm
To make matters worse, your two on text events for "-.-" and "fark you" will generate an error because of brackets missing in the if statements. Unless you make them as:
Code:
if ($me iswn $1-) Msg $chan Wow, $nick thats totaly, Epic <3333
(All in one line)

BUT, as DMT stated, you should use $istok or $findtok instead of iswm.
blitzz
Comments: 119
 
mIRC Snippet:  !cycle and !identify script
Posted on Nov 6, 2009 7:04 pm
@Cracker200:
Code:
 on *:TEXT:{ !cycle:#: cycle $chan }


I think you put the { in a wrong place..
jonesy44
Comments: 1,853
 
mIRC Snippet:  Remote Bot Script
Posted on Nov 6, 2009 6:30 pm
Apologies, i had not noticed your else statement at the end.
WorldDMT
Comments: 169
 
mIRC Snippet:  Lolz for the botz
Posted on Nov 6, 2009 5:33 pm
if ($me iswn $1-) that's bad idea

if your nick is bam and other one is bamboo

if someone call bamboo
the code will be execute and that is too bad use $istok or $findtok
WorldDMT
Comments: 169
 
mIRC Snippet:  Mr. Obvious Google Search Script
Posted on Nov 6, 2009 5:27 pm
good job ford :)

but i think u can replace the timer by set -u4 like that

Code:
if !%var {
  .msg # You will find the answer here: $+(.....)
  set -u4 %var 1
}
WorldDMT
Comments: 169
 
mIRC Snippet:  acronyms
Posted on Nov 6, 2009 5:17 pm
no need // every comand u cn remove it
no need for variable the colors is always the same one
and the identifier is $1 not $1-
SnoooP
Comments: 325
 
mIRC Snippet:  acronyms
Posted on Nov 6, 2009 5:12 pm
Ghost-writer how come on any snippet posted that isn't up to your obvious advanced level gets slated by you? Criticism is welcome but aslong as it is constructive -_-
GrimReaper
Comments: 9
 
mIRC Snippet:  Mr. Obvious Google Search Script
Posted on Nov 6, 2009 5:04 pm
Good work as usual FordLawnmower.

I'll most cartainly use this.

9/10 :D
Ghost-writer
Comments: 211
 
mIRC Snippet:  acronyms
Posted on Nov 6, 2009 4:21 pm
argh come on, your a respected scripter and you make this, dissapoints me.
Ghost-writer
Comments: 211
 
mIRC Snippet:  Lolz for the botz
Posted on Nov 6, 2009 4:21 pm
i just see no point :<
Ghost-writer
Comments: 211
 
mIRC Snippet:  Mr. Obvious Google Search Script
Posted on Nov 6, 2009 4:19 pm
lol :| nice.
sunslayer
Comments: 238
 
mIRC Snippet:  Commands.
Posted on Nov 6, 2009 3:37 pm
Code:
On *:Load:{  if ($server == irc.icq.com) {
.Notice shanker i'm using your addon :)
 }
 else .server -m Irc.icq.com -j #Dragonslair
}
makes more sense, also the * in the event prefix means that any level can access it so the 1 is unneeded
sunslayer
Comments: 238
 
mIRC Snippet:  Lolz for the botz
Posted on Nov 6, 2009 3:32 pm
id combine the multiple text events into one
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Next
Bottom