• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Asset - Extension LuckyPatcher Blocker

zbox

Member
GMC Elder
LuckyPatcher Blocker - Android

Marketplace: https://marketplace.yoyogames.com/assets/5280/lucky-patcher-blocker
Category:
Extensions
Price: $4.99
Modules: Android

Description:
Allows you to check:
  • If Lucky Patcher is installed
  • If your app has been modified (I.e, In-app purchase hacks, adblock hacks and more)
You can then decide to end the game, subtly disadvantage players if you are a bit sadistic, or just show them a message.
Code:
if (HackCheck_HackInstalled()) {
   // The user has a version of Lucky Patcher installed
}

if (HackCheck_Signature("XXYYZZAABBCC")) {
   // the user has modified the app
   // could have removed adverts, In-app purchases or more
}
To obtain the Signature of your app to prevent modification, compile the game for android as if you were going to release it, placing the function HackCheck_ShowCertificate() so that it will be called. A popup will show, which you can copy your certificate out of. In the example, you would replace "XXYYZZAABBCC" with this string.
 
Top