Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » General Discussions » General Discussion » Mirc + NoNameScript
Mirc + NoNameScript [message #321594] Mon, 10 March 2008 22:16 Go to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
I have mirc and NoNameScript but how can i have more then one server open along with its windows?

like one server for xphaze another for ekt another for mp-gaming and have there channels in there ?
Re: Mirc + NoNameScript [message #321599 is a reply to message #321594] Tue, 11 March 2008 00:31 Go to previous messageGo to next message
CarrierII is currently offline  CarrierII
Messages: 3804
Registered: February 2006
Location: England
Karma: 0
General (3 Stars)

/server -m new-irc-server.com



Renguard is a wonderful initiative
Toggle Spoiler
Re: Mirc + NoNameScript [message #321706 is a reply to message #321594] Tue, 11 March 2008 12:52 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
if i do that is it permanent?
Re: Mirc + NoNameScript [message #321707 is a reply to message #321594] Tue, 11 March 2008 12:58 Go to previous messageGo to next message
Zion is currently offline  Zion
Messages: 2722
Registered: April 2006
Karma: 1
General (2 Stars)
The window will remain open unless you close the window, or close mIRC.

You can impliment this command into mIRC Scripts, if you so desire.
Re: Mirc + NoNameScript [message #321718 is a reply to message #321594] Tue, 11 March 2008 14:22 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
how i do that? when i open it i want it to atuop open these 3 servers with its channels in them i tryed it but it opened channles form one server in all the servers and jacked up lol
Re: Mirc + NoNameScript [message #321737 is a reply to message #321594] Tue, 11 March 2008 18:09 Go to previous messageGo to next message
light is currently offline  light
Messages: 988
Registered: January 2005
Karma: 0
Colonel
Scripts!

you need an ON START script to connect to each server when mIRC starts, then an ON CONNECT script which checks the server name then joins the channels you want.


http://www.azupload.com/displayImage.php/setid2745.png
Re: Mirc + NoNameScript [message #321740 is a reply to message #321594] Tue, 11 March 2008 18:19 Go to previous messageGo to next message
Zion is currently offline  Zion
Messages: 2722
Registered: April 2006
Karma: 1
General (2 Stars)
on start
{
  /server irc.servername.com
  /server -m irc.servername2.com
  /server -m itc.servername3.com
}

on connect
{
  if($server == irc.servername.com)
  {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
  elseif($server == irc.servername2.com)
  {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
  elseif($server == irc.servername3.com)
  {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
}


Changing "servername.com", "servername2.com", "servername3.com", "chan", "chan2", "chan3" and "password" accordingly. You can add more channels if need be.
Re: Mirc + NoNameScript [message #321743 is a reply to message #321594] Tue, 11 March 2008 18:29 Go to previous messageGo to next message
Creed3020 is currently offline  Creed3020
Messages: 1438
Registered: February 2003
Location: Toronto, Canada
Karma: 0
General (1 Star)
Or you can get the script to do this for you without any coding...

Assuming you have a similar version of NoNameScript installed do the following:

-Go to NoNameScript at the top of mIRC-
--Click on Setup
---On the left side find and click 'Favorite Nets'
----A list of available networks is displayed. Move the networks you wish to connect to from the left box to the right box
-----configure the 'Network data' at the bottom of the Menu box for each Favorite Network.

Hope this helps.
Re: Mirc + NoNameScript [message #321750 is a reply to message #321594] Tue, 11 March 2008 19:27 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
im try both of those as soon as i able to ill reply back if i got it or any errors
Re: Mirc + NoNameScript [message #322179 is a reply to message #321594] Fri, 14 March 2008 08:27 Go to previous messageGo to next message
CarrierII is currently offline  CarrierII
Messages: 3804
Registered: February 2006
Location: England
Karma: 0
General (3 Stars)

Is there no switch / case statement in MIRC's script language then?


Renguard is a wonderful initiative
Toggle Spoiler
Re: Mirc + NoNameScript [message #322180 is a reply to message #321594] Fri, 14 March 2008 08:36 Go to previous messageGo to next message
Renx is currently offline  Renx
Messages: 2321
Registered: April 2003
Location: Canada
Karma: 0
General (2 Stars)
Category Moderator
You need to go into the mIRC server setup (alt+e or alt+o) and manually add the servers you want to connect to before following Creed3020's steps.

You can also use "Perform" to add commands to be executed upon connecting to a server instead of coding. You find it by pressing alt+o and navigating to Connect/Options on the left-hand side.


~Canucck

http://www.sloganizer.net/en/style7,Espion.png

Blazer

...RG made me ugly

[Updated on: Fri, 14 March 2008 08:38]

Report message to a moderator

Re: Mirc + NoNameScript [message #322189 is a reply to message #322179] Fri, 14 March 2008 09:45 Go to previous messageGo to next message
Ethenal is currently offline  Ethenal
Messages: 2532
Registered: January 2007
Location: US of A
Karma: 0
General (2 Stars)

CarrierII wrote on Fri, 14 March 2008 10:27

Is there no switch / case statement in MIRC's script language then?



Nope.

EDIT @ SSnipe: Since you have NoNameScript, you can use the "Favorite Nets" tool in NoNameScript's setup menu.


-TLS-DJ-EYE-K wrote on Mon, 18 March 2013 07:29

Instead of showing us that u aren't more inteligent than a Toast, maybe you should start becomming good in renegade Thumbs Up

[Updated on: Fri, 14 March 2008 09:46]

Report message to a moderator

Re: Mirc + NoNameScript [message #322190 is a reply to message #321594] Fri, 14 March 2008 09:46 Go to previous messageGo to next message
CarrierII is currently offline  CarrierII
Messages: 3804
Registered: February 2006
Location: England
Karma: 0
General (3 Stars)

I'd die. lol


Renguard is a wonderful initiative
Toggle Spoiler
Re: Mirc + NoNameScript [message #322335 is a reply to message #322180] Sat, 15 March 2008 07:36 Go to previous messageGo to next message
Creed3020 is currently offline  Creed3020
Messages: 1438
Registered: February 2003
Location: Toronto, Canada
Karma: 0
General (1 Star)
Renx wrote on Fri, 14 March 2008 10:36

You need to go into the mIRC server setup (alt+e or alt+o) and manually add the servers you want to connect to before following Creed3020's steps.

You can also use "Perform" to add commands to be executed upon connecting to a server instead of coding. You find it by pressing alt+o and navigating to Connect/Options on the left-hand side.


Thanks for adding that note, I made an assumption that he would already have the networks added, but the reverse is also possible.

Have you gotten this to work yet?
Re: Mirc + NoNameScript [message #329832 is a reply to message #321743] Fri, 09 May 2008 17:58 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
Creed3020 wrote on Tue, 11 March 2008 18:29

Or you can get the script to do this for you without any coding...

Assuming you have a similar version of NoNameScript installed do the following:

-Go to NoNameScript at the top of mIRC-
--Click on Setup
---On the left side find and click 'Favorite Nets'
----A list of available networks is displayed. Move the networks you wish to connect to from the left box to the right box
-----configure the 'Network data' at the bottom of the Menu box for each Favorite Network.

Hope this helps.

thats helpful but i cant add channels and zeon fox i did urs but not working..

[Updated on: Fri, 09 May 2008 18:53]

Report message to a moderator

Re: Mirc + NoNameScript [message #329907 is a reply to message #321594] Sat, 10 May 2008 10:16 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
*bump*

please help me i can get the diffrent servers to open with what you guys told me with the Favorite Nets but does not open channels and the scripts zeon fox made i cant get it to work
Re: Mirc + NoNameScript [message #329908 is a reply to message #321740] Sat, 10 May 2008 10:34 Go to previous messageGo to next message
Rev
Messages: 51
Registered: November 2004
Karma: 0
Recruit
on *:start: {
  /server irc.servername.com
  /server -m irc.servername2.com
  /server -m itc.servername3.com
}

on *:connect: {
  if ($server == irc.servername.com) {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
  elseif ($server == irc.servername2.com) {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
  elseif ($server == irc.servername3.com) {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
}



Try that? change the same things that zion said.


...

[Updated on: Sat, 10 May 2008 10:37]

Report message to a moderator

Re: Mirc + NoNameScript [message #329909 is a reply to message #329908] Sat, 10 May 2008 10:58 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
Rev wrote on Sat, 10 May 2008 10:34

on *:start: {
  /server irc.servername.com
  /server -m irc.servername2.com
  /server -m itc.servername3.com
}

on *:connect: {
  if ($server == irc.servername.com) {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
  elseif ($server == irc.servername2.com) {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
  elseif ($server == irc.servername3.com) {
    /nickserv identify password
    /join #chan1
    /join #chan2
    /join #chan3
  }
}



Try that? change the same things that zion said.



hmm thanks but still dont work...see in the ss it opens all my channels in all networks instead of the network it should be in

http://i72.photobucket.com/albums/i172/Tanner2007/wtf.jpg
and idk even know what those 2 network things are with no channels =/

Re: Mirc + NoNameScript [message #329910 is a reply to message #329909] Sat, 10 May 2008 11:01 Go to previous messageGo to next message
Rev
Messages: 51
Registered: November 2004
Karma: 0
Recruit
press alt + O
go to Connect->options->perform. make sure there is nothing in there making you join channels.


...
Re: Mirc + NoNameScript [message #329911 is a reply to message #329910] Sat, 10 May 2008 11:03 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
Rev wrote on Sat, 10 May 2008 11:01

press alt + O
go to Connect->options->perform. make sure there is nothing in there making you join channels.

alreayd did it...its empty
Re: Mirc + NoNameScript [message #329913 is a reply to message #329911] Sat, 10 May 2008 11:23 Go to previous messageGo to next message
Rev
Messages: 51
Registered: November 2004
Karma: 0
Recruit
post the script with your servers/channels in it? just take out your password and any channels you dont want us to see?

...
Re: Mirc + NoNameScript [message #329914 is a reply to message #321594] Sat, 10 May 2008 11:28 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
ok i fixed something i fucked up..its working expect one part....the first network channels arnt showing up

http://i72.photobucket.com/albums/i172/Tanner2007/wtf2.jpg
Re: Mirc + NoNameScript [message #329916 is a reply to message #321594] Sat, 10 May 2008 11:47 Go to previous messageGo to next message
TD is currently offline  TD
Messages: 966
Registered: May 2005
Karma: 0
Colonel
Change
Quote:

if ($server == irc.ia-net.net) {

To
Quote:

if ($network == IA-NET) {


http://i38.tinypic.com/6fs2s9.png
Re: Mirc + NoNameScript [message #329930 is a reply to message #329916] Sat, 10 May 2008 12:39 Go to previous messageGo to next message
_SSnipe_ is currently offline  _SSnipe_
Messages: 4121
Registered: May 2007
Location: Riverside Southern Califo...
Karma: 0
General (4 Stars)
TD wrote on Sat, 10 May 2008 11:47

Change
Quote:

if ($server == irc.ia-net.net) {

To
Quote:

if ($network == IA-NET) {


i think that did it....last thing..i adeed a 4th network to connect 2......but that ones channels wont come up
Re: Mirc + NoNameScript [message #329958 is a reply to message #329930] Sat, 10 May 2008 15:07 Go to previous messageGo to previous message
TD is currently offline  TD
Messages: 966
Registered: May 2005
Karma: 0
Colonel
SSnipe wrote on Sat, 10 May 2008 21:39

TD wrote on Sat, 10 May 2008 11:47

Change
Quote:

if ($server == irc.ia-net.net) {

To
Quote:

if ($network == IA-NET) {


i think that did it....last thing..i adeed a 4th network to connect 2......but that ones channels wont come up

Show me a screenshot of the network and your code


http://i38.tinypic.com/6fs2s9.png
Previous Topic: Which Theme Do You Use?
Next Topic: Quake Live
Goto Forum:
  


Current Time: Sun Aug 11 15:38:37 MST 2024

Total time taken to generate the page: 0.01131 seconds