Search the Community
Showing results for tags 'Enyby'.
Found 17 results
-
Sooo I updated my software to emui 10.0.0 also Android 10 and now game guardian is not working in virtual space it keeps telling me I still need root but it says that it made for a lower android version can u guys fix this?
-
New topic especially for new users of gameguardian (I'm also new)
-
gg doesn't work on games that use unity 3rd,now one by one game developers have started using unity 3rd. for example the mobile legend is now no longer able to use gg,please what's the solution ??
-
Can any one explain me how to use fuzzy seach to find new hack values for pubg mobile ? I tried How to find antena base value... I tried fuzyy.. then wear helmet and vlick increase ..then took out the helmet then click decrease... By doing this i found 100 values in anonymous range . I edit them with 999..but nothing happened... Can anyone help me out
-
I need some cheats about this game for damage hack and gold
-
Help me pls. my device have root grant, but iruna still can detect. "please delete unnecessary application" Show up and the game Force Close. Can u guys help me please ?
-
hi can any body please tell me why I can't post a script which is more than 44 kb? i want to post a pdf which tells how to make a basic script? UltimateScriptingBookV1.pdf
-
I am assuming that the viewer already knows the method of hacking through car ids . There is a little change than the old method. (For old method, check: Asphalt 8: Airborne - hack tokens cars - GameGuardian (#1gmaz2fw) ) Note: close the game as youβve changed the car id. Its important. Go online and boom, you lose all your hacked cars and upgrdes. Hacking tuning upgrade will lead you to cheaterboard within a very short time. Here is the list of car ids that I collected.the attached list of car ids is not owned by me.Thats enbys. I tried editing that but messed up a little bit. There are many spelling mistakes.My apologies. 284 lamborgini sian 270 ktm car 244 lightning bike 218 ariel atom 283 formula e 282 aspark owl 271 ferrari fxx k 272 Koenigsegg jesko 273 italdesign 274 lotus elis 277 infiniti project black 279 lotus evija Thanks to enby for introducing amazing tutorials back then. Screenrecorder-2020-05-26-06-05-33-829.mp4 car_ids.txt
-
Name of Game: eternium Play Store Link (If it's a paid app, the apk): Version:1.2.99 What cheat? Health, xp, gold,gems Have you tried cheating this game? Yes What happened?: it crashed Comments: plz update the script, i try for hours trying
-
hi i saw people doing scripts that start by looking for all the value and then once we are in the script the activation of the hack becomes instant I would like to know how we do this kind of mod menu please Like in this vidΓ©o [added 0 minutes later]
-
We can hack car by changing ids. I'm curious about decals.
-
Hi guys i want to make a Script that prompts user input and convert the number that the user have typed with the game Xor keys. the Xor keys is 444444. I tried to add X4 in the number that the user type but it is not working correctly. local ca = gg.prompt({"πΈπ½πΏππ ππ·π΄ π²π°π π°πΌπΎππ½π"},nil,{"number"}) if ca == nil then gg.toast('You cancelled the dialogue') gg.setVisible(false) return end local ca = ca[1].."X4" gg.searchNumber(ca, gg.TYPE_DWORD) local results = gg.getResultsCount() if results > 10 then local r = gg.getResults(1) gg.removeResults(r) end
-
Hello guys i need a help about lua script For example, I have a basic line of values and i can only find these values just in this order and arrangement gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) and each value represents something in the game and in order to activate the cheat to a first value or any value in the line you must search for the same line once again okay? So this line is basic to found this values, the problem lies about i activated the first value "1000" and edit this to "1111" If I now want to activate second cheat, i can't because the main line "1000;2000;3000:9" is not the same as after the first cheat was activated "1111;2000;3000:9" and so on the rest of the values Well my question is how to update the main search when I search for a second value, the search is updated according to whether a search was done before or not For example, We do on this script function home() menu = gg.choice({"Hack 1","Hack 2","Hack 3") if menu == 1 then hack_1() end if menu == 2 then hack_2() end if menu == 2 then hack_3() end end -- this basic search line gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) and i can only find these values just in this order and arrangement function hack_1() gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) -- example user activate hack_3 before hack_1 so search hack_1 don't work or if user want to activated hack_1 don't work because basic search line is changed so how update this serach ? gg.getResults(3) gg.refineNumber("1000", gg.TYPE_DWORD) gg.getResults(1) gg.editAll("1111", gg.TYPE_DWORD) end function hack_2() gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) -- example user activated hack_1 before hack_2 so search hack_2 don't work because basic search line is changed so how update this serach ? gg.getResults(3) gg.refineNumber("2000", gg.TYPE_DWORD) gg.getResults(1) gg.editAll("2222", gg.TYPE_DWORD) end function hack_3() gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) -- example user activate hack_2 before hack_3 so search hack_3 don't work because basic search line is changed so how update this serach ? gg.getResults(3) gg.refineNumber("3000", gg.TYPE_DWORD) gg.getResults(1) gg.editAll("3333", gg.TYPE_DWORD) end This a simple process, i want solution for this problem that works in the big script lines and thanks you guys !!