• Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

Scan for Mods - Source

SwizzyPlays

Active Poster
CC Dev Team
Active Member

SCAN PLAYERS FOR MODS


So since alot of people have asked me how to scan players
for mods without sockstress's plugin and/or equivalent.
This is how I do it and works on most people. I chose common
protections to target. This 100% works and I use it in my menu Glitchinng.

What this does is first check for a modified player model, then checks for grouphack
protection, then sets them on fire and checks for fire protection. Prints feedback



Code:
                        Ped networkPlayerPedModel;
                        GET_CHAR_MODEL(networkPlayerPed, &networkPlayerPedModel);
                        if (networkPlayerPedModel != PED_M_Y_MULTIPLAYER && networkPlayerPedModel != PED_F_Y_MULTIPLAYER){
                            print("~BLIP_76~ ~y~Player Model Changed ~g~Player is a Modder");
                            ModderFound = true;
                            return;
                        }
                        int charammo, ammomax, gund;
                        if(IS_PED_IN_GROUP(networkPlayerPed)){
                            print("~BLIP_76~ ~y~Player is in a group ~g~Player is a modder");
                            ModderFound = true;
                        }
                        START_CHAR_FIRE(networkPlayerPed); 
                        WAIT(2000);
                        if(!IS_CHAR_ON_FIRE(networkPlayerPed)){
                            START_CHAR_FIRE(networkPlayerPed); 
                            WAIT(1200);
                            if(!IS_CHAR_ON_FIRE(networkPlayerPed)){   
                                print("~BLIP_76~ ~y~Fire Protection ~g~Player is a modder");
                                ModderFound = true;
                            }
                        }
                        if(!ModderFound) print("~BLIP_76~ ~r~Player doesn't have mods");
                        WAIT(1000);
                        ModderFound = false;
 
Good job maybe you can even use freeze gun and stuff like that stuff that are always on in md I never switch off protection lol
 
SCAN PLAYERS FOR MODS


So since alot of people have asked me how to scan players
for mods without sockstress's plugin and/or equivalent.
This is how I do it and works on most people. I chose common
protections to target. This 100% works and I use it in my menu Glitchinng.

What this does is first check for a modified player model, then checks for grouphack
protection, then sets them on fire and checks for fire protection. Prints feedback



Code:
                        Ped networkPlayerPedModel;
                        GET_CHAR_MODEL(networkPlayerPed, &networkPlayerPedModel);
                        if (networkPlayerPedModel != PED_M_Y_MULTIPLAYER && networkPlayerPedModel != PED_F_Y_MULTIPLAYER){
                            print("~BLIP_76~ ~y~Player Model Changed ~g~Player is a Modder");
                            ModderFound = true;
                            return;
                        }
                        int charammo, ammomax, gund;
                        if(IS_PED_IN_GROUP(networkPlayerPed)){
                            print("~BLIP_76~ ~y~Player is in a group ~g~Player is a modder");
                            ModderFound = true;
                        }
                        START_CHAR_FIRE(networkPlayerPed);
                        WAIT(2000);
                        if(!IS_CHAR_ON_FIRE(networkPlayerPed)){
                            START_CHAR_FIRE(networkPlayerPed);
                            WAIT(1200);
                            if(!IS_CHAR_ON_FIRE(networkPlayerPed)){  
                                print("~BLIP_76~ ~y~Fire Protection ~g~Player is a modder");
                                ModderFound = true;
                            }
                        }
                        if(!ModderFound) print("~BLIP_76~ ~r~Player doesn't have mods");
                        WAIT(1000);
                        ModderFound = false;
looks good bro
 
SCAN PLAYERS FOR MODS


So since alot of people have asked me how to scan players
for mods without sockstress's plugin and/or equivalent.
This is how I do it and works on most people. I chose common
protections to target. This 100% works and I use it in my menu Glitchinng.

What this does is first check for a modified player model, then checks for grouphack
protection, then sets them on fire and checks for fire protection. Prints feedback



Code:
                        Ped networkPlayerPedModel;
                        GET_CHAR_MODEL(networkPlayerPed, &networkPlayerPedModel);
                        if (networkPlayerPedModel != PED_M_Y_MULTIPLAYER && networkPlayerPedModel != PED_F_Y_MULTIPLAYER){
                            print("~BLIP_76~ ~y~Player Model Changed ~g~Player is a Modder");
                            ModderFound = true;
                            return;
                        }
                        int charammo, ammomax, gund;
                        if(IS_PED_IN_GROUP(networkPlayerPed)){
                            print("~BLIP_76~ ~y~Player is in a group ~g~Player is a modder");
                            ModderFound = true;
                        }
                        START_CHAR_FIRE(networkPlayerPed);
                        WAIT(2000);
                        if(!IS_CHAR_ON_FIRE(networkPlayerPed)){
                            START_CHAR_FIRE(networkPlayerPed);
                            WAIT(1200);
                            if(!IS_CHAR_ON_FIRE(networkPlayerPed)){  
                                print("~BLIP_76~ ~y~Fire Protection ~g~Player is a modder");
                                ModderFound = true;
                            }
                        }
                        if(!ModderFound) print("~BLIP_76~ ~r~Player doesn't have mods");
                        WAIT(1000);
                        ModderFound = false;
