update opcodes

This commit is contained in:
KimLS 2026-03-26 13:01:24 -07:00
parent 780dcdab5a
commit aa1c481f65
2 changed files with 10 additions and 10 deletions

View File

@ -70,15 +70,15 @@ void CheckSteamLatestOpcodeFile(const std::string &path)
fprintf(f, "OP_Login=0x0002\n");
fprintf(f, "OP_ServerListRequest=0x0004\n");
fprintf(f, "OP_PlayEverquestRequest=0x000d\n");
fprintf(f, "OP_PlayEverquestResponse=0x0022\n");
fprintf(f, "OP_PlayEverquestResponse=0x0023\n");
fprintf(f, "OP_ChatMessage=0x0017\n");
fprintf(f, "OP_LoginAccepted=0x0018\n");
fprintf(f, "OP_ServerListResponse=0x0019\n");
fprintf(f, "OP_Poll=0x0029\n");
fprintf(f, "OP_LoginAccepted=0x0019\n");
fprintf(f, "OP_ServerListResponse=0x001a\n");
fprintf(f, "OP_Poll=0x002a\n");
fprintf(f, "OP_EnterChat=0x000f\n");
fprintf(f, "OP_PollResponse=0x0011\n");
fprintf(f, "OP_SystemFingerprint=0x0016\n");
fprintf(f, "OP_ExpansionList=0x0030\n");
fprintf(f, "OP_ExpansionList=0x0031\n");
fclose(f);
}
}

View File

@ -3,12 +3,12 @@ OP_SessionReady=0x0001
OP_Login=0x0002
OP_ServerListRequest=0x0004
OP_PlayEverquestRequest=0x000d
OP_PlayEverquestResponse=0x0022
OP_PlayEverquestResponse=0x0023
OP_ChatMessage=0x0017
OP_LoginAccepted=0x0018
OP_ServerListResponse=0x0019
OP_Poll=0x0029
OP_LoginAccepted=0x0019
OP_ServerListResponse=0x001a
OP_Poll=0x002a
OP_EnterChat=0x000f
OP_PollResponse=0x0011
OP_SystemFingerprint=0x0016
OP_ExpansionList=0x0030
OP_ExpansionList=0x0031