Any Help

11/16/2023 22:27 DillerUnlimited#1
[Only registered and activated users can see links. Click Here To Register...]

:handsdown::handsdown:

✖๖̶ۣۜĐĭℓℓєᘠ»♔`∞#6730
11/17/2023 00:45 Bench#2
Try to explain your problem in detail here so that people can help you (effectively).
11/17/2023 09:42 FremdeZahnbürste#3
Make sure that the region is set correctly in the Source, in the Auth Server Config and in the Launcher
Looks like the Launcher can't even connect to the Auth Server.
That's most like an issue that the Region is set incorrectly.

I don't know how much your sources differ from my one
But here are the Locations:

AuthServer -> LoginAPI -> LoginServerHandler.cs
Code:
firstMessage.Write($"<region>{Config.Instance.AuthAPI.Region}</region>");
Here it reads the Region from the Auth Config, make sure that it's like this aswell

AuthServer -> Config.cs

Code:
public AuthAPIConfig()
{
    Listener = new IPEndPoint(IPAddress.Loopback, 28001);
    Region = "Region"; // <-- Change Region here
    BlockedHWIDS = new string[0];
}
Change Region to the Region your server is named, in my case it's just "Region"

Launcher -> LoginAPI -> Bytearray.cs

Code:
info = info.Replace("<region>", "");
info = info.Replace("</region>", "");
if (info == "Region")  // <-- Change the Region here aswell
{
  var sendmsg = new CCMessage();
  sendmsg.Write(Constants.LoginWindow.GetUsername());
  sendmsg.Write(Constants.LoginWindow.GetPassword());
  sendmsg.Write(FingerPrint.Value());
  sendmsg.Write("test");

  RmiSend(client, 15, sendmsg);
  Constants.LoginWindow.UpdateLabel("Connecting...");
} else {
  Constants.LoginWindow.UpdateLabel("Error");
}
And finally the AuthServer.hjson file inside your AuthServer Folder where you start it

[Only registered and activated users can see links. Click Here To Register...]
11/17/2023 11:33 DillerUnlimited#4
Quote:
Originally Posted by FremdeZahnbürste View Post
Make sure that the region is set correctly in the Source, in the Auth Server Config and in the Launcher
Looks like the Launcher can't even connect to the Auth Server.
That's most like an issue that the Region is set incorrectly.

I don't know how much your sources differ from my one
But here are the Locations:

AuthServer -> LoginAPI -> LoginServerHandler.cs
Code:
firstMessage.Write($"<region>{Config.Instance.AuthAPI.Region}</region>");
Here it reads the Region from the Auth Config, make sure that it's like this aswell

AuthServer -> Config.cs

Code:
public AuthAPIConfig()
{
    Listener = new IPEndPoint(IPAddress.Loopback, 28001);
    Region = "Region"; // <-- Change Region here
    BlockedHWIDS = new string[0];
}
Change Region to the Region your server is named, in my case it's just "Region"

Launcher -> LoginAPI -> Bytearray.cs

Code:
info = info.Replace("<region>", "");
info = info.Replace("</region>", "");
if (info == "Region")  // <-- Change the Region here aswell
{
  var sendmsg = new CCMessage();
  sendmsg.Write(Constants.LoginWindow.GetUsername());
  sendmsg.Write(Constants.LoginWindow.GetPassword());
  sendmsg.Write(FingerPrint.Value());
  sendmsg.Write("test");

  RmiSend(client, 15, sendmsg);
  Constants.LoginWindow.UpdateLabel("Connecting...");
} else {
  Constants.LoginWindow.UpdateLabel("Error");
}
And finally the AuthServer.hjson file inside your AuthServer Folder where you start it

[Only registered and activated users can see links. Click Here To Register...]



I did everything you asked me to do and it still doesn't work. I don't know why
If you have a Discord account, let's talk


✖๖̶ۣۜĐĭℓℓєᘠ»♔`∞#6730
11/17/2023 13:03 FremdeZahnbürste#5
Quote:
Originally Posted by DillerUnlimited View Post
I did everything you asked me to do and it still doesn't work. I don't know why
If you have a Discord account, let's talk


✖๖̶ۣۜĐĭℓℓєᘠ»♔`∞#6730
Is the IP correct in the Constants.cs inside the Launcher?
11/19/2023 17:16 DillerUnlimited#6
Yes, everything is true
11/19/2023 22:18 FremdeZahnbürste#7
Which source do you use
11/20/2023 00:20 DillerUnlimited#8
Quote:
Originally Posted by FremdeZahnbürste View Post
Which source do you use

Season 7-10 Server RedaAmrGad 1379

??
11/26/2023 23:24 DillerUnlimited#9
No One Can Help
12/08/2023 07:15 manrique1318#10
when starting the client it exits to log in again, how do I fix that problem?