MQ2Autologin based on ISBoxer Character sets

HardOne

Rawk On!
Joined
Sep 27, 2008
Messages
344
Reaction score
1
Points
0
I tried to search for it, but came up empty.

I am going to start using two characters on the same account in different character sets with ISBoxer. Is there a way to make MQ2Autologin log in the correct character based on my ISBoxer character sets? My ini is currently setup using station names, but with two characters on one account how does MQ2Autologin handle this?
 
I tried to search for it, but came up empty.

I am going to start using two characters on the same account in different character sets with ISBoxer. Is there a way to make MQ2Autologin log in the correct character based on my ISBoxer character sets? My ini is currently setup using station names, but with two characters on one account how does MQ2Autologin handle this?

video to show u how to set it up and run and play

1. [ame="http://www.youtube.com/watch?v=uB3-Pr3_3AU"]ISBoxer Overview Part 1 - YouTube[/ame]

2. [ame="http://www.youtube.com/watch?v=LiKHcrAJfvc"]ISBoxer -- Quick Setup Wizard - YouTube[/ame]

3. [ame="http://www.youtube.com/watch?v=FY_IatEInWo"]ISBoxer -- Video Feed Walkthrough - YouTube[/ame]

4. [ame="http://www.youtube.com/watch?v=oIqLMBhoMQI"]ISBoxer Toolkit Overview Part 2 - YouTube[/ame]

5. [ame="http://www.youtube.com/watch?v=SdqpGB5XT0g"]ISBoxer - Simple - Click Bars Tutorial HD. - YouTube[/ame]

6. [ame="http://www.youtube.com/watch?v=sHwjmXlI22Q"]ISBoxer Suite: Your first team - YouTube[/ame]

7. [ame="http://www.youtube.com/watch?v=pA3MqP6LAAg"]ISBoxer -- Window Layouts -- The Wizard - YouTube[/ame]

8. [ame="http://www.youtube.com/watch?v=Nl6MZxHXAoA"]ISBoxer 101 -- Variable Keystrokes - YouTube[/ame]

9. [ame="http://www.youtube.com/watch?v=n4F4VyAD3nA"]ISBoxer 38 -- Window Layouts v2 - YouTube[/ame]

10. [ame="http://www.youtube.com/watch?v=6lrYUsCicQE"]ISBoxer 34 - EQ2 Setup - YouTube[/ame]

11. [ame="http://www.youtube.com/watch?v=yjeyMz_0lbU"]ISBoxer 38 -- Video & Cursor Feeds - YouTube[/ame]

12. [ame="http://www.youtube.com/watch?v=LiKHcrAJfvc&feature=results_main&playnext=1&list=PL1A9E8C95C957234C"]ISBoxer -- Quick Setup Wizard - YouTube[/ame]

* or u can go to youtube and in heading type " isboxer " and see the pleathra of videos isboxer has to offer

hope this help

PS isboxer is like mastercard= do play any game without it
 
I have it working fine for the character set.

My questions is for MQ2Autologin.

I currently have one character set of 3 toons, which between ISBoxer and MQ2Autologin, I hit one shortcut and all three login.

Now, I want to setup a second set, in which I login a different toon on the same account which is part of the first set. ISBoxer only has setting for which station name you want to login to. Autologin uses station name to enter login information, so I believe it's going to take the first ini entry for that station name every time.

Is there a way to make autologin look at the window name assigned by isboxer, and log in the appropriate toon?
 
Will ISBoxer save a station-name that isn't valid? if so, the MQ2AutoLogin source could be modified so that it still reads the station name from the text box, but then uses a different station name that is part of the ini file.
Example:

[Settings]
KickActiveCharacter=1
InstantCamp=0
UseStationNamesInsteadOfSessions=1
IniLocation=D:\MQ2\MQ2AutoLogin.ini
Debug=1

Code:
[stationname1] 
StationName=stationname1
Password=password
Server=myserver
Character=MyNormalCharacter

[stationname1-char2] 
StationName=stationname1
Password=password
Server=myserver
Character=character2

The only change needed would be to remove a couple of if statements in the code then:

Code:
[COLOR="DarkRed"]if(!bUseStationNamesInsteadOfSessions)
			{[/COLOR]
				SetCXStr(&((CSidlScreenWnd*)pWnd)->InputText, "");
				SetCXStr(&((CSidlScreenWnd*)pWnd)->InputText, szStationName);
			[COLOR="DarkRed"]}[/COLOR]

I think that would do it. I do nto know how to read the window title bar, or I would try to see what I could do :)