Jump to content

AKidWithMidgetFriend

Ascended
  • Posts

    354
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by AKidWithMidgetFriend

  1. The item i.d is more than likely tied to the float. Try to change every one but the float and hope that the float changes on its own or doesn't need changed. Sometimes you will find that the float is effected by quantity and will change with the change of quantity for the item and other times you will find that the amount of items and the item itself are stored differently. However if compensating for the float does not bring you success then perhaps go to the address of one of those values and see if there might be any stored information near those values that maybe of use i.e. another address with values correlating to something nearby the object in the game such as inventory slot assigned or whatever. It may also be helpful to have an inventory slot with 10 of the desired change item and another with 15 or 20 of the same item to see if quantity may effect the float value. I cannot any of this will work however and if it doesn't I can only hope you do not blame me for such and instead reconvene with this conversation and brainstorm for other possible solutions
  2. Try search nearby but I can't even get the game to load in parallel space sorry. I would've helped if I could but I've had this problem with a fair bit of games like minecraft and FAU-G at this point I think my device has a problem running certain types of games in parallel
  3. Often times I see numerated values tied to bars like health that are numerically labeled but their real values being in proportion to it instead of directly tied to it ( for example health bar said 1000 but the value was stored as a 100, and if the 1k would decrease by 100 then the stored value of 100 would only decrease by 1. So although my health bar was saying 990 my health was actually stored as 99) to try to work around this try using fuzzy search. Although I wouldn't do auto as this may load too may results and take longer than necessary. You will commonly see these values stored as DWord, Double, or Float values. Search fuzzy in DWord first as you might not need to search the other two if it comes up here. If this still does not provide your desired value then it is most likely stored server sided
  4. Some online games are modifiable and some aren't. It depends on how the information is stored. In the cases that nothing comes up after several refines then it might be encrypted. If nothing comes up encrypted then the value is server sided. If the wrong number comes up but changes exactly as the desired value does (decrease when desired value decreases increase when it increases stays the same when untouched) then the value is possibly encrypted like with a XOR key or other encryption method. When a value changes back then there's a possibility that you are only changing the display value and that there's another value that actually determines quantity. Trial and error are the only ways to truly determine some of these values for some of these games until you get a feel of things and even then you'll still be surprised when some games don't work like others that they are similar to.
  5. You're implying theres something wrong with wanting to keep your devices security intact?
  6. AKidWithMidgetFriend

    iOS

    Well this is a tool that can be accessed any time on the side of the screen. It scans an apps memory and how it scans is entirely up to user input. Although it does more than memory scanning and executing that's primarily what it does. You can execute prewritten lua scripts in gg to automate searches or do actions autonomously. You will more than likely be searching DWord or double values and as for the memory range of the app you'll likely be searching either Ca Cd or A. As for tutorials and resources this forum should have all the links and proper resources you need however if you are looking for more specified actions for certain games perhaps check if there are any youtube videos on it if not then try to search these forums for the game or any keywords for what you're trying to do
  7. You created your account 4/11/16 not 12/4/16, and running the URL through urlvoid and barracuda it had turned up to be black listed on 6 domain checking sites the ip of the site had also been black listed Twice. They have every right to believe the link is suspicious because it very well is.
  8. AKidWithMidgetFriend

    iOS

    Have not tried it but i looked it up and it seems like a game that you could I'd recommend learning your way around game guardian with video tutorials and through trial and error, and maybe even learn to script too! The others and I on this forum will always try to help
  9. AKidWithMidgetFriend

    iOS

    Android 7 should be sufficient there might be a complication with the device if so then @Enyby would be able to tell you if you provide a logcat. However a few things you might want to ensure you're doing before you have to resort to waiting for his response. Fitaly ensure that you have installed GameGuardian and A virtual space from this site Secondly you want to ensure you run the installer for game guardian outside of the virtual space so it will install under a different name outside of the parallel space-then clone the newly random named gg application into your virtual space If you are still being returned an error during the installation or setup process please let me know and please provide as many details on the error or crash as possible!
  10. You'd have to set up a function for the menu, and then set up a prompt in one of those menu choices. I did something like this in my merge dragons script if you're looking for code to use as reference. You should have something like --- function SCRIPT() menu = gg.multiChoice({ 'Open Prompt', 'Exit', }, nil, 'AKidWithAMidgetFriends Exameple PromptMenu') if menu==nil then gg.alert('Menu Closed') else if menu [1] then PROMPT() end if menu [2] then exit() end end end function PROMPT() local A = gg.prompt({'Level' ,'Card You Have' }, nil ,{[1] = 'number', [2] = 'number'}) val = A[1]..";"..A[2] -- <<<< this is just a concatenation being made into a local variable to search both prompted values and then later edit them both. To edit them separately you could just call on the prompt and index i.e. our Prompt here is A so now we just call an index for the prompt we only have two indexed values so it will either be [1] or [2] if A == nil then gg.alert('Prompt Minimized') gg.setVisible(false) else gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber( val, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)N NESTEDFUNCTION() end end function NESTEDFUNCTION() -- This is a demonstration of nesting a function inside a function the script will go to this function when the line NESTEDFUNCTION() inside of Prompt is called. With this you can make a menu inside a menu or you could nest multiple functions inside of it that only call under specific situations using if then statements
  11. Maybe they added memory editor detection? I don't play the game however I have seen enyby explain that some of these crashes can be caused by detection software and the work around being using gg in root and using the root hiding and bypass options, but rooting your device can be a bit risky so maybe try using a rooted virtual machine or virtual space on your device like VMOS then running gg rooted in that? Unless you have already taken the aforementioned steps and it isn't working for you then I just simply do not know:( hope this helps though!
  12. If you're going about this method and the skin can be accessed like this then you'll likely see it stored as a Float value as for memory range i wouldn't have a clue so maybe trial and error and try each individually
  13. Each .so file handles different types of data storage but you can tell which of which through trial and error, and il2cppdumper to decompile dnspy to view afterwards but sorry if that's a little vague as I do not libil2cpp hack often. @NoFear would probably be better suited to give you resources to learn from or to provide further information
  14. Hmmm. By "but when ever i get new card or i level up i have to change values" more specifically the "change values" part do you mean that the address for them changes? Or do the values just reset back to what they'd be unedited? If the address keeps changing then you can try searching nearby the address (use GG's record script action on an empty note or file.txt for an easy outputted code but becareful as to not record script over your actual script because it does overwrite the file that it records to) searching nearby the address would help the script find the new address quickly. However if the values are changing and the address is staying the same then I'd try saving them as list items and setting it up to where if those values aren't equal to a hacked number then edit the list values back up to being hacked
  15. Use an app like DevTools(By Trinea on the app store the pro version has the .so puller command unlocked but you can use lucky patcher on this app however I would heavily recommend just buying the pro version and supporting the developers hard work. Lucky patcher is risky and a pain in the a** to learn if you aren't familiar with it already anyways and it isn't really worth doing seeing as though the pro app is only roughly 4$)To pull the .so file(s) and then decompile and edit those files
  16. Then modify the refine number to be 2;3 instead of just three this will give you only the two and threes from the list then with the editAll you want to do it in the same order as they were refined if you wanted to change that 2 into an 8 and that 3 into a 99 then it would look like gg.editAll('8;99', gg.TYPE_DWORD) **EDIT** If I'm remembering wrong and that does not work you can always save the list items after refining it down to 2;3 and then refining to 2 editing the 2 then loading the saved list items and refining down to 3 and editing it as well. This wouldnt be recommended if the first method works because it is a lot more work
  17. Setting a proper memory range (say if these three values were in the Anonymous memory range then add a gg.setRanges before your search) this will severely reduce the number of results that turn up. Secondly the gg.getResults shouldn't be limited to 3 you will more than likely be returned the wrong values. Return it to the default 100 or around the same number of results you're returned without the script. These are what I believe are preventing your script from editing the proper values @canjianfei assuming that you already have a menu set up to execute the code.
  18. There might be a corresponding encrypted value that needs to be changed with it, but if this fails then there's a chance it's server sided and can't be changed
  19. This game is rather large so I cannot download it as of tonight, however tomorrow I'll let you know what I can do and if a script is developed I will tag you in the comment section
  20. Using the playstore version will make game guardian return a Failed to Load daemon error in some cases and gg not working in general as well. Short answer yes you could but game guardian most likely will not work with the playstore version
  21. View File Merge Dragons Script My first script using Prompts for the game merge dragons. It searches your input and detects decreases in any of those input fields. Meaning of you wanted all three input fields to be hacked then you'd need to ensure the value in each field decreased after the spend something alert Submitter AKidWithMidgetFriend Submitted 01/25/2021 Category LUA scripts  
  22. Version 1.0.0

    2,507 downloads

    My first script using Prompts for the game merge dragons. It searches your input and detects decreases in any of those input fields. Meaning of you wanted all three input fields to be hacked then you'd need to ensure the value in each field decreased after the spend something alert
  23. AKidWithMidgetFriend

    iOS

    I don't think it matters. The information you edit with game guardian is client side data. Whatever you can hack in online games is going to be client side data. The data that can't be hacked is server sided data, but either way cellular data or wifi apps connect to their servers about the same way so this wouldn't be a factor here ***IN SHORT**** This should work on both
×
×
  • 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.