Launch 12sky2 KR

02/13/2013 21:58 pr0x#1
Can someone help me to launch 12sky2 kr from website, ive tried with IE but the stupid ActiveX dosnt want to complete the instalation and all i get is this page .

[Only registered and activated users can see links. Click Here To Register...]
02/20/2013 06:03 Mega Byte#2
Use chrome :) F12 or console window.

I made this for TS1 try to make something similar for TS2 by looking at how their game launch button gets the paramaters for launcher then adapt the below.
It will be in one of the js files.

Copy paste into chromes console window
$.post(APPLICATION_CONTEXT + "/Launcher/auth", {
timestamp : new Date().getTime() / 1000
}, function(data){ window.location = data.launcherAuthUrl; });

Or to see the data for your self
$.post(APPLICATION_CONTEXT + "/Launcher/auth", {
timestamp : new Date().getTime() / 1000
}, function(data){ console.log(data.launcherAuthUrl); });
02/28/2013 10:36 wevits411#3
hi........................