Page 1 of 1
Client Launcher
Posted: Mon Mar 19, 2012 12:43 pm
by GjBob
I would like to know if is possible to make a custom client launcher with a sort of user database so that i dont have to remember all my accounts, and if possible, some tips on how to start.
Re: Client Launcher
Posted: Wed Mar 28, 2012 4:38 pm
by BiggBoss
Programming in java, you can use the class Robot. It will virtually "press" the keys you tell him on the focused component. So, as soon as client is loaded, something like:
Code: Select all
Robot r = new Robot();r.keyPress(KeyEvent.VK_J); // writes "j"
Re: Client Launcher
Posted: Thu Mar 29, 2012 10:45 pm
by GjBob
BiggBoss wrote:Programming in java, you can use the class Robot. It will virtually "press" the keys you tell him on the focused component. So, as soon as client is loaded, something like:
Code: Select all
Robot r = new Robot();r.keyPress(KeyEvent.VK_J); // writes "j"
It's working but this metod got a lot of problem on focus. I was thinking about sending packets. I played on a server some times ago that had a custom launcher and username and password were typed there.
Re: Client Launcher
Posted: Wed Apr 04, 2012 9:36 pm
by GjBob
up

Re: Client Launcher
Posted: Sat Apr 07, 2012 8:09 pm
by BiggBoss
i dont think theres default packet which would let you fill id/pwd boxes. Maybe you can start l2 in cmd line using args, but imo the launcher you saw required client mod
Re: Client Launcher
Posted: Sun Apr 08, 2012 6:20 pm
by Konstantinos
so we cant use it.