pickup combining, almost finish shadow stones, fix some bugs with gadgets, clean up some code.
This commit is contained in:
Milxnor
2023-05-02 23:48:05 -04:00
parent 3b0f0ad4e1
commit f49f166c2d
27 changed files with 574 additions and 216 deletions

View File

@@ -279,6 +279,15 @@ void Addresses::FindAll()
LOG_INFO(LogDev, "Finding FreeArrayOfEntries");
Addresses::FreeArrayOfEntries = FindFreeArrayOfEntries();
LOG_INFO(LogDev, "Finding UpdateTrackedAttributesLea");
Addresses::UpdateTrackedAttributesLea = FindUpdateTrackedAttributesLea();
LOG_INFO(LogDev, "Finding CombinePickupLea");
Addresses::CombinePickupLea = FindCombinePickupLea();
LOG_INFO(LogDev, "Finding CreateBuildingActorCallForDeco");
Addresses::CreateBuildingActorCallForDeco = FindCreateBuildingActorCallForDeco();
LOG_INFO(LogDev, "Finished finding!");
}
@@ -341,6 +350,9 @@ void Addresses::Print()
LOG_INFO(LogDev, "EnterAircraft: 0x{:x}", EnterAircraft - Base);
LOG_INFO(LogDev, "SetTimer: 0x{:x}", SetTimer - Base);
LOG_INFO(LogDev, "PickupInitialize: 0x{:x}", PickupInitialize - Base);
LOG_INFO(LogDev, "UpdateTrackedAttributesLea: 0x{:x}", UpdateTrackedAttributesLea - Base);
LOG_INFO(LogDev, "CombinePickupLea: 0x{:x}", CombinePickupLea - Base);
LOG_INFO(LogDev, "CreateBuildingActorCallForDeco: 0x{:x}", CreateBuildingActorCallForDeco - Base);
}
void Offsets::FindAll()