Here are all of the previous opcode fixes:
*/common/header files
eq_opcode.h Line 316
#define OP_EnvDamage 0x00e9
change to
#define OP_EnvDamage 0x00e8
-----------------------------
eq_opcode.h
Line 302
#define OP_PetitionQue 0x0086
change to
#define OP_PetitionQue 0x01eb
-------------------------------
eq_opcode.h
Line 165
#define OP_GroupAcknowledge 0x0271
and
Line 171
#define OP_GroupFollow2 0x0270
-----------------------------
eq_opcode.h
Line 126
#define OP_Bazaar 0x01e7
change to
#define OP_Bazaar 0x01e6
Line 125
#define OP_Trader 0x01e8
change to
#define OP_Trader 0x01e7
Line 131
#define OP_TraderShop 0x01eb
change to
#define OP_TraderShop 0x01ea
-----------------------------------
Client process.cpp
Line 4018
case OP_AAAction: {
#ifdef GUILDWARS
break;
#endif
Remove
#ifdef GUILDWARS
break;
#endif
eq_opcode.h
line 99
#define OP_AAAction 0x01e9
Change to
#define OP_AAAction 0x01e8
you should no longer get any opcode error's when a player presses the + or - in there Alt Adv window.
Do this to fix berserkers not getting XP.
Client.cpp
Line 1452
war cle pal ran shd dru mnk brd rog shm nec wiz mag enc bst
float class_modifiers[15] = { 9.0f, 10.0f, 14.0f, 14.0f, 14.0f, 10.0f, 12.0f, 14.0f, 9.05f, 10.0f, 11.0f, 11.0f, 11.0f, 11.0f, 10.0f};
change to
//war cle pal ran shd dru mnk brd rog shm nec wiz mag enc bst Bers
float class_modifiers[16] = { 9.0f, 10.0f, 14.0f, 14.0f, 14.0f, 10.0f, 12.0f, 14.0f, 9.05f, 10.0f, 11.0f, 11.0f, 11.0f, 11.0f, 10.0f, 10.0f};
Do this to fix those Pesky unknown opcode 0x00fb errors(Thanks to scorpious2k for this one)
eq_opcode.h
Line 322
OP_Save 0x00fc
Change to
OP_Save 0x00fb
-----------------------------------------------
|