Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/21/2022 in all areas

  1. Look at function number 2 (selectconditions) and the last function (searchandrefine). When I run this and select some stuff, it says there is an attempt to index a nil value (encrypted) in function searchandrefine. But I clearly define encrypted as encrypted = gg.multiChoice in function selectconditions. Can someone please fix my code? Thanks! function wait_for_action() gg.setVisible(false) while true do gg.sleep(500) if gg.isVisible()then break end end end function selectconditions(encrypted) if encrypted == 1 then encrypted = gg.multiChoice({'Encrypted'},nil,'Is the value encrypted?') end signs = {gg.SIGN_EQUAL,gg.SIGN_NOT_EQUAL,gg.SIGN_GREATER_,gg.SIGN_LESS,gg.SIGN_GREATER_OR_EQUAL,gg.SIGN_LESS_OR_EQUAL} signchoice = gg.multiChoice({'=',' ≠','>','<',' ≥','≤'},nil,'What condition?') i = 0 while not signchoice[i] do i = i + 1 end sign = signs[i] end function selecttype() menu = gg.multiChoice({'Auto','Dword','Float','Double','Word','Byte','Qword','Xor'},nil,'What type to search?') if menu == nil then else if menu[1] then a = 1 type = gg.TYPE_AUTO end if menu[2] then a = 1 type = gg.TYPE_DWORD end if menu[3] then a = 1 type = gg.TYPE_FLOAT end if menu[4] then a = 1 type = gg.TYPE_DOUBLE end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end end while a == 0 do a = 0 menu = gg.multiChoice({'Auto','Dword','Float','Double','Word','Byte','Qword','Xor',},nil,'What type to search?') if menu == nil then else if menu[1] then a = 1 type = gg.TYPE_AUTO end if menu[2] then a = 1 type = gg.TYPE_DWORD end if menu[3] then a = 1 type = gg.TYPE_FLOAT end if menu[4] then a = 1 type = gg.TYPE_DOUBLE end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end end end end function selectranges() menu = gg.multiChoice({'Jh: Java heap','Ch: C++ heap','Ca: C++ alloc','Cd: C++ .data','Cb: C++ .bss','PS:PPSSPP','A: Anonymous','J: Java','S: Stack','A: Ashmen','V: Video','O: Other','B: Bad','Xa: Code app','Xs: Code system','Reset','All'},nil,"Select memory ranges. If you don’t know what this is, select “All”.") ranges = "" if menu[1] then ranges = ranges .. "gg.REGION_JAVA_HEAP | " end if menu[2] then ranges = ranges .. "gg.REGION_C_HEAP | " end if menu[3] then ranges = ranges .. "gg.REGION_C_ALLOC | " end if menu[4] then ranges = ranges .. "gg.REGION_C_DATA | " end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end gg.setRanges(ranges) end end function searchandrefine() gg.clearResults() selecttype() selectconditions(1) value = gg.prompt({[1] = 'What is the value?'}, {[1] = '0'}, {[1] = 'text'}) gg.searchNumber(value[1], type, encrypted[1], sign) while gg.getResultsCount() > 10 do gg.alert('Make the value change, then click the gameguardian icon.') wait_for_action() gg.refineNumber(value[1], type, encrypted[1], sign) value = gg.prompt({[1] = 'What has the value changed to?'}, {[1] = '0'}, {[1] = 'text'}) end continue = gg.multiChoice({'There are' .. gg.getResultsCount() .. 'results left. Would you like to continue refining?'},nil,'') while continue[1] or gg.getResultsCount() < 2 do gg.alert('Make the value change, then click the gameguardian icon.') wait_for_action() gg.refineNumber(value[1], type, encrypted[1], sign) value = gg.prompt({[1] = 'What has the value changed to?'}, {[1] = '0'}, {[1] = 'text'}) continue = gg.multiChoice({'There are' .. gg.getResultsCount() .. 'results left. Would you like to continue refining?'},nil,'') end end searchandrefine()
    1 point
  2. Oh thanks, so my parameter and variable had a contradicting name! Easy fix, thanks for finding! WDYM?
    1 point
  3. Change this function selectconditions(encrypted) if encrypted == 1 then encrypted = gg.multiChoice({'Encrypted'},nil,'Is the value encrypted?') To function selectconditions(is_encrypted) if is_encrypted == 1 then encrypted = gg.multiChoice({'Encrypted'},nil,'Is the value encrypted?') "encrypted" is a local variable when passed to a command like this and cant be set as a global vatiable of the same name
    1 point
  4. well..the Score actually can be search directly in Float. if im not mistaken..its nearby Coins value which also in Float. find the Coins then goto.
    1 point
  5. The picture isn't working. Can you tell me what you found about score multiplier? @FluidZJust prompt user for their keys, coins, and hoverboards, and do a nearby search for those values. You don't need to know exact offset!
    1 point
  6. also get Coins while running.. and Scores.. both are Float type.
    1 point
  7. Yes, I figured out pixel gun's logic!
    1 point
  8. hmm..it change somehow except for Coins to Keys offset.
    1 point
  9. My offsets are the same. Not sure why I saw or said 28 before . Must've been seeing things.
    1 point
  10. Ok, so it may not be fixed offsets. I wanted to write a script to automate the process for everyone to use. It is a bit more complicated now I will try to find another approach instead of just finding the coins and check that keys and hoverboard values are at the correct offset address. Thx.
    1 point
  11. 1 point
  12. i dont know..maybe its device related. yours could be the same as mine or him.
    1 point
  13. 1 point
  14. Hello @MonkeySAN ! How do you get names (Coins, Keys, Hoverboard) in clear text in the first screenshot? Is it address offset you have in the pop-up? Why is it 30 and not 28 as @sammax71 stated (and I found that offset too) ? Thanks in advance.
    1 point
  15. which game? cant find it in my Playstore.
    1 point
  16. Sadly i don't have patient and neither the time for play the game till i manage to get in some specific dungeons. Heard it only doesn't work in some specific dungeons. Can you describe how it looks? Does the enemy dissepear or what is happening ? No cool down works if other hacks aren't enabled. But i would need to make improvement in script because i remove the table which causes the freezing to quite. Probably at that time did not knew how to handle it. Probably know will figure out. will update script. I think you have to follow the account in case you want notification for update. teleport during attack so that you don't stay on same location while monsters attack. I mean you need to find your own use to the hacks. It does what it has to do. You use how you want to use.
    1 point
  17. the OP still hasnt come back yet to this thread? found something interesting about Score Multiplier.
    1 point
  18. really cool script you did alot job in this BUT i dont understand why there is no this weapons comet, med module(melee) comet sniper is OP and it must have buy button and med module is really usfule for raids xp farm anyway your the best!
    1 point
  19. Hi OPHAX i need your help for this edit beacuse im still newbie in GG and dont know which type of search should i select to find the correct codes. Can you explain me a little bit easier with the steps or just record on a video with showing screen touches. Thank you so much! (one blender render with the OPW 2022 case)
    1 point
  20. good job, had the same in forward assault
    1 point
  21. Good News (04/06/2022): in version 1.32 of c-ops (which has just been released), my two hacks are still undetectable by anticheat. I just played at this point, and find out that wallhack's code has changed, but I found another code better than the previous one: 1,669,333,014 (dword; Video). I say it's the best because this time, wallhack works on probably almost all maps (I didn't test at all, but wallhack worked on grounded map). Anyway, use the game guardian within multiple accounts, use the code of "aimbot", and this new code. To enable wallhack, research this new code and edit it to "1,669,333,015" (remember to use the lowest graphics).
    1 point
  22. Another option, which affects the speed of search - access to memory. It has three values: Normal - the usual option, suitable for most cases. Extended - can sometimes speed up access to memory or cause a hang-up and reset. Experimental - the same as above, but more options. All except the first, can cause problems. Try at your own risk.
    1 point
  23. I wanted to tell you the solution, but the writing made me excited, that's very normal.
    0 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.