Jump to content

All Activity

This stream auto-updates

  1. Today
  2. for the jewels i think you can just patch one of those jewel methods of the DataController class. Have you already tried?
    Works good and is fast
  3. View File Speed Hack Finder Finds game speed value (multiplier) for 100% Unity games / 20% Non-Unity. Edit Float as a multiplier (2.0=2×speed, 10.0=10×speed, 0.25=1/4 speed) Option to copy full code so you can paste into your own scripts. Submitter APEXggV2 Submitted 12/02/2025 Category Tools  
  4. yup. new dinos came with new game update. in some region, update show up earlier in their Playstore than other. always remember to check for an update before trying anything new.
  5. apparently there is an update. now they are there
  6. seem fine to me. trade Coins with Jurassic.
  7. Version v01

    51 downloads

    Finds game speed value (multiplier) for 100% Unity games / 20% Non-Unity. Edit Float as a multiplier (2.0=2×speed, 10.0=10×speed, 0.25=1/4 speed) Option to copy full code so you can paste into your own scripts.
  8. all 3 crash the game for me when trying to get the from the trade harbor
  9. Play Store URL: https://play.google.com/store/apps/details?id=com.soulcastry.virtualdroid2 No matter what I tried I couldn't hack the game's coins and gems/diamonds, I would really appreciate it if someone could help/find a way to do it.
  10. Thanks for this script ! it work for me . i tested in mumuplayer , it work flawlessly. so it mean that we need to get the address range from global-metadata.dat but not from libil2cpp.so right ? For now my gold is crazy high due to editing these value . i still can not find manually the gold value by myself even though i tick all the memory region associate with the game. can you do for jewel too ?
  11. Help - cant find any Dword value in Bluestacks. It will find results for "new searches," but won't find anything after a "refine search." and i'm doing the most basic search... anyone else experiencing this? MonkeySAN's scripts works for me.... my searches work on Nox, but NoxPlayer is slow so dont want to play there...
  12. I think it worked, but it took so much effort that I’m not even sure it was worth it . Anyway, it’s been 7 days since the account was created and it still hasn’t been banned.
  13. Yesterday
  14. Scolosaurus ; 378,474,081 Skoolasaurus ; 1,564,722,760 Skoonasaurus ; 1,869,980,874
  15. I usually manually search the fields and classes. There are tutorials on how to do it i guess: While searching for the Gold, i had to make some script to make stuff a bit more easy for me. Not sure if the script will work for you because i only test on LDPlayer x86-64 where stuff might be a bit different then the usual device but maybe it works for you if your running 64bit: gg.clearResults() local range = gg.getRangesList("global-metadata.dat") function resultsList() local count = gg.getResultsCount() local results = gg.getResults(count) gg.clearResults() return results end function ptrToStr(str) gg.searchNumber(str, gg.TYPE_BYTE, nil, nil, range[1].start, range[1]["end"]) local a = gg.getResults(2) local tab = {[1] = a[2]} gg.clearResults() return tab end gg.setRanges(gg.REGION_OTHER) local ptr_datacontroller = ptrToStr("h 00 44 61 74 61 43 6F 6E 74 72 6F 6C 6C 65 72 00") local ptr_jsonnum = ptrToStr("h 00 4A 53 4F 4E 4E 75 6D 62 65 72 00") function srch_obj_datacontroller() gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_ANONYMOUS) gg.loadResults(ptr_jsonnum) gg.searchPointer(0) local a = resultsList() for i, v in ipairs(a) do v.address = v.address - 0x10 end gg.loadResults(a) gg.searchPointer(0) gg.searchPointer(0) local class_start = resultsList() for i, v in ipairs(class_start) do v.address = v.address - 0x78 end class_start = gg.getValues(class_start) local class_name = {} for i, v in ipairs(class_start) do class_name[i] = {address = v.value + 0x10, flags = v.flags} end class_name = gg.getValues(class_name) local class = {} for i, v in ipairs(class_name) do if (class_name[i].value == ptr_datacontroller[1].address) then class[1] = class_start[i] break end end return class end local obj_DataController = srch_obj_datacontroller() local vals = gg.getValues( { {address = obj_DataController[1].address + 0x78, flags = gg.TYPE_QWORD}, {address = obj_DataController[1].address + 0x80, flags = gg.TYPE_QWORD}, {address = obj_DataController[1].address + 0x88, flags = gg.TYPE_QWORD}, {address = obj_DataController[1].address + 0x90, flags = gg.TYPE_QWORD}, {address = obj_DataController[1].address + 0x98, flags = gg.TYPE_QWORD}, {address = obj_DataController[1].address + 0xA0, flags = gg.TYPE_QWORD} } ) gg.addListItems( { {address = vals[1].value + 0x10, flags = gg.TYPE_DOUBLE, name = "Double_StageClearGoldFirst"}, {address = vals[2].value + 0x10, flags = gg.TYPE_DOUBLE, name = "Double_StageClearGoldWeightedValue"}, {address = vals[3].value + 0x10, flags = gg.TYPE_DOUBLE, name = "Double_StageClearGoldWeightedValueForEachStage"}, {address = vals[4].value + 0x10, flags = gg.TYPE_DOUBLE, name = "Double_StageClearGoldWeightedValueForStanddardStage"}, {address = vals[5].value + 0x10, flags = gg.TYPE_DOUBLE, name = "Double_RecallGoldFirst"}, {address = vals[6].value + 0x10, flags = gg.TYPE_DOUBLE, name = "Double_RecallGoldWeightedValue"} } )
  16. Kurollo

    Miscrits

    i'd like to know too but i'm pretty sure the majority of online games that are server based cannot be hacked with gameguardian
  17. How to get SPECIAL ID's (MODS)
  18. how do you get the gold value in region A ? i find the gold value but found nothing , be it dword or double value. can you make a video or written tutorial for this game ? i used to be at level 400 before the game crash and lost all the data
  19. i think i used this script several years ago . i forgot how but i think it work . For now , i put the offset , test all the thing related to gold make the game force close. same goes to jewel.
  20. The method with addcurrency and spendcurrency stopped working. When searching for spendCurrency , there's no function entry point (the purple address is 6 notches up).
  21. Last week
  22. The values that you could edit at those fields for increase gold have become pointers that point to the gold, that's maybe why your old method with the script wasn't working? But once you go to the pointer you can find your gold value at + 0x10 from it's address. Your old gold value belongs now to the class JSONNum which has more then 30k instances (didn't check in the dump if it was class, might not be a class)...so it's better to find the gold through the class you shared. Editing on the gold value in region A worked for me, so i assume that the script that ApexGG shared will work as well for patching the methods of that class (if it are the correct methods). But i honestly got no idea if editing methods of this class work as it should since i didn't try modifying those instructions. But i assume it does, give it a try.
  23. it still works on a16, to get around the sdk error install via adb install --bypass-low-target-sdk-block app.apk
  24. Well @MonkeySAN you are great, to be honest I can't thank you enough. You are a great contributer to this community. Thanks you
  25. niwinay

    Penguin Isle

    yeah i already hack cat and soup with CE but i wanna try hack unlock item like other games with game guardian if possible, can you hack the in app purchases of this game? oh and i interest on IAP hack abysrium too
  26. here. ise this script. entwr the method offset for public double GetGold() {} and enter how much gold you want and select double. you might have to spend/earn to see change (if this is even the correct hack) Lib Offset Hook Editor/Tester (#99u2qcpa)
  1. Load more activity
×
×
  • 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.