mIRC Homepage
Posted By: GeniusDex window reopens on double /hop - 18/05/03 01:15 PM
When you issue the command "//hop | //hop" on a channel (or hop twice really fast) it closes the channel window and reopens it. I suppose it should stay open like with the single /hop command wink
Posted By: Anonymous Re: window reopens on double /hop - 18/05/03 01:42 PM
The guy tells the doctor "Hey doc, my arm hurts when I do this".
The doctor says "Then don't do that". wink
Posted By: theRat Re: window reopens on double /hop - 18/05/03 06:09 PM
/hop coding in mircscripts

alias hop {
part #
join #
set %hop #
enable #hop
}
#hop off
on *:part:%hop: {
if ( $nick == $me ) halt
; If halt could prevent the channel window closing, which would be sooo 1337
}
on *:join:%hop: {
unset %hop
disable #hop
}
#hop end

and server traffic & commands
/hop
#hop enabled
-> irc.server.com PART #chan
-> irc.server.com JOIN #chan
/hop
#Hop enabled
-> irc.server.com PART #chan
-> irc.server.com JOIN #chan
<- :you!~ident@host.com PART #chan
window closing halted
<- :you!~ident@host.com JOIN :#chan
#hop disabled
<- :you!~ident@host.com PART #chan
Window closing not halted, because #hop is disabled
<- :you!~ident@host.com JOIN :#chan
Opens new window...
Posted By: tontito Re: window reopens on double /hop - 21/05/03 06:06 PM
lol
© mIRC Discussion Forums