Jump to content

Count_Nosferatu

Contributor
  • Posts

    144
  • Joined

  • Last visited

  • Days Won

    10

Count_Nosferatu last won the day on November 11 2024

Count_Nosferatu had the most liked content!

Additional Information

  • Android
    7.x
  • Device
    NOX

Recent Profile Visitors

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

Count_Nosferatu's Achievements

  1. Count_Nosferatu

    Wrong Value Help

    Have you tried using a floating point number converter? For example, this one: https://www.h-schmidt.net/FloatConverter/IEEE754.html
  2. Hi, The script, you provided contains several points. In first piece of code, script searches for number "4321" three times in a row. As a result, after tc = gg.getListItems(), you will have only one number, with one address, because all three times only one number will be found and filtered out. If you want to find number "4321" located in memory three times, search string would be: gg.searchNumber("4321", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 3) Read description of this command on website: https://gameguardian.net/help/classgg.html#a14685d871e664a2f8ea74dc3293e428e Why do you even use command gg.addListItems() & gg.getListItems() ? In scripts it is needed only if you want to "freeze" some number. Just create a table and process it. In your script, definition "local t=" is used six times. Correct programming style is to make definitions at beginning, and indicating type of variable. In your case: local t = {} local tc = {} Local tb = {} And so on. And remove all words "local" from body of script. Honestly, from your description and example code, I still don’t understand what you want to do. Good luck!
  3. Have you tried this? gg.searchNumber("217575~217584", gg.TYPE_DWORD, false, g.SIGN_EQUAL, 0, -1, 0) Such numbers can be easily converted into the format as in your screenshot. a = 217575 a = (a + 0.1) / 1000 print(string.format("%.2f",a) ..'K') a = 217584 a = (a + 0.1) / 1000 print(string.format("%.2f",a) ..'K') --Script ended: --217.58K --217.58K If such numbers are not found, then they simply do not exist in memory. They can be encrypted, and are decrypted only for display on screen. If game is online, there are even more options.
  4. Actually, you see a shortened output, only for display on screen. The full number can be from 217575 to 217584. It's just in the Dword range.
  5. Count_Nosferatu

    Help

    And there was no intention to offend or humiliate anyone. Sorry Bro. I just wanted to show that game does not crash when searching in any region.
  6. You missed one character " gg.editAll(";987654321098",2)
  7. Did you try type Qword (8 byte)? or Word and Dword (6 byte)?
  8. Sometimes answers "chat GPT" - resemble delirium of a drug addict. For example: gg.searchNumber(";192762458137", gg.TYPE_UNICODE)
  9. This is not possible now. It’s easier to add a check to script, like this: ... gg.setRanges(gg.REGION_ANONYMOUS | gg.REGION_C_ALLOC) -- default for x32 if gg.getTargetInfo().x64 then gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_OTHER) end ...
  10. Count_Nosferatu

    Help

    Is this a necessary game? Everything is searched without crash. bandicam 2024-11-10 16-50-24-455.avi
  11. Count_Nosferatu

    Help

    If you are just searching, program should usually not crash. If you change something in searching results, then it means you change something that cannot be changed.
  12. Depending on processor architecture and Android version, GG itself determines in which region program (game) code is located. For Android 11+ version, and the x64 architecture, in most cases it determines "Other"
  13. Old joke: To ask a question correctly, need to know at least half of answer.
  14. Sure, but in my experience, 99% of hackers fail this test.
  15. Is your script written in LUA for GG? And you are afraid that they will do this: A search for something will be conducted in GG. Your script is executed. They will search for changes in GG. If yes, then make primitive protection from children in your script, start your script with this: gg.clearResults() gg.clearList() More complex hacking methods will not count.
×
×
  • 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.