Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/20/2017 in Posts

  1. Need specify full path. And you can not write on any place in Android. Something like gg.CACHE_DIR .. "/your.file.txt" can get you full path to file in writable dir. And you need work with `io` lib. I do not know what is that `FileSystem:WriteFile` or `gg.open` or `fs.open` or `textutils`. Google "lua io save file". For example: https://www.tutorialspoint.com/lua/lua_file_io.htm -- Opens a file in read file = io.open("test.lua", "r") -- sets the default input file as test.lua io.input(file) -- prints the first line of the file print(io.read()) -- closes the open file io.close(file) -- Opens a file in append mode file = io.open("test.lua", "a") -- sets the default output file as test.lua io.output(file) -- appends a word test to the last line of the file io.write("-- End of the test.lua file") -- closes the open file io.close(file) You can run print(io) For get list of available functions in `io` table.
    1 point
  2. function conv(B1) return 1072693248+1048576*math.floor(math.log(B1)/math.log(2))+math.floor(1048576*((B1+B1-math.pow(2,math.floor(math.log(B1)/math.log(2))+1))/math.pow(2,math.floor(math.log(B1)/math.log(2))+1))) end local d = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} while true do while not gg.isVisible() do gg.sleep(100) end d = gg.prompt({'health 1', 'attack 1', 'health 2', 'attack 2', 'health 3', 'attack 3', 'health 4', 'attack 4', 'health 5', 'attack 5'}, d, {'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number'}) if (d == nil) then os.exit() end for i = 1, 10, 2 do gg.clearResults() local s = conv(d[i])..';'..conv(d[i+1])..'::1024' gg.searchNumber (s, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) local log = i .. '; request = "' .. s .. '"; found = ' .. gg.getResultCount() .. '; edited = ' .. gg.editAll(conv(9999999999), gg.TYPE_DWORD) print(log) -- gg.toast(log, true) end gg.toast('Click on icon for next search') gg.setVisible(false) end
    1 point
  3. Since xor is already a search in gg, I kept finding games that used dword values to xor. So that "53" value you unknown search for, you would just search the exact value. The search would automatically be checking dword values 4bytes apart and seeing if the xor value matches your search. It would be a huge addition to GG and this is me bothering Enyby every week for 3 months and giving him a list of games that use this. Enyby adding this will allow us to EASILY hack games that use this... I have a running list of titles this applies to. And for his hard work doing this, I would like to see many users thank him in anyway they can.
    1 point
  4. Of course. Second table can contain default values. But you need learn lua. I do not write scripts for everyone. This is just example.
    1 point
  5. Description: extracts PE-files (.exe, .dll, etc.) from .bin files. For example, memory dumps. For example, from the one that can be obtained through GameGuardian. Use cases: 1. .exe file to be placed in one folder with a .bin file (s) and run. 2. On the .exe file, drag the folder with the .bin file (s). 3. Write in the command line: > get_dll_from_bin.exe path/to/your/.bin/files Result: In the same folder where there were .bin files there will appear .dll files if something was found. Example of output: Usage: drag dir with .bin files to .exe. Tool scan its and extract pe files as .dll files in same folder. Author: Enyby. Used dir: dump dump/com.raongames.growcastle-00008000-0000a000.bin: dump/com.raongames.growcastle-04000000-1c106000.bin: Not valid PE header: 2e746578 dump/com.raongames.growcastle-1c179000-1c17c000.bin: dump/com.raongames.growcastle-94ebb000-95161000.bin: Make 0.dll with size 2737152 dump/com.raongames.growcastle-95169000-951ae000.bin: dump/com.raongames.growcastle-951c6000-95321000.bin: Make 1.dll with size 359424 Make 2.dll with size 878592 dump/com.raongames.growcastle-95325000-95335000.bin: dump/com.raongames.growcastle-9533d000-95583000.bin: Make 3.dll with size 309248 dump/com.raongames.growcastle-95783000-96fe2000.bin: Make 4.dll with size 1684480 dump/com.raongames.growcastle-96fe5000-97371000.bin: dump/com.raongames.growcastle-976f5000-b7756000.bin: dump/com.raongames.growcastle-b7942000-bac40000.bin: Make 5.dll with size 3072 Make 6.dll with size 9728 Make 7.dll with size 171520 Make 8.dll with size 103936 Make 9.dll with size 6656 Make 10.dll with size 10240 Make 11.dll with size 13824 Make 12.dll with size 24576 Make 13.dll with size 65536 Make 14.dll with size 47104 Make 15.dll with size 9216 Make 16.dll with size 41472 Make 17.dll with size 66560 Make 18.dll with size 44032 Make 19.dll with size 18432 Make 20.dll with size 29184 Make 21.dll with size 33280 Make 22.dll with size 175616 dump/com.raongames.growcastle-bf810000-bf831000.bin: Download: https://gameguardian.net/forum/files/file/7-utility-for-extracting-dll-files-from-various-dumps/ Old links:
    -1 points
×
×
  • 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.