[Release] Tool to launch sframe.exe without launcher

07/30/2015 23:37 ThunderNikk#46
Oh I knew they would not fix your current issue. They are for using the launcher to pass log in arguments.

I am sorry if I confused you.
07/31/2015 01:14 glandu2#47
Quote:
Originally Posted by jhbj.jkjk View Post
not, You can download the client from the official Russian server and check everything myself? Suddenly I'm doing something wrong
get.gamexp.ru/Rappelz_150722
get.gamexp.ru/torrent/Rappelz_150722.torrent
Another feature we have to enter the launcher in the username and password before the game starts
after starting the game, we will immediately get to the server selection
When installing, it did not let me use a path with cyrillic characters.
After the installation I moved it to a path with cyrillic characters and upon starting it got an error about data.000 not being readable:
"The filename, directory name, or volume label syntax is incorrect. (123) - <path to data.000>"

Can you try to move your rappelz folder to a path without cyrillic characters ? (for example: C:\Rappelz )


EDIT: I was not using /country:RU, got the same error as you finally
07/31/2015 01:31 jhbj.jkjk#48
Quote:
Originally Posted by glandu2 View Post
When installing, it did not let me use a path with cyrillic characters.
After the installation I moved it to a path with cyrillic characters and upon starting it got an error about data.000 not being readable:
"The filename, directory name, or volume label syntax is incorrect. (123) - <path to data.000>"

Can you try to move your rappelz folder to a path without cyrillic characters ? (for example: C:\Rappelz )


EDIT: I was not using /country:RU, got the same error as you finally
here
07/31/2015 01:37 glandu2#49
Quote:
Originally Posted by jhbj.jkjk View Post
here
I found the issue, it's not related to RappelzCmdLauncher but to the way Rappelz authenticate the user with RU country.

SFrame need a "/gamexp_sid:0" parameter so your command line is:
Code:
RappelzCmdLauncher.exe SFrame.exe /gamexp_sid:0 /auth_ip:127.0.0.1 /use_nprotect:0 /locale:windows-1251 /country:RU /cash /commercial_shop
But then SFrame close just after the introduction videos. I think it does not use account/password authentication but instead the gamexp_sid code in argument (this behavior with gamexp_sid seems hardcoded).

You can try to use another /country option and see if it works in-game
07/31/2015 01:53 jhbj.jkjk#50
Quote:
Originally Posted by glandu2 View Post
I found the issue, it's not related to RappelzCmdLauncher but to the way Rappelz authenticate the user with RU country.

SFrame need a "/gamexp_sid:0" parameter so your command line is:
Code:
RappelzCmdLauncher.exe SFrame.exe /gamexp_sid:0 /auth_ip:127.0.0.1 /use_nprotect:0 /locale:windows-1251 /country:RU /cash /commercial_shop
But then SFrame close just after the introduction videos. I think it does not use account/password authentication but instead the gamexp_sid code in argument (this behavior with gamexp_sid seems hardcoded).

You can try to use another /country option and see if it works in-game
any region takes off after video
07/31/2015 02:22 jhbj.jkjk#51
Quote:
Originally Posted by glandu2 View Post
I found the issue, it's not related to RappelzCmdLauncher but to the way Rappelz authenticate the user with RU country.

SFrame need a "/gamexp_sid:0" parameter so your command line is:
Code:
RappelzCmdLauncher.exe SFrame.exe /gamexp_sid:0 /auth_ip:127.0.0.1 /use_nprotect:0 /locale:windows-1251 /country:RU /cash /commercial_shop
But then SFrame close just after the introduction videos. I think it does not use account/password authentication but instead the gamexp_sid code in argument (this behavior with gamexp_sid seems hardcoded).

You can try to use another /country option and see if it works in-game
how to deal with it? or you are working on these?
07/31/2015 03:42 ThunderNikk#52
My thought is maybe the client doesn't have the ability now to run the log on screen.

Maybe try that automatic log in I gave a couple of posts ago. Providing that you are using the auth emulator. You can use those to send the log in information to the auth emulator.
06/22/2017 20:01 coyuyoargs#53
quiero entrar a un servidor rapplez me sale esto como lo arreglo page 4 (0xf0, 6)
03/30/2020 22:20 mickastev#54
hey !

I have a problem with client Official FR

I have log on serveur but when i clic character problem interface don't possible select character and created new character

thx for help ;)
03/30/2020 22:35 medaion#55
Your problem is with the sframe you're using.
You can't use the official sframe because it's in 9.6 & no server files released in 9.6.

You need to use a 9.5 sframe & put the code versions in the gameserver.opt :
N:game.version:20180117 or N:game.version:20181211
03/31/2020 20:28 mickastev#56
i have test 7 other sframe for FR and all have problem :(
08/30/2022 21:39 ThunderNikk#57
I can get you the code when I get home but you need to start both executable files in your code and there is a specific way you need to do it.

Create an argument for running rappelzcommandlauncher.exe and then you need for your start game command

arguments + start command

Code from my launcher...

Code:
        //Starts the game

        private void pictureBox3_Click(object sender, EventArgs e)
        {
            string currentDirectory = Directory.GetCurrentDirectory();
            string currentDrive = Path.GetPathRoot(currentDirectory);
            string finalArguments = string.Format("/C {0} & CD {1} & ", currentDrive.Replace("\\", ""), currentDirectory);
            string startArguments = "Sframe.exe /auth_ip:10.71.1.2 /auth_port:8841 /use_nprotect:0 /locale:ASCII /country:US /cash /commercial_shop /layout_dir:6 /layout_auto:0 /cash_url_w:800 /cash_url_h:631 /help_url_w:611 /help_url_h:625";

            finalArguments += startArguments;

            Process.Start("RappelzCmdLauncher.exe", startArguments);

            this.Close();