Script for the tokens.. ( Fiesta Online New Files ) help me please

Newbie Spellweaver
Joined
Dec 12, 2011
Messages
86
Reaction score
1
how to make a launcher with this script here help me see

LPL - Launcher programming language. (VB, C, C++, C#, ...)
WSL - Web Server Language. (PHP, ASP, ...)
1. Enter Username/Password to Launcher. Launcher asks, for User/Pass ...
2. Send them to your web server: [LPL -> WSL]
"http://localhost/GetToken.php?username="+username+"&password="+password
... and sends it to Web server, ...
3. Web Server checks are they valid? [WSL]
($result = "SELECT [nEMID], [sUserpass] FROM [tAccounts]
WHERE [sUsername] = $username" ) == $password
... which then validates it ...
4. Generate a token: [WSL]
"$token = GenerateRandomToken();"
... and generates the token ...
5. Save it to Database: [WSL]
"INSERT INTO [tTokens]([nEMID],[sToken])
VALUES ($result[0],$token)"
... then saves it to DB, ...
6. Return it Launcher: [WSL -> LPL]
"echo $token."
... after that it sends token back to the launcher ...
7. And start the Client with correct parameters: [LPL]
Process.Start("Client.exe", "-osk_server 127.0.0.1 -osk_token "+tokenfromhttppage+" -osk_store YourGameStore")
... and it starts the Client with it.
8. Wait for Client Load.
9. Client sends data to LoginService. When Client is started up it connects to the Login server ...
10. LoginService sends data to Web Server: [C++ -> WSL]
"http://stubedore.t/user/v1/getInfo?realm=fiesta&token="+tokenfromlauncher+"&sig=LongHexString"
Remap "stubedore.t" in hosts file.
... which validates the token by asking the Web server (REST Server acts like it as default) ...
11. Web Server validates token: [WSL]
($result = "SELECT [tAccounts].[nEMID], [tAccounts].[sUsername] FROM [tAccounts], [tTokens] WHERE [tAccounts].[nEMID] = [tTokens].[nEMID] and [tTokens].[sToken] = '$token';) == true
... which validates the token by asking the Web server (REST Server acts like it as default) ...
12. And sends result back: [WSL -> C++]
"echo '{"token_age":0,"user_id":'.$result[0].',"login":"'.$result[1].'","user_role":"user","blocked":false}';"
... and when its valid/notExpired it sends correct response back.
13. LoginService does whats necessary to get Client in game.

if someone can help me to make a launcher add as friend in skype valmor157 im looking for staff

for real work


and i have already installed visual basic 2008 here on mine computer so help me plz:*::*:
 
Those 13 steps is the only help you need. Like seriously what else is there that you need help with? If you don't know how to make a fucking registerscript then how do you think you're going to be able to make a launcher? Oh and stop making like 20 threads about the same thing. We all know your skype by now. It'd be okay if you had a problem with one step in this guide, but you just posted the whole freakin' guide and expects someone to make it for you so you can "learn".

Peace.
 
Those 13 steps is the only help you need. Like seriously what else is there that you need help with? If you don't know how to make a fucking registerscript then how do you think you're going to be able to make a launcher? Oh and stop making like 20 threads about the same thing. We all know your skype by now. It'd be okay if you had a problem with one step in this guide, but you just posted the whole freakin' guide and expects someone to make it for you so you can "learn".

Peace.

Sums up the whole attitude/motto of most in this section, seen too many people swing by wanting to "learn", only to have someone else do work for them in which they then release some server where they don't even know how to edit some of the world .txt files.

I'll introduce you to batch files, they'll be your best friend for the next 6 months whilst you figure out your launcher.

<your_exe>.exe -osk_server <your_loginIP> -osk_token <your_token>

gg.
 
If you learn 1 programming language, you got access to the whole Programming Language world.

I'm home-made Visual Basic programmer for 5 years now. Because of that I made my own Launcher(/w Auto Patcher) with web-based token login system(PHP).

Good Luck.
 
I usually don't care about how good people's english is, but you really should take some english lessons bruna if you can't even understand what anyone here is saying.
 
Bruna, you're at a crossroad:

A) Do the research yourself, learn how to use any coding language/some PHP and fix this yourself. Don't expect the community to do it for free for you, nothing's free in this world.
B) Pay Stu.

If you're lazy, go with B as you've probably got a bit of cash on the side, wanting to jump into the Fiesta scene.
 
if you try and have a question on a single part or confused on a function build i'm sure someone would help you understand how it works but to ask for everything so you don't have to learn anything is annoying.
 
Back