Leaderboard
Popular Content
Showing content with the highest reputation on 10/24/2024 in all areas
-
2 points
-
1 point
-
1 point
-
hmmm..im not 100% sure but that percentage values are very easy to search. Float type and the number are exactly as it is. 100% = 100 in Float can do an ordered group search starting from value at the top to bottom. the edited values stay even you change to another location but not after restart. need to search it again. i did tested it and it worked.1 point
-
1 point
-
Season pass hack by @NoFear is still working. just increase group size to 4509 edit as usual Armv8 only UTF-8 search for new season points = :SSPDecor13EgyptPoints.amount using HEX search = h 1C 00 00 00 53 53 50 44 65 63 6F 72 31 33 45 67 79 70 74 50 6F 69 6E 74 73 2E 61 6D 6F 75 6E 741 point
-
Jurassic World: The Game how to get a locked dinosaur? (#565mo0gd)1 point
-
yes its Dword. try with the highest price possible. group search then refine to the price value. there will much less results to deal with. then use increment edit to find the correct one.1 point
-
1 point
-
1 point
-
i'll give you some ideas. lets see if you can do some thinking and figure it out. a DWORD value typically 4 bytes in size. so for 2 Dword type values that are adjacent in memory, the group size/distance between is 4 bytes = 1D;1D::4 but by default GG will add 1 to it and suggest 5 = 1D;1D::5 the same as below. there are 4 distances(;) between the 5 values or 4 Dword values after the 1st. so group size will be : = 4 x 4 = 16 GG add 1 = 17 = 1D;1D;1D;1D;1D::171 point
-
Hello, hackers, I've played this game for a long time back in the 2008-12 and then it disappeared out of my memory. And now it came to my mind again after ten years and it still rocks. But I wanted to use GG to alter values & currencies. But it seems that it's unhackable or there's just an advanced way to hack it. In offline mode, the game detects GG and other hacking tools, Lucky Patcher, even though they have different names. And I'm using the game in the stock/rom storage (what I mean is, I'm not using Xposed or Virtual Spaces). But in online mode, when connected to the internet, it doesn't detect any cheater apps. So this works with it... I've tried Auto-Search with Encrypted values but at the end no change could be applied to the values. And with other search methods, such as Word, Qword, etc, the values are easily shown but yet can't be changed. I've used these methods from these pages: Castle TD: Purple Crystal Value (#2rusx5xk) [REQ] Castle Defense / Castle TD (#4saub9wu)[REQ] Castle Defense / Castle TD (#2qh7yscm) Yet no luck! I'd be very thankful for any help in this topic!1 point
-
in basic, it will be like this : --after search and refine local start = gg.getResults(1) local target = start[1].address + 0x990 --editing gg.setValues({ {address = target, flags = gg.TYPE_DWORD, value = 999999} })1 point
-
1 point
-
gg.clearList() https://gameguardian.net/help/classgg.html#a6c58075296a69351c0716745c53586a71 point
-
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() end1 point
-
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.1 point
-
1 point
-
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?1 point
-
1 point