Top

mIRC File Opener


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Aug 25, 2009
Last Updated  Oct 11, 2009
Tags  file  mirc  open  script  warizardworks 

Introduction

Hey guys. This is a simple, yet tasteful mIRC File Opener script that I made.

How it works: You right click and listed under channel modes is a menu for File Opener, you click that and brings up a file dialog. You click the file of choice and it opens it for you.

How to activate it: Take the script, put it in your remote tab and you are good to go!

That's about it for this script. Hope you enjoy.

~ This script was made by Wariopower of #WarizardWorks on irc.purplesurge.com ~


Grab the Code

~~~~~~~~~~~~~~~~~~~~
~ mIRC File Opener ~
~~~~~~~~~~~~~~~~~~~~
 
menu channel {
  File Opener
  .File Opener:/fileopen
}
alias fileopen {
  if (!$1) var %file = $sfile(c:\,Pick a File,Open)
  else { set %file $1- }  
  if (%file) { 
    run %file
  }
}
 

Comments

  (4)  RSS
skitzkid
Comments: 3
 
mIRC Snippet:  mIRC File Opener
Posted on Oct 11, 2009 11:15 am
~~~~~~~~~~~~~~~~~~~~
~ mIRC File Opener ~
~~~~~~~~~~~~~~~~~~~~

menu channel {
File Opener
.File Opener:/fileopen
}
alias fileopen {
if (!$1) var %file = $sfile(c:\,Pick a File,Open)
else { set %file $1- }
if (%file) {
run %file
}
}


alias was wrong
#Warizardworks
Comments: 13
 
mIRC Snippet:  mIRC File Opener
Posted on Oct 11, 2009 11:33 am
Ah okay, thanks. I'll fix that right away. :P
~ Wariopower
jonesy44
Comments: 1,856
 
mIRC Snippet:  mIRC File Opener
Posted on Oct 11, 2009 3:21 pm
Bored..

Code:
alias fileopen var %f = $qt($iif($1,$1-,%file = $sfile(c:\,Pick a File,Open))) | if $exists(%file) { run $v1 } | else echo -a * file %file does not exist

knoeki
Comments: 120
 
mIRC Snippet:  mIRC File Opener
Posted on Oct 12, 2009 8:18 am
next step is to write a whole filemanager ;_)

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom