Top

IRC NOTEPAD


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  7.5
Scores Submitted  2
Date Added  Feb 11, 2008
Last Updated  Feb 12, 2008
Tags  dialog  irc  notepad  write 
  Bookmark and Share

Introduction

Do you find it annoying when you need to remember a word,nick,password,line,ect and you are sick of opening windows notepad well if so this snippet may help :P

Its a little IRC notepad ive made that uses a txt file to store the info.
You can add and delete any part of the txt file from the dialog :D

to use just copy and paste to remotes (alt+r)

Special thanks to mountaindew and JacK SpaRRoW for helping with parts of this code, Thanks guys :D

Have fun :P

Grab the Code

Comments

  (15)  RSS
R1cochet
Comments: 7
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 12:28 am
What a Great idea. Cant get delete to work though?
bourneident
Comments: 26
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 4:02 am
maybe make it update while open if i add someting or delete something i have to close it then open again i have to to see that it is there

other then that not bad great idea there are smaller ones out there but this one has great potential keep it up
napa182
Comments: 1,007
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 4:45 am
nice idea but how about instead of useing a combo box you use a edit box and a list box, and you can get it to read spaces.
Gemster
Comments: 56
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 5:04 am
R1cochet if you add a word that will delete fine but if yo add a line like say \"need to remeber this line\" the snippet wont read spaces for delete so type the first word ir \"need\" and hit delete and that will work. :P
Gemster
Comments: 56
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 5:05 am
Code:
on *:DIALOG:Npad:sclick:2:{ write -ds $did(3) Npd.txt }


if any1 knows the command to delete whole lines instead of a word please let me know thanks
napa182
Comments: 1,007
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 5:33 am
um you can try this.
Code:
var %dNpd $read(Npd.txt,w,$did(3).text)
      if (%dNpd == $did(3).text) {
        write -dl [ $+ [ $readn ] ] Npd.txt
Scakk
Comments: 218
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 5:33 am
Try

Code:

on *:DIALOG:Npad:sclick:2:{ write -ds \" $+ $did(3) $+ \" Npd.txt }
Gex
Comments: 94
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 6:07 am
ive made that before, but with a textarea

http://www.hawkee.com/snippet/1688/
Gemster
Comments: 56
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 8:21 am
thanks Scakk that works fine thanks.

Ok ppl you can now delete full lines thanks to Scakk :P
Gemster
Comments: 56
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 8:23 am
ohh i thought this one was the first :(
Sorry Gex :/
Well both are very similar but this 1 is much easyer to use and understand, not too complex either
mountaindew
Comments: 1,550
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 2:09 pm
i have some suggestions:

1) Dialog is too big, too much space
2) Disable the delete button until you click a thing in the combo
3) I would turn the init event into an alias, and call that on the init, and then call it again when u delte something (to update the list), and same for when you add something
4) Disable the add button until you have text in the edit box
Ivanalicius
Comments: 18
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 2:18 pm
Code:

menu Menubar {
.Notepad:/run C:\\WINDOWS\\system32\\notepad.exe
}


Too simple.
Gemster
Comments: 56
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 2:19 pm
yup i c mountaindew

this post was a work in progress (just the basics)

till R1cochet took it over :/


Gemster
Comments: 56
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 2:24 pm
yes Ivanalicius that is easyer but still it uses windows and space as u have to choose sum where to save it and keep finding it and opening it,editing it.

this one irc uses.

Basically it makes ppl lazy lmao :P
Gex
Comments: 94
 
mIRC Snippet:  IRC NOTEPAD
Posted on Feb 12, 2008 6:25 pm
@Ivanalicius the point of this script is to save time even if it saves 5 seconds....according to your words...we can use /run wmplayer.exe to run the mp3 player instead of using an irc mp3player..

Please Register or Login to start posting comments.
Bottom