What i found!?

10/04/2012 07:28 knuck#1
Code:
 function openFlashClient(resolution, factionID)
    {
        try {
            if (typeof(window.opener) == 'object' && window.opener.thisIsReal) {
                window.opener.focus();
                return;
            }
        } catch (e) {}

        if(playerWantsOldClient) {
            // open client in old-fashioned way...
            var map = 'internalMap';
        } else {

            var map = 'internalMapRevolution';
i found this in tech center page source what is that doing there? and how to use it? Because [Only registered and activated users can see links. Click Here To Register...]
doesn't work ;(
10/04/2012 07:49 Andrew™#2
This do nothing because OldClient is disabled.

Here is what it do:
[Only registered and activated users can see links. Click Here To Register...]
10/04/2012 11:55 Prime.™#3
function openFlashClient(resolution, factionID)
{
try {
if (typeof(window.opener) == 'object' && window.opener.thisIsReal) {
window.opener.focus();
return;
}
} catch (e) {}

if(playerWantsOldClient) {
// open client in old-fashioned way...
var map = 'internalMap';
} else {

var map = 'internalMapRevolution'


If you Erase InternalMapRevolution
You will get Old client



Joke
Its source code of Disabling Old client
10/04/2012 15:09 mustangv7#4
I think this is the option that BP put in the game when the v2 client was in "beta".