Problem with Act4

07/06/2020 12:27 Price-H16#1
hello i have one problem with act4 after connecting to act4 server it instantly kicked me out

i try change ports open ports but nothing
[Only registered and activated users can see links. Click Here To Register...]
07/06/2020 16:36 Price-H16#2
Solved
07/08/2020 18:25 IceTrailer#3
Could you please share your solution with all guys who might have this problem in the future?
07/09/2020 01:05 VipexYTL#4
Just do this like me.
// Load account by given SessionId
if (Session.Account == null)
{
bool hasRegisteredAccountLogin = true;
AccountDTO account = null;
if (loginPacketParts.Length > 4)
{
if (loginPacketParts.Length > 7 && loginPacketParts[4] == "DAC"
&& loginPacketParts[9] == "CrossServerAuthenticate")
{
isCrossServerLogin = true;
account = DAOFactory.AccountDAO.LoadByName(loginPacketParts[5]);
}
else
{
account = DAOFactory.AccountDAO.LoadByName(loginPacketParts[4]);
}
}
07/10/2020 08:44 IceTrailer#5
#closed