mIRC Homepage
Posted By: aPPeLMoeS 2 servers at a time - 27/06/04 07:34 PM
this one could be very usefull.

I want to connect to Gamesurge and Quakenet at the same time. so I have in my perform list:
/server irc.gamesurge.net
/server -m irc.quakenet.org

and I have in options - connect - options: connect on startup enabled

but if i start my mirc, it automatically connects to gamesurge and quakenet, but when i join my first favorite channel on quakenet, it connects again to quakenet. It's like a never ending loop

so maybe an option in Options - connect: a second IRC Network, so we can put in the first one: gamesurge and in the second one: Quakenet !

grin sorry for my crappy english, i hope you guys understand me
Posted By: ScoT Re: 2 servers at a time - 27/06/04 07:42 PM
The option is already in place you are doing it wrong adding the 2 servers
what in fact you are telling mirc to do is go into an endless loop of connecting re-connectiing only add the 2nd server to perform, or use an on start event to complete both connections
on *:start: { server 1 | server -m 2 }

ScoT
#mIRC Undernet
Posted By: aPPeLMoeS Re: 2 servers at a time - 27/06/04 07:58 PM
I dont get it crazy
Posted By: tsoglanos Re: 2 servers at a time - 27/06/04 08:09 PM
just type this in your status

//server irc.gamesurge.net | /server -m irc.quakenet.org

and scot means you could this use in the on start event

on 1:START:{
echo Connecting to irc.gamesurge.net and, irc.quakenet.org
server irc.gamesurge.net
server -m irc.quakenet.org
}



Posted By: ScoT Re: 2 servers at a time - 27/06/04 08:43 PM
having to type this in your status all the time would be rather annoying,
Quote:
just type this in your status
//server irc.gamesurge.net | /server -m irc.quakenet.org


thats why i meant you can also do it automatically when starting mIRC you can load an event in your remotes to perform these commands..while mIRC is open
hold down your Alt-key and press R-key (the letter r) ..this takes you into the remote section of the script Editor and add this line
on 1:START: { server irc.gamesurge.net | server -m irc.quakenet.org }

Hope this clarifies things for you smirk

ScoT
#mIRC Undernet
Posted By: PastMaster Re: 2 servers at a time - 27/06/04 08:53 PM
There's no real need to do any scripting for this if you aren't comfortable with it.

By default, anything you put in 'Perform' happens every time you join ANY server - therefore, you tell it to join a server when you join a server, and this makes it join a server again... and so on.

You CAN set a *specific* network under 'Perform' however, in the same dialog. So... set the network to Quakenet, and then include ONLY a command to join Gamesurge. Then, every time you join Quakenet, you will automagically be connected to Gamesurge as well, with no loop. grin

Note: Gamesurge isn't in the list of networks that can be selected in the perform dialog...

PM
Posted By: Kelder Re: 2 servers at a time - 27/06/04 10:51 PM
The 3rd icon is Favorites, there you can add your favorite channels, and one of the options is Join on connect. I think this is what you want. It is possible to set on which network you want to join the channel, but you can only choose from a list, so I'm not sure how to add your own to that...
Posted By: Mentality Re: 2 servers at a time - 27/06/04 11:11 PM
"I'm not sure how to add your own to that..."

You need to add the network to the server list in mIRC options:

ALT+O > Connect > Servers

Under the drop down list click on 'Add'. Fill in the details where necessary - the 'Group:' parameter is the part that is added to the list. Once added this Group should now show up in the network list of the Perform section, and in the network list of Favourites.

You can also do it through the command line with (primarily) the -a switch of /server, see /help /server.

Regards,
Posted By: Darwin_Koala Re: 2 servers at a time - 28/06/04 06:10 AM
In reply to:
--------------------------------------------------------------------------------

having to type this in your status all the time would be rather annoying,

just type this in your status
//server irc.gamesurge.net | /server -m irc.quakenet.org

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

Of course, if you created an Alias (e.g. /j1) then all you would have to type is
/j1

Which is much much easier - especially for someone like me who is Lord of the Typos.

Cheers,

DK

Posted By: aPPeLMoeS Re: 2 servers at a time - 28/06/04 07:07 AM
far away from this :P this has nothing to do with my question.
Posted By: ScoT Re: 2 servers at a time - 28/06/04 05:13 PM
I don't think you guys are carefully reading post replies and seem to be giving the same advice over and over

Not once did i suggest it needed to be scripted !!

The option is already in place you are doing it wrong adding the 2 servers what in fact you are telling mirc to do is go into an endless loop of connecting re-connectiing only add the 2nd server to perform or use an on start event to complete both connections.

