mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2006
Posts: 1
J
Mostly harmless
OP Offline
Mostly harmless
J
Joined: Jan 2006
Posts: 1
I need a script made. If anyone is able to make it for me, I would be grateful, for a lifetime.

Heres what I need it to do:

/msg AuthServ@Services.GameSurge.net AUTH NEL|Quiceno
/nick NEL|Quiceno
//mode $me +x
/j #NEL
/j #nel.support
/j #nel.staff
/j #NEL.Scrim
/j #NEL.arena
/j #NEL.cs
/j #nel.css

/server -m irc.blackcobalt.net
/nick JPQuiceno
/msg nickserv IDENTIFY
/j #SFN
/j #IDF

/server -m irc.freenode.net
/msg nickserv identify
/nick JPQuiceno
/j #LUGMiami
/j #Linux
/j #Unix
/j #Debian
/msg nickserv identify
/j #FreeBSD

/server irc.gamesurge.net
/msg AuthServ@Services.GameSurge.net AUTH JPQuiceno
/nick PhiLANthropy|euph0riK
/j #PhiLANthropy
/j #Esportsea
/j #Gotfrag
/j #Florida
/j #FL.Club
/j #Miami










---------------------

The script should connect to gamesurge 2 times, as listed above, for I have 2 different nicks and auth accounts, and I need them to be separate.

Thank you so much, in advance.

Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
For those who use the perform list, yes I know it exists. No, I don't care to use it.

Code:
on *:START:{
  server irc.gamesurge.net 6667 -i NEL|Quiceno
  server -m irc.blackcobalt.net 6667
  server -m irc.freenode.net 6667
  server -m irc.gamesurge.net 6667 -i PhiLANthropy|euph0riK
}

on *:CONNECT:{
  if (gamesurge isin $server) {
    if ($me == NEL|Quiceno) {
      .msg AuthServ@Services.GameSurge.net AUTH NEL|Quiceno
      mode $me +x
      join #NEL,#NEL.support,#NEL.staff,#NEL.scrim,#NEL.arena,#NEL.cs,#NEL.css
    }
    else if ($me == PhiLANthropy|euph0riK) {
      .msg AuthServ@Services.GameSurge.net AUTH JPQuiceno
      join #PhiLANthropy,#Esportsea,#Gotfrag,#Florida,#FL.Club,#Miami
    }
  }
  else if (blackcobal isin $server) {
    if ($me != JPQuiceno) { nick JPQuiceno }
    .msg nickserv IDENTIFY
    join #SFN,#IDF
  }
  else if (freenode isin $server) {
    if ($me != PhiLANthropy|euph0riK) { nick PhiLANthropy|euph0riK }
    .msg nickserv identify
    join #LUGMiami,#Linux,#Unix,#Debian,#FreeBSD
  }
}


Link Copied to Clipboard