Advertisement
Guest User

anticheat leak

a guest
Jan 23rd, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. public class cheatdetection {
  3.  
  4. public static void main(String[] args) {
  5. cheatdetection a = new cheatdetection();
  6. if (a.cheatDetection(0) == true)
  7. {
  8. System.out.println("Der Typ hackt nicht");
  9. }
  10. else
  11. {
  12. System.out.println("Der Typ hackt auch nicht!");
  13. }
  14. }
  15.  
  16. private boolean cheatDetection(int i) {
  17. return false;
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement