mIRC Home    About    Download    Register    News    Help

Print Thread
#184946 03/09/07 01:50 AM
Joined: Aug 2007
Posts: 72
P
Babel fish
OP Offline
Babel fish
P
Joined: Aug 2007
Posts: 72
Anyone know of a good mIRC script editor...
Besides mIRC's Built-in
I've tried a few out there and can't find what I'm looking for...
I'd like syntax highlighting, auto indent, folding, auto-complete, ect...
Any suggestions?


mIRC Scripting: So easy a caveman could do it.
Joined: Jul 2006
Posts: 4,149
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,149
Maybe this is what you looking for :
http://scriptsdb.org/comments.php?id=609


#mircscripting @ irc.swiftirc.net == the best mIRC help channel
Joined: Aug 2007
Posts: 72
P
Babel fish
OP Offline
Babel fish
P
Joined: Aug 2007
Posts: 72
I'll give it a try, thx smile




Edit:
I can't use that program for some reason, I'm on vista, it just crashes every time I try to start it...

Last edited by PhireCoder; 03/09/07 02:00 AM.

mIRC Scripting: So easy a caveman could do it.
Joined: Jul 2006
Posts: 4,149
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,149
Hum, under xp, i can install the program but anytime i click, i get an error message (but the the program works :/).


#mircscripting @ irc.swiftirc.net == the best mIRC help channel
Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
Notepad++ could be worth a try

Joined: Sep 2007
Posts: 32
S
Ameglian cow
Offline
Ameglian cow
S
Joined: Sep 2007
Posts: 32
i tried all what's mentioned above, some highlight the code pretty cool, but NONE aligns the code lines the same way mirc does, wich - for me at least - is way more important than highlighting the lines with colors


on me:*:JOIN:#: { .raw part # $crlf join # }
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881

Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
EditPlus supports syntax highlighting, auto-completion, code folding, auto indenting, search-replace which can handle regular expressions, macro recording and more things like that, also it supprts DDE so its possible to interact with mIRC as well... been using it for many years for most of my code/text editing... cool

Though it's not freeware, but i don't think that $30 is asked too much for it...


echo -a $signature
Joined: Sep 2007
Posts: 32
S
Ameglian cow
Offline
Ameglian cow
S
Joined: Sep 2007
Posts: 32
1- mEditor is cool, but doesn't align the code lines like mirc does, like;
Code:
alias test {
  line 1
  line 2

  ; Comment line here
  while (%variable <= bleh) {
    if ($blah == whatever) {
      echo -a test
      inc %x
    }
    else inc %x
  }
}



2- EditPlus doesn't highlight mirc scripts in the first place


on me:*:JOIN:#: { .raw part # $crlf join # }
Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
You need mirc syntax file for editplus for it to work. http://www.editplus.com/others.html there is list of all submitted files.


echo -a $signature
Joined: Sep 2007
Posts: 32
S
Ameglian cow
Offline
Ameglian cow
S
Joined: Sep 2007
Posts: 32
highliting issue solved then
now back to the most important issue: code alignment, wich doesn't seem to be existing in any script editor


on me:*:JOIN:#: { .raw part # $crlf join # }
Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
Code alignment?

Isn't auto indent enough?
Every "{" (open brace) will increase indent for your next line and every "}" (closing brace) will decrease incent for next line.
Also hilighting matching pairs of brackets/braces/sqare braces (){} []

Last edited by Brax; 05/09/07 07:31 PM.

echo -a $signature
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
mEditor has a { } button just like mIRC does, and it's even in the same place...

Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
mEditor sure seems to be like mIRC scripts Editor put into standalone program. Nice one =)


echo -a $signature

Link Copied to Clipboard