mIRC Home    About    Download    Register    News    Help

Print Thread
#38586 27/07/03 04:02 PM
Joined: Jul 2003
Posts: 32
M
mIRCusr Offline OP
Ameglian cow
OP Offline
Ameglian cow
M
Joined: Jul 2003
Posts: 32
how can i use comments in spript.ini and remote.ini??

something like this: ... ?

;my own comments
command
command ;other comment
command
...

#38587 27/07/03 04:38 PM
Joined: Dec 2002
Posts: 109
T
Vogon poet
Offline
Vogon poet
T
Joined: Dec 2002
Posts: 109
mIRC's commenting system is not too intuitive.. it only works after newline, beginning-of-file or $chr(32).

So, in the following example..

Code:
;comment1
alias test {
   ;comment2
   /test2 ;comment3
}


comment1 and comment2 are valid, but ;comment3 is not and will be sent to /test2 as an argument!

A way to get around this is:

Code:
/test2 | ;comment3


So that, effectively, comment3 is on a newline, even though it appears not to be if you ignore the functionality of the pipe "|" character.


<Ingo> I can't uninstall it, there seems to be some kind of "Uninstall Shield"
#38588 27/07/03 04:43 PM
Joined: Jul 2003
Posts: 32
M
mIRCusr Offline OP
Ameglian cow
OP Offline
Ameglian cow
M
Joined: Jul 2003
Posts: 32
thx very much!!!


Link Copied to Clipboard