Page 1 of 1

MIRC SCRIPTERS

Posted: Mon Jan 13, 2003 15:30 pm
by Guest
Is there any GOOD mirc scripters who wold help with mirc scripting?
(don't mean helping n00bs)

Im good

Posted: Wed Jan 15, 2003 23:19 pm
by Merril
im good

Posted: Mon Jan 27, 2003 21:05 pm
by Guest
can anybody tell me a good away system, what supports multi-server nickchange etc. ?

Posted: Fri Jan 31, 2003 17:21 pm
by -=Master_Load=-
Why need an away system. Just type /tnick AwayNick /ame is away reason: ....

MIRC Scripter here

Posted: Thu May 01, 2003 18:10 pm
by DiJiTZ
I have looked long and hard for a good away, and my personal favourite is a program called is-away.

I have also added MSN for MIRC right into my script.

Hope this isn't spamming. But it, and I can be found EFNet #PolarisIRC

It is a scripting/polaris irc channel I am trying to get going.

See Yah

DiJiTZ

P.S.- If anyone knows any IRC scripting channels let me know

Posted: Thu May 01, 2003 18:20 pm
by Alex
Well its kinda simple, But its kinda like this
in remotes put

alias awaysys {
if (%scidcounter == 1) {
/nick %savednick $+ %savedprefix
/describe $chan is now away reason: %reason
}

if (%scidcounter == 2) {
/scid 1
/nick %savednick $+ %savedprefix
/describe $chan is now away reason: %reason
/scid 2
/nick %savednick $+ %savedprefix
}

else { HALT }
}

in popups for channel/ or anything you want put

Awaysys
.Set Away Prefix://set %savedprefix [ $+ $?"What Prefix Afk,Away,Sleep,Tv?" $+ ]
.Set Away On:{
.Set Reason://set %reason $?"Whats the Reason for your Away?"
/awaysys
/set %awaysetting on
}
.Set Away Off:{
if (%awaysetting == on) { halt }
else { set %awaysys off }
}

Back to remotes

on 1:connect:{
inc %scidcounter 1
set %savednick $nick
}

on 1:disconnect:{
inc %scidcounter -1
}

on 1:start:{
set %scidcounter 0
}
add more to the alias at top as needed this works for 2 networks.
Could be wrong though, Never claimed to be a genious.
Wow, I did it the hard/long way figures.