Or you just check for godmode. Also, every player is in a group. Thats why grouphack freezes people, because you are removing them from a group. No group = freeze
 
Good job maybe you can even use freeze gun and stuff like that stuff that are always on in md I never switch off protection lol
No cause you would possibly freeze non-modders
checking godmod and proof flags from player or vehicle would be gud too

Or you just check for godmode. Also, every player is in a group. Thats why grouphack freezes people, because you are removing them from a group. No group = freeze
If you two would have read the post this was for people who don't know how to do that or have ofw and can't use plugins. Btw this works 100% fine. If you got grouphack protection on this will return that native back true. I know this because I have TESTED it. I don't post non-sense. Try it out I promise you, it will print and on a randy it will print that they aren't a modder. I have used this in Glitchinng for months now. Simple and works 100% of the time. People usually have one of these protections on. Alot of people don't play with god mode because they are pilots or groundsmen. But they will still have basic protections enabled. This was mainly for PS3 users btw.
 
No cause you would possibly freeze non-modders



If you two would have read the post this was for people who don't know how to do that or have ofw and can't use plugins. Btw this works 100% fine. If you got grouphack protection on this will return that native back true. I know this because I have TESTED it. I don't post non-sense. Try it out I promise you, it will print and on a randy it will print that they aren't a modder. I have used this in Glitchinng for months now. Simple and works 100% of the time. People usually have one of these protections on. Alot of people don't play with god mode because they are pilots or groundsmen. But they will still have basic protections enabled. This was mainly for PS3 users btw.
True actually anyways good job keep it up I might see you soon
 
SCAN PLAYERS FOR MODS


So since alot of people have asked me how to scan players
for mods without sockstress's plugin and/or equivalent.
This is how I do it and works on most people. I chose common
protections to target. This 100% works and I use it in my menu Glitchinng.

What this does is first check for a modified player model, then checks for grouphack
protection, then sets them on fire and checks for fire protection. Prints feedback



Code:
                        Ped networkPlayerPedModel;
                        GET_CHAR_MODEL(networkPlayerPed, &networkPlayerPedModel);
                        if (networkPlayerPedModel != PED_M_Y_MULTIPLAYER && networkPlayerPedModel != PED_F_Y_MULTIPLAYER){
                            print("~BLIP_76~ ~y~Player Model Changed ~g~Player is a Modder");
                            ModderFound = true;
                            return;
                        }
                        int charammo, ammomax, gund;
                        if(IS_PED_IN_GROUP(networkPlayerPed)){
                            print("~BLIP_76~ ~y~Player is in a group ~g~Player is a modder");
                            ModderFound = true;
                        }
                        START_CHAR_FIRE(networkPlayerPed);
                        WAIT(2000);
                        if(!IS_CHAR_ON_FIRE(networkPlayerPed)){
                            START_CHAR_FIRE(networkPlayerPed);
                            WAIT(1200);
                            if(!IS_CHAR_ON_FIRE(networkPlayerPed)){  
                                print("~BLIP_76~ ~y~Fire Protection ~g~Player is a modder");
                                ModderFound = true;
                            }
                        }
                        if(!ModderFound) print("~BLIP_76~ ~r~Player doesn't have mods");
                        WAIT(1000);
                        ModderFound = false;
So this is why some ppl put everyone on fire and everyone dies. The problem i find with this is that i kick out modders doing that...abusers.
What you could change to is set them on fire, see if their health or armour goes down, do a compare and if it goes down, mark them as a non godmode player, then restore their health and armour so they dont die. The others can be marked as godmode on players.
 
No cause you would possibly freeze non-modders



If you two would have read the post this was for people who don't know how to do that or have ofw and can't use plugins. Btw this works 100% fine. If you got grouphack protection on this will return that native back true. I know this because I have TESTED it. I don't post non-sense. Try it out I promise you, it will print and on a randy it will print that they aren't a modder. I have used this in Glitchinng for months now. Simple and works 100% of the time. People usually have one of these protections on. Alot of people don't play with god mode because they are pilots or groundsmen. But they will still have basic protections enabled. This was mainly for PS3 users btw.
U can actually check if ppl have godmod on etc on normal console
 
