mirror of
https://github.com/edubart/otclient.git
synced 2025-11-30 15:26:49 +01:00
Fix 7.60 login protocol
This commit is contained in:
@@ -188,9 +188,5 @@ ClientOpcodes = {
|
|||||||
ClientMarketCreate = 246, -- 944
|
ClientMarketCreate = 246, -- 944
|
||||||
ClientMarketCancel = 247, -- 944
|
ClientMarketCancel = 247, -- 944
|
||||||
ClientMarketAccept = 248, -- 944
|
ClientMarketAccept = 248, -- 944
|
||||||
ClientAnswerModalDialog = 249, -- 960
|
ClientAnswerModalDialog = 249 -- 960
|
||||||
|
|
||||||
-- 760
|
|
||||||
ClientEnterAccount760 = 513,
|
|
||||||
ClientEnterGame760 = 522
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,12 +27,8 @@ end
|
|||||||
|
|
||||||
function ProtocolLogin:sendLoginPacket()
|
function ProtocolLogin:sendLoginPacket()
|
||||||
local msg = OutputMessage.create()
|
local msg = OutputMessage.create()
|
||||||
if g_game.getProtocolVersion() == 760 then
|
|
||||||
msg:addU16(ClientOpcodes.ClientEnterAccount760)
|
|
||||||
else
|
|
||||||
msg:addU8(ClientOpcodes.ClientEnterAccount)
|
msg:addU8(ClientOpcodes.ClientEnterAccount)
|
||||||
msg:addU16(g_game.getOs())
|
msg:addU16(g_game.getOs())
|
||||||
end
|
|
||||||
|
|
||||||
msg:addU16(g_game.getProtocolVersion())
|
msg:addU16(g_game.getProtocolVersion())
|
||||||
|
|
||||||
@@ -50,10 +46,9 @@ function ProtocolLogin:sendLoginPacket()
|
|||||||
|
|
||||||
local offset = msg:getMessageSize()
|
local offset = msg:getMessageSize()
|
||||||
|
|
||||||
|
if g_game.getProtocolVersion() >= 800 then
|
||||||
-- first RSA byte must be 0
|
-- first RSA byte must be 0
|
||||||
msg:addU8(0)
|
msg:addU8(0)
|
||||||
|
|
||||||
if g_game.getProtocolVersion() >= 800 then
|
|
||||||
-- xtea key
|
-- xtea key
|
||||||
self:generateXteaKey()
|
self:generateXteaKey()
|
||||||
local xteaKey = self:getXteaKey()
|
local xteaKey = self:getXteaKey()
|
||||||
|
|||||||
@@ -52,16 +52,8 @@ void ProtocolGame::sendLoginPacket(uint challengeTimestamp, uint8 challengeRando
|
|||||||
{
|
{
|
||||||
OutputMessagePtr msg(new OutputMessage);
|
OutputMessagePtr msg(new OutputMessage);
|
||||||
|
|
||||||
if(g_game.getProtocolVersion() == 760)
|
|
||||||
{
|
|
||||||
msg->addU16(0x20A);
|
|
||||||
msg->addU8(g_game.getOs());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
msg->addU8(Proto::ClientPendingGame);
|
msg->addU8(Proto::ClientPendingGame);
|
||||||
msg->addU16(g_game.getOs());
|
msg->addU16(g_game.getOs());
|
||||||
}
|
|
||||||
msg->addU16(g_game.getProtocolVersion());
|
msg->addU16(g_game.getProtocolVersion());
|
||||||
|
|
||||||
if(g_game.getProtocolVersion() >= 971) {
|
if(g_game.getProtocolVersion() >= 971) {
|
||||||
|
|||||||
Reference in New Issue
Block a user