Jump to content

notzagred

Members
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

notzagred's Achievements

Rookie

Rookie (2/14)

  • One Month Later
  • Dedicated Rare
  • Week One Done
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. please help me to get value in filter script this my code gg.setRanges(gg.REGION_ANONYMOUS) -- Set memory range to anonymous gg.clearResults() -- Clear previous results gg.searchNumber("2096;10::5", gg.TYPE_DWORD) -- Search for 2096 and 10 with distance 5 gg.refineNumber("2096", gg.TYPE_DWORD, false, gg.SIGN_NOT_EQUAL) -- Exclude 2096 local res1 = gg.getResults(gg.getResultsCount()) for i, v in ipairs(res1) do res1[i].address = res1[i].address + 8 res1[i].flags = gg.TYPE_DWORD end gg.loadResults(res1) gg.searchNumber("12~199", gg.TYPE_DWORD, true, gg.SIGN_EQUAL) -- Search for 12 to 199 local number = gg.getResults(1) local res2 = gg.getResults(26) for i, v in ipairs(res2) do res2[i].address = res2[i].address + 8 res2[i].flags = gg.TYPE_DWORD end gg.loadResults(res2) -- Load modified results gg.searchNumber(dword value from filter 670, gg.TYPE_DWORD, false, gg.SIGN_EQUAL) I want to get value from result 26 above and filter it with '670$' and copy dword this hex 3E9EC670 and search dword value from 3E9EC670 Record_2024-07-19-11-58-22_9e8df3d0c7c1f50248b6ee043a653d26.mp4
  2. notzagred

    Help Dump FC MOBILE

    i cant find metadata file please help me to get dump.cs file Results: lib/arm/libFIFAMobileNeon.so : 0x3dc : 0.20000000298023224 lib/arm/libFIFAMobileNeon.so : 0x848 : 0.20000000298023224 lib/arm/libFIFAMobileNeon.so : 0x8f8 : 0.20000000298023224 Exit. Results: lib/arm/libFIFAMobileNeon.so : 0x3dc : 60.0 lib/arm/libFIFAMobileNeon.so : 0x848 : 60.0 lib/arm/libFIFAMobileNeon.so : 0x8f8 : 60.0 Exit. Results lib/arm/libFIFAMobileNeon.so : 0xda0 : 0.5899999737739563 Exit. Results lib/arm/libFIFAMobileNeon.so : 0xda0 : 0.15000000596046448 Exit.
  3. im getting same problem @kiynox
  4. for wich line i put this code? @kiynox
  5. function D() gg.setRanges(gg.REGION_ANONYMOUS) gg.getResults(gg.getResultsCount()) gg.clearResults() gg.searchNumber("", gg.TYPE_DWORD) gg.refineNumber("", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.startFuzzy(gg.TYPE_FLOAT, gg.getResults(1)[1].address - 100, gg.getResults(1)[1].address - 92) gg.clearResults() function doAction() if gg.alert([[ PRESS THE CORRECT SIDE OF TO MAKE A GOAL If you are in 0 to 45 min of the match press - If you are in 45 to 90 minutes of the game press +]], "GOOOLLL +", "GOOOLLL -", "BACK") == 1 then STM0[1].value = math.random(175, 177) STM0[2].value = math.random(1, 5) STM0[3].value = math.random(-5, 5) gg.setValues(STM0) end if gg.alert([[ PRESS THE CORRECT SIDE OF TO MAKE A GOAL If you are in 0 to 45 min of the match press - If you are in 45 to 90 minutes of the game press +]], "GOOOLLL +", "GOOOLLL -", "BACK") == 2 then STM0[1].value = math.random(-177, -175) STM0[2].value = math.random(1, 5) STM0[3].value = math.random(-5, 5) gg.setValues(STM0) end if gg.alert([[ PRESS THE CORRECT SIDE OF TO MAKE A GOAL If you are in 0 to 45 min of the match press - If you are in 45 to 90 minutes of the game press +]], "GOOOLLL +", "GOOOLLL -", "BACK") == 3 then gg.clearResults() dosf() end end gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) doAction() end end end im always getting this error Script error: luaj.o: /storage/emulated/0/SCRIPT/Simple Multi menu.lua:41 STM0[1].value = math.random(175, 177) attempt to index? (a nil value) with key '1' (global 'STM0') level = 1, const = 24, proto = 0, upval = 1, vars = 5, code = 93 GETTABLE vo vo 1 can you guys help me please
×
×
  • 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.