Leaderboard
Popular Content
Showing content with the highest reputation on 11/14/2018 in Posts
-
Dont copy paste text from forum. It will copy 'invisible char' in your text editor. About way to 'hide' value, you can try a simple trick in your code use gg.getResultCount API. Below is just for example function A() gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber('1;2;3', gg.TYPE_FLOAT) local count = gg.getResultCount() if count == 0 then gg.toast(count..' Result found') else gg.toast(count..' Result found') gg.searchNumber('2', gg.TYPE_FLOAT) gg.getResults(100) gg.editAll('0', gg.TYPE_FLOAT) gg.toast('success') gg.clearResults() end end end If you try to call the function not in game, the process will discontinue, because searchNumber is 0 result, so you only can see half of code in the call log. But, it is just a simple trick, if you wont let your code copy by others, the best way is use by yourself and dont share.2 points
-
if you use a function you have to put the script that runs first at the end of the script Example : With dot : ::home:: -- Always first run -- Your code goto exit -- Call function ::exit:: -- function os.exit() With function : function home() -- This is not run before you call this -- Your code exit() -- Call function end -- Add 'end' for finish function function exit() -- function os.exit() end home() -- Call function in the end of the script for first run2 points
-
(Somthing was bugging) Btw just saying its better that you inmput the region that your searching in so that the script is faster finished. Your GG is set Ca, A and Xa but im kind of sure that that this recoil of yours is region A: Anonymous. So it has to search only in the region anyonymous so you have to type it like this: local old = gg.getRanges(); gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('1.29999995232F;0.60000002384F;1.5F;1.29999995232F;1.0F;1.29999995232F;1.0F:53', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(15) gg.editAll('0', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.clearResults() gg.setRanges(old) --[the rest of that block] Now what it says in short is that gameguardian will search in the region anonymous only, and afther its done editing (at the end of your function it will set the ranges back to the previous way they were. So in your case your ranges are now Ca, A and Xa Gameguardian will only search in A: anonymous, then when it is done editing it will return back to your original range = gg.setRanges(old) As for function() you just have to adjust your menu a lil bit. Everywere were you putted for examble: ::norecoil:: you change it to: function norecoil() so you understand?(i can not explain very detailed) You remove every "goto sdone" And you replace it with "end" Examble: FAULT!! ::jumphack:: gg.searchNumber('10.0F;0.03999999911F:21', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll('25', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.clearResults() gg.alert('Jump Hack Active') gg.toast('Credit By Krojzanovic☆') goto START CORRECT!! function jumphack() gg.searchNumber('10.0F;0.03999999911F:21', gg.TYPE_FLOAT) gg.getResults(100) gg.editAll(25, gg.TYPE_FLOAT) gg.clearResults() gg.alert('Jump Hack Active') gg.toast('Credit By Krojzanovic☆') end But this only works when your menu js done good to. Every goto has to be removed Your menu has to be done like this: FAULT!! if menu == 1 then goto norecoil end if menu == 2 then goto jumphack end if menu == 3 then goto ammo end if menu == 4 then goto sdone end if menu == nil then goto sdone end CORRECT!! if menu == 1 then norecoil() end if menu == 2 then jumphack() end if menu == 3 then ammo() end if menu == 4 then os.exit() end if menu == nil then os.exit() end know what i mean? you script needs a full change but with notepad ++ this is quicky done.. i think this is the correct way...i still dont get why you would want to exit the script when they are on nil to.2 points
-
I am recommend to use function(). In any case, ::label:: have a limitation. Especially if you want to create more complex scripts.2 points
-
This is the current level cap on Magizoology. I actually recommend hacking this first before the creature XP as you will need to feed it in order to find the right value. 1. Hack time again, 5h = 18000s search that and change to 1 sec or however you like. 2. Delete all results and start fuzzy search 3. Start feeding the animal (x1 food = 3xp, x2 = 7xp and x3 = 12xp) It's up to you which one you pick it doesn't matter, it's the regular N=O+D process 4. You should have 2 results in the end, pause the game, edit the higher one and you're all set, next time you feed the animal your level will max out.2 points
-
Name of Game: Vampire's Fall: Origins Play Store Link (If it's a paid app, the apk): https://play.google.com/store/apps/details?id=com.earlymorningstudio.vampiresfall2Version: 1.0.42What cheat? Health, xp, gold...: anything. Money, xp, healthHave you tried cheating this game? What happened?: Yes. Can't find any of the values. Comments: I'm new to this and kinda dumb, idk what I'm doing. Also using a virtual space, and not a rooted device.1 point
-
Here you can use this but dont own it.. give some credits.. gg snooper only log important code. you dont have to be ingame to log the source code.. if you use snooper.. you can select any dummy process.. it will not execute the function anyway.. so it doesn't matter.. it will output the code only.. please download the code below dont copy paste else you will get unknown symbols.. this is due to this code bbcode in this forum.. it can produce detailed like this example if you have then it will output like this another example if you got it can produce like this autodecompile.lua1 point
-
watch my video ????? -- Method 1 Script will try to decompile it without password.. -- Method 2 Script will try to decompile it after you enter the password -- Method 3 ( Always Acurate & Working ) code snooper my code snooper is super detailed.. all you have to do is login and select on the vip menu like reload hack, speed hack, etc.. select that and it will output the code super detailed....take note that function will output the code instead of doing it.. so you dont need to wait.. and you save time ? isn't amazing ? xD watch the video above it and here's the sample how detailed it is.. gg.clearResults() -- normal range gg.setRanges(gg.REGION_BAD) gg.searchNumber("4.7408155e21;2",gg.TYPE_FLOAT,false,gg.SIGN_FUZZY_EQUAL,0,-1) gg.searchNumber("2",gg.TYPE_FLOAT,false,gg.SIGN_FUZZY_EQUAL,0,-1) gg.getResults(20) gg.editAll("120",gg.TYPE_FLOAT) gg.clearResults()1 point
-
On this topic, hacks for games such as Combat Arms, Crossfire, Counter-Strike, and other games will be posted. If you are going to make a request for non-gameguardian hacks then make sure your title has [REQ] at the beginning of the title itself. Also post that topic in the non-Gameguardian hacks section. Whatever you do, DO NOT post in the gameguardian cheats requests section. (non-gameguardian means that it is not an android game.) Have fun hacking/cheating.1 point
-
Thanks u for help me ? @XxhentaixX . And @Revoxtical @CmP @bukandewa for reply this thread. thank you all1 point
-
yes, welli just modificated his script, take a look. I rewrided the letters to its standard and also the gg.searchNumber that was copied and everything is in function now and its modificated so that when hack is finished the script wont close testing.lua1 point
-
1 point
-
1 point
-
1 point
-
That's what I've been afraid of, by the time I figured out how to hack level xp I already had 2 creatures maxed and I was in the process of levelling up Fairy. For now, all you can do is wait and hope JC releases more creatures and hopefully one of them will have level 2 requirement, I'm so sorry I didn't think it would be this way.1 point
-
1 point
-
You can't protect this bcz gg api not have hide searching process function and lua run in line by line not have multithread1 point
-
CmP explained y9u can not do anything about that. So now just focus on the scripting. _______________________________________________ added 2 minutes later CmP explained y9u can not do anything about that. So now just focus on the scripting.1 point
-
1 point
-
You can't write like this. os.exit is a function and goto operator only works with labels. Either you make a call to the function (remove goto operator) or you jump to some label (replace os.exit() with label name), choose one option.1 point
-
Unfortunately, as I have written, you CAN'T protect the strings that are being searched in your script. If the user is able to run the script, then he can also find out, what strings were searched by the script. There is built-in GG feature, that logs every call to GG API in a text file, so if your script executes, for example, gg.searchNumber('123', gg.TYPE_DWORD), then user will see it in log file.1 point
-
hey its better in this case you let a experienced scripter explain, this. im not experienced in scripting, I just find cheats and put it in script a scrip with the scripting I learned on the HELP. but I do not understand why you are using "goto" and the code you wanne add is like "function", for what I learned function is better to use. change your hole scripts in to function.1 point
-
Creatures timer and xp hack video if anyone needs it Level 1 Niffler bond might be 3 hours so you search 10800 seconds instead. https://www.youtube.com/watch?v=Eh-LHxhBR241 point
-
Not bad script, but it lacks error handling in some cases. Source code that you have published contains some unreadable symbols which cause lua interpreter to fail. Removed them and fixed indentation (other things weren't changed) decompiler.lua1 point
-
-1 points