WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Show only Applicable Skins

SomeGuy19

Always Legit.
Newbie

SomeGuy19

Always Legit.
Newbie
Status
Offline
Joined
Jun 13, 2019
Messages
19
Reaction score
4
Hi. I just making our version of M0ne0N and i want to show only applicable skins in skin changer. Like M9 Bayonet - only M9 Bayonet skins, not like now that M9 Bayonet - Asiimov :D And on Gloves too. Can someone help how to do this ?

Code:
if (selected_entry.definition_index != GLOVE_T_SIDE) {
            ImGui::Combo("Paint Kit", &selected_entry.paint_kit_vector_index, [](void* data, int idx, const char** out_text) {
                *out_text = k_skins[idx].name.c_str();
                return true;
                }, nullptr, k_skins.size(), 20);
            selected_entry.paint_kit_index = k_skins[selected_entry.paint_kit_vector_index].id;
        }
        else {
            ImGui::Combo("Paint Kit", &selected_entry.paint_kit_vector_index, [](void* data, int idx, const char** out_text) {
                *out_text = k_gloves[idx].name.c_str();
                return true;
                }, nullptr, k_gloves.size(), 20);
            selected_entry.paint_kit_index = k_gloves[selected_entry.paint_kit_vector_index].id;
        }
 

rev

Legend
Member

rev

Legend
Member
Status
Offline
Joined
Sep 17, 2019
Messages
113
Reaction score
91
Hi. I just making our version of M0ne0N and i want to show only applicable skins in skin changer. Like M9 Bayonet - only M9 Bayonet skins, not like now that M9 Bayonet - Asiimov :D And on Gloves too. Can someone help how to do this ?

Code:
if (selected_entry.definition_index != GLOVE_T_SIDE) {
            ImGui::Combo("Paint Kit", &selected_entry.paint_kit_vector_index, [](void* data, int idx, const char** out_text) {
                *out_text = k_skins[idx].name.c_str();
                return true;
                }, nullptr, k_skins.size(), 20);
            selected_entry.paint_kit_index = k_skins[selected_entry.paint_kit_vector_index].id;
        }
        else {
            ImGui::Combo("Paint Kit", &selected_entry.paint_kit_vector_index, [](void* data, int idx, const char** out_text) {
                *out_text = k_gloves[idx].name.c_str();
                return true;
                }, nullptr, k_gloves.size(), 20);
            selected_entry.paint_kit_index = k_gloves[selected_entry.paint_kit_vector_index].id;
        }
you should make an

if statement.

example:
if (menu.M9bayonet.Selected)
{
(open new combobox)
bla bla bla bla
}// this is a poor way to make it because im just bored as hell. dont even comment l0l
 
Top