Skip to content

Commit bb98e50

Browse files
committed
Fix RangedReady
1 parent 194bbc8 commit bb98e50

2 files changed

Lines changed: 33 additions & 32 deletions

File tree

include/eqlib/game/EverQuest.h

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -460,34 +460,35 @@ struct [[offsetcomments]] EverQuestinfo
460460
/*0x00528*/ int Heroic50Slots;
461461
/*0x0052c*/ int Heroic85Slots;
462462
/*0x00530*/ int Heroic100Slots;
463-
/*0x00534*/ bool bAutoIdentify;
464-
/*0x00535*/ bool bNameGen;
465-
/*0x00536*/ bool bGibberish;
466-
/*0x00538*/ int Locale;
467-
/*0x0053c*/ uint8_t UpdateControlled;
468-
/*0x0053d*/ uint8_t UpdateLocal;
469-
/*0x0053e*/ uint8_t EnterZone;
470-
/*0x0053f*/ uint8_t ExitGame;
471-
/*0x00540*/ int EnterZoneReason;
472-
/*0x00544*/ bool UseVoiceMacros;
473-
/*0x00548*/ float StrafeRate;
474-
/*0x0054c*/ float MoveDownSpeed;
475-
/*0x00550*/ char Motd[1024];
476-
/*0x00950*/ EQZoneIndex ZoneID;
477-
/*0x00954*/ bool PrimaryAttackReady;
478-
/*0x00955*/ bool SecondaryAttackReady;
479-
/*0x00958*/ uint32_t AutosaveCounter;
480-
/*0x0095c*/ uint32_t StartAFK;
481-
/*0x00960*/ uint8_t MyVehicleFound;
482-
/*0x00961*/ uint8_t ZoneFindingVehicle;
483-
/*0x00962*/ uint8_t ForceSendVehicleUpdate;
484-
/*0x00964*/ ZONE_REQ_STATUS GotSafeCoords;
485-
/*0x00968*/ int ZoningTo;
486-
/*0x0096c*/ char AFKMessage[256];
487-
/*0x00a6c*/ bool bLogging;
488-
/*0x00a6d*/ char LogFile[50];
489-
/*0x00aa0*/ uint16_t LogInterval;
490-
/*0x00aa2*/ uint8_t Controlled;
463+
/*0x00534*/ int Heroic110Slots;
464+
/*0x00538*/ bool bAutoIdentify;
465+
/*0x00539*/ bool bNameGen;
466+
/*0x0053a*/ bool bGibberish;
467+
/*0x0053c*/ int Locale;
468+
/*0x00540*/ uint8_t UpdateControlled;
469+
/*0x00541*/ uint8_t UpdateLocal;
470+
/*0x00542*/ uint8_t EnterZone;
471+
/*0x00543*/ uint8_t ExitGame;
472+
/*0x00544*/ int EnterZoneReason;
473+
/*0x00548*/ bool UseVoiceMacros;
474+
/*0x0054c*/ float StrafeRate;
475+
/*0x00550*/ float MoveDownSpeed;
476+
/*0x00554*/ char Motd[1024];
477+
/*0x00954*/ EQZoneIndex ZoneID;
478+
/*0x00958*/ bool PrimaryAttackReady;
479+
/*0x00959*/ bool SecondaryAttackReady;
480+
/*0x0095c*/ uint32_t AutosaveCounter;
481+
/*0x00960*/ uint32_t StartAFK;
482+
/*0x00964*/ uint8_t MyVehicleFound;
483+
/*0x00965*/ uint8_t ZoneFindingVehicle;
484+
/*0x00966*/ uint8_t ForceSendVehicleUpdate;
485+
/*0x00968*/ ZONE_REQ_STATUS GotSafeCoords;
486+
/*0x0096c*/ int ZoningTo;
487+
/*0x00970*/ char AFKMessage[256];
488+
/*0x00a70*/ bool bLogging;
489+
/*0x00a71*/ char LogFile[50];
490+
/*0x00aa4*/ uint16_t LogInterval;
491+
/*0x00aa6*/ uint8_t Controlled;
491492
/*0x00aa8*/ uint64_t ExpansionsFlagBitmask; // EQExpansionOwned
492493
/*0x00ab0*/ bool NoNameApprove;
493494
/*0x00ab1*/ bool AttackOnAssist;

include/eqlib/graphics/GraphicsEngine.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,10 @@ struct [[offsetcomments]] SDeviceInputProxy
241241

242242
struct [[offsetcomments]] EventData
243243
{
244-
/*0x0000*/ char Unknown2[0x3e6];
245-
/*0x03e6*/ uint8_t CurrentEventID;
246-
/*0x03e7*/ uint8_t CurrentEventStatus;
247-
/*0x03e8*/ int Unknown3[0x5c7];
244+
/*0x0000*/ char Unknown2[0x3ea];
245+
/*0x03ea*/ uint8_t CurrentEventID;
246+
/*0x03eb*/ uint8_t CurrentEventStatus;
247+
/*0x03ec*/ int Unknown3[0x5c6];
248248
/*0x1b04*/ uint8_t LastEventID;
249249
/*0x1b05*/ uint8_t LastEventStatus;
250250
/*0x1b08*/

0 commit comments

Comments
 (0)