ScoT
#mIRC Undernet
Posted By: starbucks_mafia Re: 2 servers at a time - 28/06/04 08:43 PM
Quote:
only add the 2nd server to perform

- It will go into a loop no matter how many /server commands are added to the perform list unless an /if condition is added or the network's to apply the perform list to is limited to only the first server - that's what (some) people are pointing out.
Posted By: ScoT Re: 2 servers at a time - 28/06/04 09:14 PM
Quote:
It will go into a loop no matter how many /server commands are added
..eh ok

It stands to reason IF you read his post the person does not want this to apply to all servers
Quote:
I want to connect to Gamesurge and Quakenet at the same time

Therefore by adding server -m quakenet to his network specific perform commands why in the blazes should this ever go into an infinite loop.


I rest my case, about people not reading posts
Posted By: starbucks_mafia Re: 2 servers at a time - 28/06/04 11:27 PM
Quote:
Therefore by adding server -m quakenet to his network specific perform commands why in the blazes should this ever go into an infinite loop.

Except you never mentioned 'network specific' before, which is the key point. You might try reading your own posts before talking down about other people not reading them properly.
Posted By: ScoT Re: 2 servers at a time - 28/06/04 11:51 PM
No you are 100% correct i did not previously mention anything regarding network specific, and i seen no need to. if a user enters the perform section, unless they were Stevie Wonder i think it would be hard not to see, that such an option is there. I also noted that the Gamesurge network IS in the list, but i never mentioned this either, i tend to give users the benefit of having at least some common sense, and the willingness to read a bit. smirk


ScoT
#mIRC Undernet
Posted By: starbucks_mafia Re: 2 servers at a time - 29/06/04 12:20 AM
Well if they made the mistake to put two /server lines inside the perform list I see no reason to assume they'd suddenly figure out that if they should only put one in there that they should also make it specific to the network that they took out.
Posted By: PastMaster Re: 2 servers at a time - 29/06/04 06:31 AM
This comment seems to be aimed in my general direction, so...

Quote:
Not once did i suggest it needed to be scripted !!


Well, your very first thread on this post included an on:start event, tsoglanos did likewise, and you replied to tsoglanos with another on:start event. I think most people would accept that remotes are scripting.

It seemed to me, however, that no-one had properly explained how to use the perform dialog - which the enquirer evidently knows how to reach - to solve the problem. My personal feeling, with which others may of course disagree, is that this is an easier route to resolving the problem than trying to explain about mIRC command line commands, aliases or remote scripts.

Kipling's line about

Quote:
"there are five and twenty ways / of constructing tribal lays / and EVERY SINGLE ONE OF THEM IS RIGHT"


(his Caps, not mine!) applies here - what's wrong with providing the widest possible range of answers so that the user can decide which they are most comfortable with?

PM
Posted By: PastMaster Re: 2 servers at a time - 29/06/04 06:38 AM
Quote:
Gamesurge network IS in the list


Wups! Mea culpa. Presumably the dialog takes the network list from servers.ini... and since I use a custom .ini, it ain't there! blush

PM
Posted By: ScoT Re: 2 servers at a time - 29/06/04 05:05 PM
re:
Quote:
what's wrong with providing the widest possible range of answers so that the user can decide which they are most comfortable with?

Absolutely Nothing Pastmaster, the range you gave tho was the same, albeit you Did include the
Quote:
You CAN set a *specific* network under 'Perform'
if you feel strongly that the network specifics need added you are free to make that point,
whereas i chose NOT to.
Chose being the definitive word.
and i still stand by my decision
Quote:
i tend to give users the benefit of having at least some common sense, and the willingness to read a bit.


I suggested there was an Alternative to perform or use an on start event i see this sort of reply daily, Or you Could, < that surely falls under your term of widest possible range of answers

I applaud anyone who helps, in whatever capacity they wish. laugh and my further thread was not specifically intended for anyone

It seems this thread was about to turn into something other than an answer to the original poster question, and at least one of you think i was "talking down"
Quote:
before talking down about other people not reading

My sole purpose in a help forum is to help users who ask for assistance and if i feel that the same advice was being repeated, i believe i do have the right as a member to point this out, that in NO Way in the world in wich i live in suggests to me that i am "talking down" to anyone. Far from it as i have said, i applaud anyone who helps.

And i for one realise members may help in different ways.
Give a man a fish feed him for a day, Teach him to fish, feed him for life


I'll end my part in this thread as i see it becoming non-productive, and wish you all well

ScoT
#mIRC Undernet
© mIRC Discussion Forums