MIRC SCRIPTERS

Chat about mIRC related issues
Post Reply
Guest

MIRC SCRIPTERS

Post by Guest »

Is there any GOOD mirc scripters who wold help with mirc scripting?
(don't mean helping n00bs)
Merril

Im good

Post by Merril »

im good
Guest

Post by Guest »

can anybody tell me a good away system, what supports multi-server nickchange etc. ?
-=Master_Load=-

Post by -=Master_Load=- »

Why need an away system. Just type /tnick AwayNick /ame is away reason: ....
DiJiTZ

MIRC Scripter here

Post 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
Alex
Posts: 2
Joined: Wed Jun 21, 2006 3:06 am

Post 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.
Post Reply