-
Notifications
You must be signed in to change notification settings - Fork 318
Update for 1.72 #766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for 1.72 #766
Conversation
src/game/gta/data/Vehicles.hpp
Outdated
| "drift3000"_J, | ||
| "driftsentinel2"_J, | ||
| "fmj2"_J, | ||
| "gtr750"_J, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"gt750"_J,
gtr750 dont work.
src/game/pointers/Pointers.cpp
Outdated
| }); | ||
|
|
||
| constexpr auto handleJoinRequestIgnorePoolPatchPtrn = Pattern<"83 FD 05 ? ? ? 00 00 00 48 8B">("HandleJoinRequestIgnorePoolPatch"); | ||
| /* constexpr auto handleJoinRequestIgnorePoolPatchPtrn = Pattern<"83 FD 05 ? ? ? 00 00 00 48 8B">("HandleJoinRequestIgnorePoolPatch"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated this pattern and the patch, but didn't test it.
constexpr auto handleJoinRequestIgnorePoolPatchPtrn = Pattern<"4C 8D 34 C0 ? ? ? ? 74">("HandleJoinRequestIgnorePoolPatch");
scanner.Add(handleJoinRequestIgnorePoolPatchPtrn, [this](PointerCalculator ptr) {
// CMP ECX, ECX
HandleJoinRequestIgnorePoolPatch = BytePatches::Add(ptr.Add(4).As<void*>(), std::to_array<std::uint8_t>({0x39, 0xC9, 0x90, 0x90}));
});Do people even use cheater pool?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
working
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i added thx sir :-)
|
How do i use this? |
I have the same question |
|
|
👍👍👍Nice update |
What exactly is the problem? |
He will always join the public Session even if you choose soloSession. |
src\game\gta\Network.cpp |
|
src\types\script\globals\FreemodeGeneral.hpp D:\Source\YimMenuV2\src\game\backend\PersonalVehicles.cpp D:\Source\YimMenuV2\src\game\features\recovery\DailyActivities.cpp D:\Source\YimMenuV2\src\game\features\vehicle\CallMechanic.cpp This can fix most vehicle-related issues. The current problem is that the hangar and bunker warehouse names in the vehicle warehouse now show as null. It is very likely that the GPBD_FM_Entry structure is also corrupted. |
No description provided.