Jump to content

Log off when Mod Near


Andrew

Recommended Posts

This code isn't perfect and hasn't been tested.

 

This was requested on another thread so I thought id quickly post this

 

Before you read, this is a BAD IDEA, mods can tell you just logged off and it will look suspicious

 

 

A mod detection snippet.

When a J Mod or a player mod, is in ur area, it will auto logout and hop.

 

Make it a snippet, so everyone can implent it.

List<Player> players = client.getLocalPlayers();

        for(Player p : players) {
            
            String currentuser = p.getName();
            
            if(currentuser.startsWith("Mod ")) {
                //Log off Code Here
            }
        }

Edited by Murded
Link to comment
Share on other sites


List<Player> players = client.getLocalPlayers();

        for(Player p : players) {

            

            String currentuser = p.getName();

            

            if(currentuser.startsWith("Mod ")) {

                type("Omfg my keyboard is messing up! Unplugging it for now, ttyl.");

            }

        }

Link to comment
Share on other sites

List<Player> players = client.getLocalPlayers();

        for(Player p : players) {
            
            String currentuser = p.getName();
            
            if(currentuser.startsWith("Mod ")) {
                type("Omfg my keyboard is messing up! Unplugging it for now, ttyl.");
            }
        }

Lol I like this.

Link to comment
Share on other sites

List<Player> players = client.getLocalPlayers();

        for(Player p : players) {
            
            String currentuser = p.getName();
            
            if(currentuser.startsWith("Mod ")) {
                type("Omfg my keyboard is messing up! Unplugging it for now, ttyl.");
            }
        }

Yea cause peopple randomly unplug it ...

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...