mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2007
Posts: 6
K
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
K
Joined: Jul 2007
Posts: 6
I just installed v6.31, and now my auto identify doesn't work, my theme stuff doesn't work, I can't double click links to open them now, and this doesn't work either:

Code:
on ^*:NOTICE:*:?: {
  if ( ($nick == NickServ) || ($nick == ChanServ) || ($nick == HostServ) || ($nick == MemoServ) || ($nick == BotServ)) {
    haltdef
    window -ek0 @ [ $+ [ $nick ] ]
    aline -h @ [ $+ [ $nick ] ] $1-
  }
  :error
  if (!$error) {
    return
  }
  if ($error == $chr(42)) {
    aline -h @ [ $+ [ $nick ] ] *
  }
  reseterror
}


I'm not sure if this all has to do with the ^ before *:NOTICE or not. I'll continue to dig into this more later, as I have to work now, but I just thought this was really weird, as even the upgrade from 6.2 to 6.3 didn't do this stuff to me. Sorry if this was posted elsewhere, but I hope this is just broken for me, and its because I'm dumb.

Joined: Aug 2005
Posts: 1,052
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Aug 2005
Posts: 1,052
That code is fine on 6.31 there might be something missing from the copy over that is not loaded that you might of edited..

also

Code:
on ^*:NOTICE:*:?: {
  if ($regex($nick,/(....Serv)/g) == 1) {
    haltdef
    window -ek0 @ [ $+ [ $regml(1) ] ]
    aline -h @ [ $+ [ $regml(1) ] ] $1-
  }
  :error
  if (!$error) {
    return
  }
  if ($error == $chr(42)) {
    aline -h @ [ $+ [ $regml(1) ] ] *
  }
  reseterror
}


A regex match is less then if blah or blah or blah or blah statement


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
Joined: Oct 2007
Posts: 2
H
Bowl of petunias
Offline
Bowl of petunias
H
Joined: Oct 2007
Posts: 2
Strange, im also having problems getting "on ^*:NOTICE:*:?: {", stuff that worked with 6.3 to work with 6.31, let me know if you find the answer to the riddle smile

Joined: Aug 2005
Posts: 1,052
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Aug 2005
Posts: 1,052
I dont get an error with that but

/window -pdh +d @mp3play -1 -1 700 230

This executes a @window in 6.3 or less but 6.31 ignores

Seems that -h has a bug


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
Joined: Jul 2007
Posts: 6
K
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
K
Joined: Jul 2007
Posts: 6
It would seem that its a problem with the

Code:
on ^*:NOTICE:*:?: {


as I threw in a simple echo, and that didn't work when I did a /ns help on the server.

Do you guys have any problems opening urls from mIRC too? I can't double click the links, I can't even right click them either. Oh well, looks like I'm going back to 6.3.

Joined: Oct 2007
Posts: 2
H
Bowl of petunias
Offline
Bowl of petunias
H
Joined: Oct 2007
Posts: 2
ok, i solved it by removing mirc totally, and i also had to clear the Roaming folder (vista), now the script is working perfectly, strange smile

Joined: Apr 2004
Posts: 759
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Apr 2004
Posts: 759
There's nothing wrong with
/window -pdh +d @mp3play -1 -1 700 230

in mIRC 6.31

Code:
alias testw {
  window -pdh +d @mp3play -1 -1 700 230
  echo -a $window(@mp3play) $window(@mp3play).type $window(@mp3play).state $window(@mp3play).mdi $window(@mp3play).w $window(@mp3play).h
  window -c @mp3play
}


hidden desktop windows have been fixed since 6.21
Code:
60.Fixed /window -h not hiding desktop @window when it is first
   created.


$maybe

Link Copied to Clipboard