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.
I am sorry if I confused you.
When installing, it did not let me use a path with cyrillic characters.Quote:
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
hereQuote:
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
I found the issue, it's not related to RappelzCmdLauncher but to the way Rappelz authenticate the user with RU country.Quote:
here
RappelzCmdLauncher.exe SFrame.exe /gamexp_sid:0 /auth_ip:127.0.0.1 /use_nprotect:0 /locale:windows-1251 /country:RU /cash /commercial_shop
any region takes off after videoQuote:
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:
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).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
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?Quote:
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:
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).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
You can try to use another /country option and see if it works in-game
//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();