Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/25/2021 in all areas

  1. hideUiButton and isUiButtonClicked is 1000% a better alternative thank you
    2 points
  2. @nio04I think you saw my post XD But script will go to next line only after gg.searchNumber. So putting checking wont prevent for the first search. Or may be this one? https://gameguardian.net/help/classgg.html#a46b78a631174e0c2ea89664c51426440
    2 points
  3. If you had your script indefinitely running gg.setVisible(false) then you could just have a conditional check if its ever true in the search function then to exit else to do the searching and editing
    1 point
  4. Oh sorry my bad, i thought he was unsure of what exactly is returned from the prompt class I figured I was over explaining something simple This made me think that he was unsure of what was being done with the prompt, and that it made me think that he thought it was the prompt itself that resulted in action rather than a table with value of the input from the slider... Misunderstanding maybe there's an English/french translation problem that threw me off No worries I can see how me quoting you made it seem like I was just providing a further unnecessary explanation
    1 point
  5. Just change this into gg.editAll(input[1] **AND THE ARGUMENTS FOR YOUR EDIT SUCH AS FLAGS**) Must be done after getResults ofcourse. The slider is all the same. Saves input as table what's done with this table is up to the rest of the script.
    1 point
  6. local input = gg.prompt({"Select value :[0;10]"},{0},{"number"}) if input == nil then return else gg.searchNumber(input[1], 4) ....
    1 point
  7. Little tweak to the solution above, so that returned string will look like address in GG: function toHexString(n) return string.format('%08X', n):sub(-8) end print(toHexString(12398754))
    1 point
  8. If you need 32-bit hex value (8 hex digit) it must be: p = ("%x"):format(-1469129008):sub(-8) Because if you try use -1 with your code, you can get empty string.
    1 point
  9. thank you again it was an incredibly simple one line solution if anyone else needs to do it. p = string.gsub(("%x"):format(-1469129008), "ffffffff", "")
    1 point
  10. All android use little-endian. In any case, you can use google for understand what is that. And find byte swap algorithm and so on.
    1 point
  11. Use getResults for get value. Use value as address. It is called pointer.
    1 point
×
×
  • 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.