mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-25 14:52:30 +01:00
III/VC: Corrected randomness of CPed::Chat
Makes pedestrians less likely to initiate a chat, matching the PS2 odds (they were too chatty on PC).
This commit is contained in:
parent
96bc50ee26
commit
ccf61157fb
@ -163,7 +163,8 @@ namespace Rand16bit
|
|||||||
return bottomBits | topBit;
|
return bottomBits | topBit;
|
||||||
}
|
}
|
||||||
|
|
||||||
HOOK_EACH_FUNC(Rand, orgRand, rand16bit);
|
HOOK_EACH_FUNC_CTR(Rand_Script, 0, orgRand, rand16bit);
|
||||||
|
HOOK_EACH_FUNC_CTR(Rand_PedChat, 1, orgRand, rand16bit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -329,19 +330,35 @@ namespace Common {
|
|||||||
TXN_CATCH();
|
TXN_CATCH();
|
||||||
|
|
||||||
|
|
||||||
// Make script randomness 16-bit, like on PS2
|
// Fix various randomness factors expecting 16-bit rand()
|
||||||
try
|
|
||||||
{
|
{
|
||||||
|
// Treat each instance separately
|
||||||
using namespace Rand16bit;
|
using namespace Rand16bit;
|
||||||
|
|
||||||
std::array<void*, 2> rands = {
|
// Script randomness
|
||||||
get_pattern("E8 ? ? ? ? 0F B7 C0 89 06"),
|
try
|
||||||
get_pattern("E8 ? ? ? ? 25 FF FF 00 00 89 84 24 ? ? ? ? 30 C0"),
|
{
|
||||||
};
|
std::array<void*, 2> rands = {
|
||||||
|
get_pattern("E8 ? ? ? ? 0F B7 C0 89 06"),
|
||||||
|
get_pattern("E8 ? ? ? ? 25 FF FF 00 00 89 84 24 ? ? ? ? 30 C0"),
|
||||||
|
};
|
||||||
|
|
||||||
HookEach_Rand(rands, InterceptCall);
|
HookEach_Rand_Script(rands, InterceptCall);
|
||||||
|
}
|
||||||
|
TXN_CATCH();
|
||||||
|
|
||||||
|
// CPed::Chat
|
||||||
|
try
|
||||||
|
{
|
||||||
|
std::array<void*, 2> rands = {
|
||||||
|
get_pattern("E8 ? ? ? ? 66 3D 00 02"),
|
||||||
|
get_pattern("E8 ? ? ? ? 66 83 F8 14"),
|
||||||
|
};
|
||||||
|
|
||||||
|
HookEach_Rand_PedChat(rands, InterceptCall);
|
||||||
|
}
|
||||||
|
TXN_CATCH();
|
||||||
}
|
}
|
||||||
TXN_CATCH();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void III_VC_SetDelayedPatchesFunc( void(*func)() )
|
void III_VC_SetDelayedPatchesFunc( void(*func)() )
|
||||||
|
Loading…
Reference in New Issue
Block a user