mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2002
Posts: 9
G
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
G
Joined: Dec 2002
Posts: 9
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


______________________________
Twistification IRC
A
Anonymous
Unregistered
Anonymous
Unregistered
A
The guy tells the doctor "Hey doc, my arm hurts when I do this".
The doctor says "Then don't do that". wink

Joined: Dec 2002
Posts: 774
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 774
/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...


Code:
//if ( khaled isgod ) echo yes | else echo no
Joined: Feb 2003
Posts: 307
T
Fjord artisan
Offline
Fjord artisan
T
Joined: Feb 2003
Posts: 307
lol


Link Copied to Clipboard