Jump to content

MonkeySAN

Contributor
  • Posts

    1,722
  • Joined

  • Last visited

  • Days Won

    109

Everything posted by MonkeySAN

  1. and for this game, the values changed as shown by @sammax71as you leveled up. but the group search remain the same = 75000;1500
  2. 75000;1500 its called a group search. search for 2 or more values separated with semicolon. group search allows us to search for multiple values at once within a specific memory range. results is not guaranteed as not all games implemented it in their codes. also having found results doesnt always mean its the correct one that you're looking for.
  3. playstore link to the game?
  4. VID_20240430035932.mp4
  5. maybe try this : TEST_ColorWood[mod].lua its a modified @nok1a script from this thread : value reset problem (#9m1e29u2) so far its working just fine for 64bit. credits goes to @nok1a as i just merely made changed where it was needed. honestly i wasnt expected it will work. for any explanations, @nok1a will be the right person to do so.
  6. ok. Good luck.
  7. public class DataBaseScript : MonoBehaviour public int Quest_Get_Gem_Normal(int Quest_numb) // return a high amount if you want (like 100K) Offset = 0x11754BC public bool Quest_Bool_Normal(int Quest_numb) // return true to redeem quest reward infinitly Offset = 0x119EF8C for 64bit/armv8 Quest -> Dungeon
  8. welp.. search and refine the Gems value above directly. Dword in Anonymous. once edited..it trigger the ban.
  9. you edited the Gems value and get away with it? i got this right away after changed the Gems value. everything else seems fine to edit.
  10. well maybe or maybe not. because it takes a lot of time to make a script with that many hacks and making sure every hack work as it should be. and it take much longer time to test the script to make sure its working perfectly on most platform or devices or whatever you use.. be it emulator, virtual apps/machine. for now its working with my device only. i cant say the same for others as i have no other resources to test with. but i were to released it..i will not release it half baked.
  11. not worry for me. i made a script for myself with all the hacks.
  12. gg.clearList() https://gameguardian.net/help/classgg.html#a6c58075296a69351c0716745c53586a7
  13. nope. the "Stop bruh" is not from GG system message. it was written into the script after you encrypt your script with encryption script/tool.
  14. it just the script ended message could be more details instead of just "Stop bruh" maybe something like "your virtual app is not compatible with the script.Please use another" so people dont have to guess what they are doing wrong.(for less knowledgeable people)
  15. a virtual app if that what you meant. yes.
  16. you should check this out : Life in Adventure (#c8xgjwcn)
  17. so whats happen here..
  18. add this gg.setValues(t) before gg.removeListItems(t)
  19. maybe this will work? local nBV = { [1248889551] = 2000, [1248889552] = 4000, [1248889553] = 6000, [1248889554] = 8000, [1248889555] = 10000} local PromptN = gg.prompt({[2] = 'Enter Current Gold Storage Capacity :', [1] = 'Enter Ideal Gold Storage Capacity : [2000 ~ 10000]'}, {[2] = 2000, [1] = 10000}, {[2] = 'number', [1] = 'number'}) if not PromptN or PromptN[1] == "" or PromptN[2] == "" then gg.toast('Canceling, Please Enter a Value!') else local num1 = PromptN[1] local num2 = PromptN[2] gg.clearResults() gg.clearList() -- Find the key corresponding to the user input value local targetKey local editKey for k, v in pairs(nBV) do if v == tonumber(num2) then targetKey = k elseif v == tonumber(num1) then editKey = k end end -- Search and replace the current value with the target value if targetKey and editKey then gg.alert("Search value = "..targetKey.."\nEdit with = "..editKey) gg.searchNumber(targetKey, gg.TYPE_DWORD) local result = gg.getResults(gg.getResultsCount()) if #result == 0 then gg.alert("Values not found") os.exit() end gg.editAll(editKey, gg.TYPE_DWORD) else gg.toast('Value not found in the table!') end gg.clearList() gg.clearResults() end
  20. a simple solution without the local table nBV will be look like this : local PromptN = gg.prompt({[2] = 'Type Gold Storage Capacity Right Now', [1] = 'Type Ideal Gold Storage Capacity [ 2000 ~ 10000 ]'}, {[2] = 2000, [1] = 10000}, {[2] = 'number', [1] = 'number'}) if PromptN[1] == nil or PromptN[1] == '' or PromptN[2] == nil or PromptN[2] == '' then gg.toast('Canceling, Please Type Values!') else local num1 = PromptN[1] local num2 = PromptN[2] gg.clearResults() gg.clearList() gg.searchNumber(num2, gg.TYPE_DWORD) gg.getResults(gg.getResultsCount()) gg.editAll(num1, gg.TYPE_DWORD) gg.clearList() gg.clearResults() end but if the table is somehow super important then i'll let the expert fix it.
  21. try this.. ... gg.copyText(printRes,false)
  22. MonkeySAN

    Gg required

    after installing.. GG will reinstall itself with random package name. that means in every device the package name will be different. even in the same device package name will be different for each and every installment. on what purposes you want to use GG package name instead of its version?
  23. NO.
  24. what script? and which old link that is not available?
×
×
  • 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.