Jump to content
  • 0

guys help me on my project ultimate launcher!


joelolopez

Question


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  

aheheh im developing a very kewl (for me) launcher but i want to use a SSO login if im not mistaken with the term? the one that logs in through the launcher, am right?

 

like the other launchers out there, you can login your account through the launcher itself not in the login screen remember guys?

sorry im very bad in grammar xp

Edited by joelolopez
Link to comment
Share on other sites

13 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  317
  • Reputation:   63
  • Joined:  11/13/11
  • Last Seen:  

I am not sure how to respond to this topic. So I'll just leave this here;

Wat8.jpg

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  257
  • Reputation:   170
  • Joined:  12/06/11
  • Last Seen:  

Be specific when posting though.. Haha..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  562
  • Reputation:   152
  • Joined:  02/21/12
  • Last Seen:  

He means that he's working on a project where you can login into your account in launcher/patcher. So you don't need to login ingame anymore, you instantly go to the character selection I guess ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   261
  • Joined:  04/25/12
  • Last Seen:  

I think he want to make a auto patcher with login in this, ex: tor patcher with login ?

 

Or do you wanna a launcher like this?

 

i6qab.jpg

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  

I think he want to make a auto patcher with login in this, ex: tor patcher with login ?

 

Or do you wanna a launcher like this?

 

i6qab.jpg

yeah thats it zell how can login through my launcher

He means that he's working on a project where you can login into your account in launcher/patcher. So you don't need to login ingame anymore, you instantly go to the character selection I guess ?

yeah thats right sir:3

im using visual studio 2008, how can i make my input box communicate with my client xp, im clueless...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  666
  • Reputation:   673
  • Joined:  11/12/12
  • Last Seen:  

Launchers (normally) only launch the client by using the following command line :

"yourRO.exe" -t:password username server -1rag1

Where password is the password and username is the username. Could also be -1sak1, depending on your diffs. You must also uncheck the "restore login window" when diffing obviously.

 

Not sure how you'd make... an SSO login though!

Edited by Tokei
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  

Launchers (normally) only launch the client by using the following command line :

"your.ro" -t:password username server -1rag1

Where password is the password and username is the username. Could also be -1sak1, depending on your diffs. You must also uncheck the "restore login window" when diffing obviously.

 

Not sure how you'd make... an SSO login though!

i dont get it ahahah, am i suppose to assign variable name username and password to my 2 textbox?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   261
  • Joined:  04/25/12
  • Last Seen:  

Well, I first recommend you to learn the basics of programming

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  666
  • Reputation:   673
  • Joined:  11/12/12
  • Last Seen:  

Oups, I made a typo in my command line, anyway.

 

This is actually a rather simple call. I do not know which language you're using, but here's a sample for C# anyway.

var password = _textBoxPassword.Text;
var username = _textBoxUsername.Text;
var serverType = "-1rag1";
var clientPath = @"yourRO.exe";
Process.Start(clientPath, String.Format("-t:{0} {1} server {2}", password, username, serverType));

As for C++, look for the system(...) function. C++'s not my favorite language though, so you'll probably want to google a bit for alternatives if it doesn't do what you're looking for. Either way, a simple "start process with arguments [language here]" google search should help you more than enough on how to launch a process with arguments.

system("\"C:\\RO\\yourRO.exe\" \"-t:password username server -1rag1\");
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   261
  • Joined:  04/25/12
  • Last Seen:  

I maked mine launcher on delphi, if you want the line code

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  

Well, I first recommend you to learn the basics of programming

i already know some basic programming, c++, html,php,java ,visual studio

 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  562
  • Reputation:   152
  • Joined:  02/21/12
  • Last Seen:  

visual studio is an IDE not an programing language. Anyways. Tokei gave a very easy solution for this. I guess if you know the "basics" you should have no problems to do this.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  

 

Oups, I made a typo in my command line, anyway.

 

This is actually a rather simple call. I do not know which language you're using, but here's a sample for C# anyway.

var password = _textBoxPassword.Text;
var username = _textBoxUsername.Text;
var serverType = "-1rag1";
var clientPath = @"yourRO.exe";
Process.Start(clientPath, String.Format("-t:{0} {1} server {2}", password, username, serverType));

As for C++, look for the system(...) function. C++'s not my favorite language though, so you'll probably want to google a bit for alternatives if it doesn't do what you're looking for. Either way, a simple "start process with arguments [language here]" google search should help you more than enough on how to launch a process with arguments.

system("\"C:\\RO\\yourRO.exe\" \"-t:password username server -1rag1\");

sir tokei im using visual studio 2008, and i already use the codes that you said but it seems that its not communicating with the server.. it say account:server id:1 , it suppose to say account:joelolopez id:200001 bla bla.. and then it gives me reject from server...do you have visual studio there xo can you give me the exact code coz im out of options..  /slur

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...