Top

Comments

  (468)  RSS
DarthReven's
DarthReven
Comments: 468
 
mIRC Snippet:  Common Channels
Posted on Apr 16, 2007 3:23 am
Try using $addtok to add your tokens with the ASCII Character you want between the respective tokens. EX:
Code:

on !*:join:#: {
  if ($comchan($nick,0) > 1) {
    var %output, %start 1
    while ($comchan($nick,1)) { %output = $addtok(%output,$v1,32) | inc %start }
    msg $chan %output
  }
}
DarthReven
Comments: 468
 
mIRC Snippet:  Lazy Modes
Posted on Apr 14, 2007 3:14 pm
Might want to associate each nick to a channel and add only the nicks in the channels that you have @ or % in
DarthReven
Comments: 468
 
Image:  MP3 Player
Posted on Apr 14, 2007 7:09 am
Pretty Simple interface
DarthReven
Comments: 468
 
mIRC Snippet:  My MP3 Player
Posted on Apr 13, 2007 11:05 pm
Its not a bad lil code
DarthReven
Comments: 468
 
mIRC Snippet:  DR-Clone
Posted on Apr 3, 2007 1:08 am
The caps isn't a method to 'rip' my scripts sides all codes posted on Hawkee.com are open source. The only way a script is truly ripped is if the code is copied and the 'original creator' is not sited. At any rate I put everything in caps cause I like it that way not to prevent people from "ripping" my scripts
DarthReven
Comments: 468
 
mIRC Snippet:  DR-Clone
Posted on Apr 2, 2007 11:04 pm
Only problem with that alias Solo you need to provide the file extension for $script([file]) to work. So a better way do it if you were going to do this is:
Code:

alias lowercase {
  if ($script($1)) {
    echo $color(info) -a *** Converting $1 now...
    %file.tmp = $+($gettok($1,1,46),-lc.,$gettok($1,2,46))
    if ($isfile(%file.tmp)) { write -c $v1 }
    filter -fk $1 convert
    unload -rs $1
    .remove $1
    filter -ff %file.tmp $1
    .remove %file.tmp
    load -rs $1
    echo $color(info) -a [End - Conversion]
    unset %file.*
  }
  else { beep 2 | echo $color(notify) -a *** Error - $1 was not valid }
}
alias -l convert { write %file.tmp $upper($1-) }
DarthReven
Comments: 468
 
mIRC Snippet:  Ultimate Ban + Kick
Posted on Mar 30, 2007 3:40 pm
check to see if $2 exists and if you are an op in the channel
DarthReven
Comments: 468
 
mIRC Snippet:  Ad Kicker
Posted on Mar 30, 2007 3:39 pm
You also want to check if you are a op in the channel you are using this in
DarthReven
Comments: 468
 
Image:  My Mp3 Player that will not be posted
Posted on Mar 26, 2007 11:04 pm
to make a fully functioning mp3 player with C++ would take awhile to test and compile
DarthReven
Comments: 468
 
Image:  My Mp3 Player that will not be posted
Posted on Mar 25, 2007 2:25 pm
this is for mIRC if i wanted to code one i for windows i could in C++
DarthReven
Comments: 468
 
mIRC Snippet:  -Gone-
Posted on Mar 21, 2007 12:39 am
No Where It is not avable
DarthReven
Comments: 468
 
mIRC Snippet:  -Gone-
Posted on Mar 20, 2007 7:54 pm
This code is no longer suported and the new version will not be placed here on Hawkee.com
DarthReven
Comments: 468
 
mIRC Snippet:  Away system v0.9 - With dialog! [UPDATED!]
Posted on Mar 20, 2007 9:48 am
well basically what you 'could' do is if there is no reason for the away then the reason should just be "away" as such our away command would look like this: '/away away' and our $awaymsg would return 'away' then we could do a if statement like 'If ($awaymsg != away) {' if you catch my drift
DarthReven
Comments: 468
 
mIRC Snippet:  Away system v0.9 - With dialog! [UPDATED!]
Posted on Mar 20, 2007 6:45 am
Just clean up a few more things like using $awaymsg instead of %reason and i think you'll have an 8.0
DarthReven
Comments: 468
 
mIRC Snippet:  Away system v0.9 - With dialog! [UPDATED!]
Posted on Mar 20, 2007 5:05 am
Good Job on the Dialog Coding you've improved alot
DarthReven
Comments: 468
 
mIRC Snippet:  ally protection on KICK/BAN
Posted on Mar 20, 2007 5:02 am
you know you can use /ban -k with the host masks you like buy using it like this: "/ban -k %kicker 2 Don't kick %kicked $+ !!!"
DarthReven
Comments: 468
 
mIRC Snippet:  ally protection on KICK/BAN
Posted on Mar 20, 2007 5:02 am
you know you can use /ban -k with the host masks you like buy using it like this: "/ban -k %kicker 2 Don't kick %kicked $+ !!!"
DarthReven
Comments: 468
 
mIRC Snippet:  Random Songs On Start
Posted on Mar 20, 2007 4:56 am
Agreed Acid a simple setting of a variable w/ $sdir would be best
DarthReven
Comments: 468
 
mIRC Snippet:  Random Songs On Start
Posted on Mar 18, 2007 6:53 am
Cause we don't know if $+($mircdir,sound) has any files in it
DarthReven
Comments: 468
 
mIRC Snippet:  Random Songs On Start
Posted on Mar 18, 2007 4:34 am
You can use this: "on *:start: { splay $findfile(C:\,*.mp3,$r(1,$findfile(C:\,*.mp3,0))) }" this will play a random mp3 file that resides on your C:\ Drive
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Next
Bottom