Jump to content

VELLIXAO

Members
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

VELLIXAO's Achievements

Rookie

Rookie (2/14)

  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. View File Game Guardian Device Lock & Ban Protection – Offline System Game Guardian Device Lock & Ban Protection – Offline System Protect your GG script from being shared or misused! This Lua snippet implements a device lock system with a 3-attempt ban mechanism – all running 100% offline. Once locked, only the original device can use the script with the correct ID. Features: Auto-generates a unique 16-character Device ID First-time users get their Device ID copied to clipboard Users must enter the correct ID to run the script 3 wrong attempts = automatic ban Banned users are blocked from using the script permanently All done using local storage, no internet required Files Created: /sdcard/.gg_device_lock.txt → Stores the unique Device ID /sdcard/.gg_device_banned.txt → Marks banned devices Example Workflow: 1. First Run: → Script generates a Device ID → Copies it to clipboard → Informs user to save the ID 2. Next Runs: → Prompts for Device ID → 3 chances to get it right → Fail 3 times = banned forever 3. Success: → Script continues running normally Example Messages: “Script successfully locked to this device. Your ID: [ ABCDEFGHIJKLMN ]” “Wrong ID! Attempt 2 of 3.” “You have been banned from this script.” Use Case: Perfect for script developers who want to: Prevent leakers from spreading your scripts Limit use to trusted users only Protect private projects from being reused or edited Want it improved with remote validation, encrypted IDs, or SHA protection? Just ask! Happy scripting Submitter VELLIXAO Submitted 06/04/2025 Category Templates  
  2. View File Game Guardian Anti-Spy Game Guardian Anti-Spy Wrapper for gg.searchNumber() Protect your script from unwanted inspection and suspicious UI triggers using this lightweight security layer! What It Does: This script wraps the gg.searchNumber() function and monitors whether the Game Guardian UI was forcefully opened or manipulated during the search process. If any abnormal behavior is detected (e.g., user opens GG UI during script execution), the script will: Display a warning message Wait for 1 second Force-close the process using gg.processKill() How It Works: Saves the original gg.searchNumber function Creates a custom wrapper that runs the original function silently Monitors if gg.isVisible() becomes true during execution (which it shouldn’t) Triggers a kill switch if unauthorized access is detected Use Case: This is useful for script makers who want to: Prevent users from spying on memory values while a search is happening Avoid modification, leak attempts, or reverse engineering Add a simple layer of protection to important value searches Code Behavior Recap: Normal use: Search happens invisibly and continues smoothly Abnormal: If the user opens the GG UI manually → Script detects → Alerts → Kills the app Example Output: [] System Detects Abnormality! → then auto exits the app Integration Tip: Place this wrapper early in your script, before any search functions. It will automatically protect every gg.searchNumber() call after it’s applied. Need it extended to protect other GG functions like gg.getResults() or gg.editAll()? I can help build a full wrapper set Happy scripting, stay safe! Submitter VELLIXAO Submitted 06/04/2025 Category Templates  
  3. View File Anti-Tamper Protection Script for Game Guardian Anti-Tamper Protection Script for Game Guardian Worried about someone modifying or cracking your script? This Lua script offers basic anti-tampering protection using an MD5 hash check to detect changes to your script file. What It Does: Reads the current script content Calculates an MD5 hash (with a fallback method if crypto is unavailable) Compares it to a saved hash to check for modifications If the script has been changed → blocks access and bans the user If it’s the first time running → saves the original hash Checks for a ban flag before running Displays success message if script is safe to run Why Use This? Protect your Game Guardian script from: Script crackers Spying or unauthorized modification Re-uploaders who edit your work Even if someone tries to decode or re-save the script, this system can detect it. Files Used: /sdcard/Android/.gg.txt: stores original script hash /sdcard/Android/.device.txt: used to flag banned users Result: If untouched: Protection successful. Script executed. If modified or spied: Script has been modified or spied on. Access blocked. If banned: You have been banned for trying to crack the script. You can also modify this system to use SHA-1 or remote verification for more advanced protection. Let me know if you need the full script or help customizing it! Submitter VELLIXAO Submitted 06/04/2025 Category Templates  
  4. 252 downloads

    Game Guardian Anti-Spy Wrapper for gg.searchNumber() Protect your script from unwanted inspection and suspicious UI triggers using this lightweight security layer! What It Does: This script wraps the gg.searchNumber() function and monitors whether the Game Guardian UI was forcefully opened or manipulated during the search process. If any abnormal behavior is detected (e.g., user opens GG UI during script execution), the script will: Display a warning message Wait for 1 second Force-close the process using gg.processKill() How It Works: Saves the original gg.searchNumber function Creates a custom wrapper that runs the original function silently Monitors if gg.isVisible() becomes true during execution (which it shouldn’t) Triggers a kill switch if unauthorized access is detected Use Case: This is useful for script makers who want to: Prevent users from spying on memory values while a search is happening Avoid modification, leak attempts, or reverse engineering Add a simple layer of protection to important value searches Code Behavior Recap: Normal use: Search happens invisibly and continues smoothly Abnormal: If the user opens the GG UI manually → Script detects → Alerts → Kills the app Example Output: [] System Detects Abnormality! → then auto exits the app Integration Tip: Place this wrapper early in your script, before any search functions. It will automatically protect every gg.searchNumber() call after it’s applied. Need it extended to protect other GG functions like gg.getResults() or gg.editAll()? I can help build a full wrapper set Happy scripting, stay safe!
  5. 298 downloads

    Game Guardian Device Lock & Ban Protection – Offline System Protect your GG script from being shared or misused! This Lua snippet implements a device lock system with a 3-attempt ban mechanism – all running 100% offline. Once locked, only the original device can use the script with the correct ID. Features: Auto-generates a unique 16-character Device ID First-time users get their Device ID copied to clipboard Users must enter the correct ID to run the script 3 wrong attempts = automatic ban Banned users are blocked from using the script permanently All done using local storage, no internet required Files Created: /sdcard/.gg_device_lock.txt → Stores the unique Device ID /sdcard/.gg_device_banned.txt → Marks banned devices Example Workflow: 1. First Run: → Script generates a Device ID → Copies it to clipboard → Informs user to save the ID 2. Next Runs: → Prompts for Device ID → 3 chances to get it right → Fail 3 times = banned forever 3. Success: → Script continues running normally Example Messages: “Script successfully locked to this device. Your ID: [ ABCDEFGHIJKLMN ]” “Wrong ID! Attempt 2 of 3.” “You have been banned from this script.” Use Case: Perfect for script developers who want to: Prevent leakers from spreading your scripts Limit use to trusted users only Protect private projects from being reused or edited Want it improved with remote validation, encrypted IDs, or SHA protection? Just ask! Happy scripting
  6. 139 downloads

    Anti-Tamper Protection Script for Game Guardian Worried about someone modifying or cracking your script? This Lua script offers basic anti-tampering protection using an MD5 hash check to detect changes to your script file. What It Does: Reads the current script content Calculates an MD5 hash (with a fallback method if crypto is unavailable) Compares it to a saved hash to check for modifications If the script has been changed → blocks access and bans the user If it’s the first time running → saves the original hash Checks for a ban flag before running Displays success message if script is safe to run Why Use This? Protect your Game Guardian script from: Script crackers Spying or unauthorized modification Re-uploaders who edit your work Even if someone tries to decode or re-save the script, this system can detect it. Files Used: /sdcard/Android/.gg.txt: stores original script hash /sdcard/Android/.device.txt: used to flag banned users Result: If untouched: Protection successful. Script executed. If modified or spied: Script has been modified or spied on. Access blocked. If banned: You have been banned for trying to crack the script. You can also modify this system to use SHA-1 or remote verification for more advanced protection. Let me know if you need the full script or help customizing it!
  7. View File Builder Script Game Guardian This is a simple script to create a script for game guardian based on what you input into it. Submitter VELLIXAO Submitted 06/04/2025 Category Tools  
  8. Version 0.1

    127 downloads

    This is a simple script to create a script for game guardian based on what you input into it.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.