Small Refactor of Session Bad Sport Spoofing (#3134)
This commit is contained in:
parent
7f8977adcf
commit
059f831c52
@ -703,12 +703,11 @@ namespace big
|
|||||||
int session_language = 0;
|
int session_language = 0;
|
||||||
bool spoof_session_player_count = false;
|
bool spoof_session_player_count = false;
|
||||||
int session_player_count = 25;
|
int session_player_count = 25;
|
||||||
bool spoof_session_bad_sport_status = false;
|
int spoof_session_bad_sport_status = 0;
|
||||||
bool session_bad_sport = false;
|
|
||||||
|
|
||||||
bool voice_chat_audio = false;
|
bool voice_chat_audio = false;
|
||||||
|
|
||||||
NLOHMANN_DEFINE_TYPE_INTRUSIVE(spoofing, hide_from_player_list, spoof_blip, blip_type, spoof_rank, rank, spoof_job_points, job_points, spoof_kd_ratio, kd_ratio, spoof_bad_sport, badsport_type, spoof_player_model, player_model, spoof_cheater, spoof_hide_god, spoof_hide_veh_god, spoof_hide_spectate, spoof_crew_data, crew_tag, rockstar_crew, square_crew_tag, spoof_session_region_type, session_region_type, spoof_session_language, session_language, spoof_session_player_count, session_player_count, spoof_session_bad_sport_status, session_bad_sport, voice_chat_audio)
|
NLOHMANN_DEFINE_TYPE_INTRUSIVE(spoofing, hide_from_player_list, spoof_blip, blip_type, spoof_rank, rank, spoof_job_points, job_points, spoof_kd_ratio, kd_ratio, spoof_bad_sport, badsport_type, spoof_player_model, player_model, spoof_cheater, spoof_hide_god, spoof_hide_veh_god, spoof_hide_spectate, spoof_crew_data, crew_tag, rockstar_crew, square_crew_tag, spoof_session_region_type, session_region_type, spoof_session_language, session_language, spoof_session_player_count, session_player_count, spoof_session_bad_sport_status, voice_chat_audio)
|
||||||
} spoofing{};
|
} spoofing{};
|
||||||
|
|
||||||
struct vehicle
|
struct vehicle
|
||||||
@ -1037,6 +1036,13 @@ namespace big
|
|||||||
NLOHMANN_DEFINE_TYPE_INTRUSIVE(session_browser, region_filter_enabled, region_filter, language_filter_enabled, language_filter, player_count_filter_enabled, player_count_filter_minimum, player_count_filter_maximum, sort_method, sort_direction, replace_game_matchmaking, pool_filter_enabled, pool_filter)
|
NLOHMANN_DEFINE_TYPE_INTRUSIVE(session_browser, region_filter_enabled, region_filter, language_filter_enabled, language_filter, player_count_filter_enabled, player_count_filter_minimum, player_count_filter_maximum, sort_method, sort_direction, replace_game_matchmaking, pool_filter_enabled, pool_filter)
|
||||||
} session_browser{};
|
} session_browser{};
|
||||||
|
|
||||||
|
struct session_protection
|
||||||
|
{
|
||||||
|
int block_join_reason = 0;
|
||||||
|
|
||||||
|
NLOHMANN_DEFINE_TYPE_INTRUSIVE(session_protection, block_join_reason)
|
||||||
|
} session_protection{};
|
||||||
|
|
||||||
struct ugc
|
struct ugc
|
||||||
{
|
{
|
||||||
bool infinite_model_memory;
|
bool infinite_model_memory;
|
||||||
|
@ -14,13 +14,11 @@ namespace big
|
|||||||
if (g.spoofing.spoof_session_player_count)
|
if (g.spoofing.spoof_session_player_count)
|
||||||
attributes->m_param_values[7] = g.spoofing.session_player_count;
|
attributes->m_param_values[7] = g.spoofing.session_player_count;
|
||||||
|
|
||||||
if (g.spoofing.spoof_session_bad_sport_status)
|
if (g.spoofing.spoof_session_bad_sport_status == 1)
|
||||||
{
|
attributes->m_param_values[0] |= (1 << 14); // Bad Sport
|
||||||
if (g.spoofing.session_bad_sport)
|
|
||||||
attributes->m_param_values[0] |= (1 << 14);
|
if (g.spoofing.spoof_session_bad_sport_status == 2)
|
||||||
else
|
attributes->m_param_values[0] &= ~(1 << 14); // Good Sport
|
||||||
attributes->m_param_values[0] &= ~(1 << 14);
|
|
||||||
}
|
|
||||||
|
|
||||||
return g_hooking->get_original<hooks::send_session_matchmaking_attributes>()(a1, info, session_id, use_session_id, attributes);
|
return g_hooking->get_original<hooks::send_session_matchmaking_attributes>()(a1, info, session_id, use_session_id, attributes);
|
||||||
}
|
}
|
||||||
|
@ -150,11 +150,11 @@ namespace big
|
|||||||
ImGui::InputInt("###player_count", &g.spoofing.session_player_count);
|
ImGui::InputInt("###player_count", &g.spoofing.session_player_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::Checkbox("VIEW_SPOOFING_SPOOF_SESSION_BAD_SPORT_STATUS"_T.data(), &g.spoofing.spoof_session_bad_sport_status);
|
components::small_text("VIEW_SPOOFING_SPOOF_SESSION_BAD_SPORT_STATUS"_T);
|
||||||
if (g.spoofing.spoof_session_bad_sport_status)
|
ImGui::RadioButton("VIEW_SPOOFING_SPORT_DEFAULT"_T.data(), &g.spoofing.spoof_session_bad_sport_status, 0);
|
||||||
{
|
ImGui::SameLine();
|
||||||
ImGui::SameLine();
|
ImGui::RadioButton("VIEW_SPOOFING_SPORT_GOOD"_T.data(), &g.spoofing.spoof_session_bad_sport_status, 1);
|
||||||
ImGui::Checkbox("VIEW_SPOOFING_BADSPORT"_T.data(), &g.spoofing.session_bad_sport);
|
ImGui::SameLine();
|
||||||
}
|
ImGui::RadioButton("VIEW_SPOOFING_SPORT_BAD"_T.data(), &g.spoofing.spoof_session_bad_sport_status, 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user