mIRC Home    About    Download    Register    News    Help

Print Thread
#55605 17/10/03 09:31 PM
Joined: Oct 2003
Posts: 2
A
Bowl of petunias
OP Offline
Bowl of petunias
A
Joined: Oct 2003
Posts: 2
hi first of all smile

well ... i'v been using 6.03 for quite a while now but upgraded due to the exploit thing to Version 6.12 until then my away script worked quite well ...
Code:
 alias f10 if (!$away) { set %away.reason $$?="enter away-reason" | away %away.reason | nick awayusername | halt } | else { away | nick username | unset %away.reason }


the problem is just that nothing happens on pressing F10 ... back in the 6.03 days it worked perfect as mentioned befor and im a bit lost right now. hope anyone knows how to solve that "prob/bug/whatsoever"

thx in advance smile

#55606 17/10/03 10:52 PM
Joined: Jan 2003
Posts: 150
J
Vogon poet
Offline
Vogon poet
J
Joined: Jan 2003
Posts: 150
this works fine for me (mIRC v6.12)

Code:
alias f8 {
  if ($away) {
    away
    tnick %away.nick
    unset %away.reason
  }
  else {
    set %away.nick $me
    set %away.reason $$?="enter away reason"
    away $!
    tnick $me $+ _away
  }
}


Go ahead, jump. 100,000 lemmings can't be wrong.
#55607 18/10/03 10:25 PM
Joined: Oct 2003
Posts: 2
A
Bowl of petunias
OP Offline
Bowl of petunias
A
Joined: Oct 2003
Posts: 2
what i meant was mirc doesnt even respond when hitting f2 ... i tried to bind it to another alias for example /gone and it doesnt even come up with some error like "Unknown command" ... maybe someone got an explanation


Link Copied to Clipboard