So this is why some ppl put everyone on fire and everyone dies. The problem i find with this is that i kick out modders doing that...abusers.
What you could change to is set them on fire, see if their health or armour goes down, do a compare and if it goes down, mark them as a non godmode player, then restore their health and armour so they dont die. The others can be marked as godmode on players.
They'd be on fire even after restoring their health and i don't think u can use extinguish fire native on other players atleast so it will actually work
 
So this is why some ppl put everyone on fire and everyone dies. The problem i find with this is that i kick out modders doing that...abusers.
What you could change to is set them on fire, see if their health or armour goes down, do a compare and if it goes down, mark them as a non godmode player, then restore their health and armour so they dont die. The others can be marked as godmode on players.
Good idea and I guess its abusing but not really. Usually people only perform these types of checks when someone is fucking with them, its just an assurance thing. I didn't even knew you were still around m8
They'd be on fire even after restoring their health and i don't think u can use extinguish fire native on other players atleast so it will actually work
Honestly personaly idc if they are randys they will just respawn and go about their day. Not a huge deal tbh.
 
They'd be on fire even after restoring their health and i don't think u can use extinguish fire native on other players atleast so it will actually work
You can with these natives :

if(IS_CHAR_ON_FIRE(netplayer) EXTINGUISH_CHAR_FIRE(netplayer)
 
Good idea and I guess its abusing but not really. Usually people only perform these types of checks when someone is fucking with them, its just an assurance thing. I didn't even knew you were still around m8

Honestly personaly idc if they are randys they will just respawn and go about their day. Not a huge deal tbh.
I was not around..just felt like playing a bit again, been a longtiome since...
 
yeah but i really doubt it actually works
It does work, i use it in my protections. It would be better to add this to this to that source. I prefer non abusive modding. I can scan for Godmode in my Eboot, but for the ones that havent got a jailbroken console it could be better.
I do like scans for what others do but setting everyone on fire (even the innocents) is for me a bridge to far and is a bit selfish not to care about the non modders.
Nice work, just my oppinion on this.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ QM|T_JinX:
    the fun you guys had as staff members joking around hahah
  • @ QM|T_JinX:
    did you speak to younis about maybe a plan or something to get this working again ?
  • @ God:
    I remember now it’s been a while you know lol but I remember you live in the Netherlands. You are a great Super Moderator bro as wel you are always active helping and trying to do what you can respect for you as well! I’m in the United States it’s 4:32pm here. What you going to do tonight?
  • @ QM|T_JinX:
    thanks bro appreciate that nothing mutch thinking about after the movie playing some red dead 2 almost have it on platinum haha
  • @ QM|T_JinX:
    so you thinking about become staff again or no great to have you back on here hto
  • @ QM|T_JinX:
    tho
  • @ God:
    That’s the truth I see I come on here often here lately, sometimes I don’t chat! But yes I really want to help out and do everything I can bring the site back like it should be bro! Maybe we could work something out, I think I have the resources and community to help
  • @ QM|T_JinX:
    yea i have seen you on here just like unbound and some others but they didnt stick haha yea would be great to see this site grow again like you said like it should be
  • @ God:
    We will see we gotta talk to the boss man Younis
  • @ QM|T_JinX:
    for sure haha well lets hope right
  • @ QM|T_JinX:
    i still think if there was a jailbreak for ps4 this site would have been back for sure
  • @ God:
    That would be awesome I’m sure it will happen before long, technology now a days is crazy! If we can work out a deal and plans I’ll be spreading the word and doing a lot to make it better more attractive and helpful fourms tips giveaways and all
  • @ God:
    I’ve been messing and working with trying to make great CSS for the names. Like Staff Premium news writer etc..
  • @ QM|T_JinX:
    ok so hows that going /
  • @ God:
    It’s going good. So we will see what happens and if the site can come back like it was or better
  • @ QM|T_JinX:
    nice yea lets hope
  • @ QM|T_JinX:
    im going to play some red dead it was great to have spoken to you bro nice to see you back on here
  • @ QM|T_JinX:
    hope you have a great night bro
  • @ God:
    It was good talking with you as well, you have a great night! We will talk later bro
    +1
  • Chat Bot:
    QM|T_JinX has joined the room.
  • @ QM|T_JinX:
    have a great weekend everybody ill be back after the weekend
  • Chat Bot:
    OkBrruh is our newest member. Welcome!
  • Chat Bot:
    uncrtin is our newest member. Welcome!
  • Chat Bot:
    BigTechModz is our newest member. Welcome!
  • @ BigTechModz:
    Hey this is RexMods I don’t remember the login to my old account so I made a new one I am now known as BigTechModz
      @ BigTechModz: Hey this is RexMods I don’t remember the login to my old account so I made a new one I am now...
      Back
      Top