mIRC Home    About    Download    Register    News    Help

Print Thread
#8848 30/01/03 02:01 AM
V
verdugo2000
verdugo2000
V
on 1:start: .titlebar AlienNaTion 2.0 | echo -s 4,0Bienvenidos a 3,0 AlieNatION version 2.0  corriendo bajo mirc $version | echo -s hEcho PoR VerDuGo®Team | echo -s ®2001-2003 mIRC $version Khaled Mardam-Bey | echo 2,0 Alpha 3
on 1:connect: .window -n @info 400 400 200 200 | .window -nC @join 300 300 200 200 | .window -nC @test 20 200 200 200 | on 1:connect: { line @info Bienvenidos al # tu mejor opcion } this part didnt work


#8849 30/01/03 02:18 AM
Joined: Dec 2002
Posts: 1,893
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,893
How about
Code:
on 1:start:{
  .titlebar AlienNaTion 2.0 
  echo -s 4,0Bienvenidos a 3,0 AlieNatION version 2.0  corriendo bajo mirc $version 
  echo -s hEcho PoR VerDuGo®Team 
  echo -s ®2001-2003 mIRC $version Khaled Mardam-Bey 
  echo 2,0 Alpha 3
}
on 1:connect:{
  .window -n @info 400 400 200 200 
  .window -nC @join 300 300 200 200 
  .window -nC @test 20 200 200 200 
  aline @info Bienvenidos al # tu mejor opcion
} 


I suppose it's way more human-readable :tongue:

Anyway, there were 3 issues:

- An event must be placed in a new line. you cannot use pipes to continue on the same line, as you can do with commands.

- Two same events in one file: only the first one will work. to solve it, do either combine the commands into a single event (as I did to your code), or move the other event to an another script file.

- line isn't a valid command. did you mean aline? smirk


Link Copied to Clipboard