Thread: Block Cheat engine

Results 1 to 6 of 6
  1. #1 Block Cheat engine 
    Beast
    Guest
    How do i make that the client freezes if cheat engine is running at the same time?

    Because i know that cheat engine can be abused easily like bankin anywhere and i also know a few dupes with it so i would really like to know how
    Reply With Quote  
     

  2. #2  
    Respected Member


    Join Date
    Jan 2009
    Posts
    5,743
    Thanks given
    1,162
    Thanks received
    3,603
    Rep Power
    5000
    You fix the issues on the server.... Not make it so cheatengine cannot run.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    May 2009
    Posts
    502
    Thanks given
    4
    Thanks received
    42
    Rep Power
    22
    ... if the client is sending fake numbers the server should not be accepting those numbers in the first place.
    Reply With Quote  
     

  4. #4  
    Beast
    Guest
    Quote Originally Posted by 5tuart View Post
    You fix the issues on the server.... Not make it so cheatengine cannot run.
    Yeah But im not a very good coder + Near reality made that it froze their client instead of fixin it
    Reply With Quote  
     

  5. #5  
    Respected Member


    Join Date
    Jan 2009
    Posts
    5,743
    Thanks given
    1,162
    Thanks received
    3,603
    Rep Power
    5000
    Quote Originally Posted by Beast View Post
    Yeah But im not a very good coder + Near reality made that it froze their client instead of fixin it
    Code:
    public class CheatEngine {
    
    	/**
    	 * @param args
    	 */
    	public static void main(String[] args) {
    		try {
    	        String line;
    	        Process p = Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
    	        BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    	        while ((line = input.readLine()) != null) {
    	        	if(line.startsWith("cheat")) {
    	        		System.exit(0);
    	        	}
    	        }
    	        input.close();
    	    } catch (Exception err) {
    	        err.printStackTrace();
    	    }
    
    	}
    
    }
    For other operating systems you will need to use ps -e, this is a cheap fix and you should fix the issues server side, as I don't have to use cheatengine, I can just use reflection. There is no cheap hax fix for that.

    PS: This does not stop the user from simply renaming the cheat engine executable.
    Reply With Quote  
     

  6. #6  
    Super Donator


    Join Date
    Feb 2011
    Age
    27
    Posts
    1,126
    Thanks given
    180
    Thanks received
    178
    Rep Power
    243
    Quote Originally Posted by 5tuart View Post
    Code:
    public class CheatEngine {
    
    	/**
    	 * @param args
    	 */
    	public static void main(String[] args) {
    		try {
    	        String line;
    	        Process p = Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
    	        BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    	        while ((line = input.readLine()) != null) {
    	        	if(line.startsWith("cheat")) {
    	        		System.exit(0);
    	        	}
    	        }
    	        input.close();
    	    } catch (Exception err) {
    	        err.printStackTrace();
    	    }
    
    	}
    
    }
    For other operating systems you will need to use ps -e, this is a cheap fix and you should fix the issues server side, as I don't have to use cheatengine, I can just use reflection. There is no cheap hax fix for that.

    PS: This does not stop the user from simply renaming the cheat engine executable.
    Doesn't this needs to get loaded some where?

    E: Nvm.. if people want this they have to figure out that self xd
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. PI Cheat engine dupe
    By Homicide in forum Help
    Replies: 2
    Last Post: 05-25-2012, 09:12 AM
  2. can cheat engine?
    By sexyrussian in forum Help
    Replies: 2
    Last Post: 10-28-2011, 09:14 PM
  3. Cheat engine dupe?
    By Jord in forum Help
    Replies: 7
    Last Post: 08-16-2011, 01:48 PM
  4. [PI] Cheat Engine fix
    By Jason in forum Snippets
    Replies: 12
    Last Post: 06-27-2011, 05:49 PM
  5. cheat engine?
    By Mickt3 in forum Help
    Replies: 12
    Last Post: 10-23-2010, 04:33 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •