Jump to content

HEROGAMEOfficial

Contributor
  • Posts

    518
  • Joined

  • Last visited

  • Days Won

    13

Posts posted by HEROGAMEOfficial

  1. local a = gg.getResults(gg.getResultsCount())
    gg.clearResults()
    local b = {
    	1234,
    	5678,
    	9810
    }
    local c = {}
    for z, x in next, b do
    	c[x] = z
    end
    local d = {}
    for z, x in next, a do
    	if c[x.value] then
    		d[#d + 1] = x
    	end
    end
    gg.loadResults(d)

    Many ways this is one 

  2. On 11/1/2023 at 4:31 AM, MC874 said:

    [ Introduction ]
    Hi @everyone, in recent times, Android has just released version 14, which includes some SDK restrictions. The requirements are that apps should at least be under SDK version 24+, or else installation fails. Another problem is that Game Guardian hasn't been updated for years (March 22, 2021, since the last update), a total of 2 years. I understand that life can be unbothered sometimes, and I hope there's some confirmation regarding this instead of intending it as an "unforseeable future" kind of thing. I've seen a rising number of these issues on HelpGeneral Discussion, and in other possible sections of the forum. I recommend anyone who has a newer device or just recently updated to Android 14 to follow this topic. Here, I propose several possible solutions regarding this issue:

    [ Main Course ]
    You can bypass SDK enforcement using shell commands, which you need to install Game Guardian manually through command line. You can achieve this through ADB: Android Debug Bridge or Termux: Terminal for Command Line application. This tutorial will split into 2:

    { ADB: Android Debug Bridge }
    This step doesn't require "Root" permission, but before proceeding into the main tutorial. We should prepare several things:

    1. Computer / Laptop running Windows OS
    2. A cable data
    3. Download ADB depedencies: here
    4. Android device with "USB debugging".
    5. If your device "cant be recognized" or simply not exist on "Device Manager", you need to install: Universal ADB Driver

    Then read: XDA: Install ADB & Enable USB Debugging. Now put this command on your command prompt / powershell / gitbash / or whatever terminal you use:

    # Check if our device works properly
    adb devices
    
    # Install Game Guardian manually through ADB
    adb install --bypass-low-target-sdk-block <path_to_game-guardian.apk>
    
    # If ADB is unresponsive / bugged, do:
    adb kill-server
    adb start-server


    { Termux: Terminal }
    The only requirement is you need "Root" permission, this is the most easiest way. Since you're going to Install Game Guardian, I assume you already have one (Yes, Game Guardian requires "Root" permission, duh). Download: Termux and Just go ahead execute this command:

    pkg update
    pkg upgrade
    pkg install tsu
    pkg install android-tools
    sudo adb install --bypass-low-target-sdk-block <path_to_game-guardian.apk>


    { Virtual Machine }
    This is suitable way for non-rooted users. Android 14 is relatively new, some of your ROM/OS might not support "Rooting" yet. Virtual Machine allows you to emulate another Android inside your Android 14 (or etc). Usually it comes with older Android version. I suggest to use Virtual Machine with Android 7 or 9 as you're not going to face any redundant issues, like Android 10-14 did. I would recommend using "VPhoneGaGa":


    Android Package }
    You can try to edit Game Guardian SDK: ("android:targetSdkVersion" to version 24+) and ("android:minSdkVersion" to 24+) on Manifest.xml using: Editor. I can't explain this part to comply with GGG: Game Guardian Guidelines

    [ Aftermath ]
    With that, you can simply reference this topic in case there's someone that facing the same problem. I hope this topic can help you and other people. Thank you for reading.
    *Video tutorials are coming soon:

     

    GameGuardian_signed.apk suport android 14

  3. 4 hours ago, Nasibullah said:

    Hello GG team.

    Since I came over to united states I am not able to use GG at all see screenshot attached and help me please! 

    Thanks 

    Screenshot_20240327_034837_Package installer.jpg

    Android 14?

    @Enyby I hope update for sdk.

    And this post fix android 14 doesn't address the issue either.

  4. local function menu()
    	local a = gg.choice({'A', 'B', 'C'})
    	if not a then
    		return 
    	else
    		a = {[a] = a}
    		gg.setVisible(false)
    		if a[1] then
    			
    		elseif a[2] then 
    			
    			gg.toast('Hack done')
    			return menu()
    		elseif a[3] then
    			
    		end
    	end
    	while not gg.isVisible() do
    		
    	end
    	return menu()
    end
    return menu()

    I think ...

  5. 1 hour ago, Aaron-Auto said:

    @HEROGAMEOfficial Can u help me make a prompt log in that like probably hide my values in a server like 000webhost or something and also for only 1 device 

     

    1 hour ago, Aaron-Auto said:

    @HEROGAMEOfficial Can u help me make a prompt log in that like probably hide my values in a server like 000webhost or something and also for only 1 device 

    If you want hide values (don't share your script to public), share to public = share code.

     

    1 device one script its easy.

    I think 000webhost is pretty good, but Google Drive is better.

  6. On 7/6/2023 at 11:11 PM, vdmvdm said:

    Does anybody know if I can use a Lua Script when the script wants me to use aother app version?

     

    Script: The script is for version 1.39

    App: 1.40

    Me: I want to try to use the 1.39 script for the 1.40 game anyway

     

    Would that be possible? I understand not all function my work properly 

    You can use compiler (hook), change the version by you want or by the script.

×
×
  • 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.