Skip to content

Commit

Permalink
Merge pull request #87 from Dyshay/update-1.32.1
Browse files Browse the repository at this point in the history
update of 1.32.1
  • Loading branch information
Dyshay authored Aug 30, 2020
2 parents f5ac2bf + 7a070f3 commit 51681da
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 29 deletions.
2 changes: 1 addition & 1 deletion Comun/Frames/Autentificacion/AccountLogin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void GetWelcomeKeyAsync(TcpClient prmClient, string prmPacket)

account.AccountState = AccountStates.CONNECTED;
account.welcomeKey = prmPacket.Substring(2);
prmClient.SendPacket("1.31.2");
prmClient.SendPacket("1.32.1");
prmClient.SendPacket(prmClient.account.accountConfig.accountUsername + "\n" + Hash.Crypt_Password(prmClient.account.accountConfig.accountPassword, prmClient.account.welcomeKey));
prmClient.SendPacket("Af");
}
Expand Down
11 changes: 2 additions & 9 deletions Forms/GestionCuentas.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Otros/Account.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Account(AccountConfig prmAccountConfig)
public void Connect()
{
connexion = new TcpClient(this);
connexion.ConnectToServer(Dns.GetHostAddresses("dofus-co-retro-f9e1b368375d4153.elb.eu-west-1.amazonaws.com"), GlobalConfig.loginPort);
connexion.ConnectToServer(Dns.GetHostAddresses("54.194.75.38"), GlobalConfig.loginPort);
}

public void Disconnect()
Expand Down
22 changes: 4 additions & 18 deletions Utilities/Config/AccountConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,10 @@ public int Get_Server_ID()
return 601;
case "Henual":
return 602;
case "Nabur":
return 603;
case "Arty":
return 604;
case "Algathe":
return 605;
case "Hogmeiser":
return 606;
case "Droupik":
return 607;
case "Ayuto":
return 608;
case "Bilby":
return 609;
case "Clustus":
return 610;
case "Issering":
return 611;
case "Crail":
return 613;
case "Galgarion":
return 614;
default:
return 601;
}
Expand Down

0 comments on commit 51681da

Please sign in to comment.