Merge pull request #187 from andiabrudan/infinite_stamina_fix

Fix unable to sprint issue
This commit is contained in:
Callow
2022-07-02 17:50:35 +03:00
committed by GitHub

View File

@ -27,8 +27,8 @@ namespace cheat::feature
ConfigWidget("Enabled", f_Enabled, "Enables infinite stamina option."); ConfigWidget("Enabled", f_Enabled, "Enables infinite stamina option.");
ConfigWidget("Move Sync Packet Replacement", f_PacketReplacement, ConfigWidget("Move Sync Packet Replacement", f_PacketReplacement,
"This mode prevents sending server packets with stamina cost actions,\n" \ "This mode prevents sending server packets with stamina cost actions,\n"
"e.g. swim, climb, sprint, etc.\n" \ "e.g. swim, climb, sprint, etc.\n"
"NOTE: This is may be more safe than the standard method. More testing is needed."); "NOTE: This is may be more safe than the standard method. More testing is needed.");
} }
@ -55,11 +55,20 @@ namespace cheat::feature
bool InfiniteStamina::OnPropertySet(app::PropType__Enum propType) bool InfiniteStamina::OnPropertySet(app::PropType__Enum propType)
{ {
using PT = app::PropType__Enum; using PT = app::PropType__Enum;
static bool override_cheat = true;
return !f_Enabled || f_PacketReplacement || if (propType == PT::PROP_CUR_TEMPORARY_STAMINA)
override_cheat = true;
const bool result = !f_Enabled || f_PacketReplacement || override_cheat ||
(propType != PT::PROP_MAX_STAMINA && (propType != PT::PROP_MAX_STAMINA &&
propType != PT::PROP_CUR_PERSIST_STAMINA && propType != PT::PROP_CUR_PERSIST_STAMINA &&
propType != PT::PROP_CUR_TEMPORARY_STAMINA); propType != PT::PROP_CUR_TEMPORARY_STAMINA);
if (propType == PT::PROP_MAX_STAMINA)
override_cheat = false;
return result;
} }
// Infinite stamina packet mode. // Infinite stamina packet mode.