Count_Nosferatu
Contributor-
Posts
142 -
Joined
-
Last visited
-
Days Won
10
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by Count_Nosferatu
-
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.
-
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.
-
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.
-
I find the string value in Lua code but I can't change it
Count_Nosferatu replied to Pala9999's question in Help
You missed one character " gg.editAll(";987654321098",2) -
Did you try type Qword (8 byte)? or Word and Dword (6 byte)?
-
I find the string value in Lua code but I can't change it
Count_Nosferatu replied to Pala9999's question in Help
Sometimes answers "chat GPT" - resemble delirium of a drug addict. For example: gg.searchNumber(";192762458137", gg.TYPE_UNICODE) -
Can't do a search if don't use memory range "Other"
Count_Nosferatu replied to Tama7's question in Help
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 ... -
Is this a necessary game? Everything is searched without crash. bandicam 2024-11-10 16-50-24-455.avi
-
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.
-
Can't do a search if don't use memory range "Other"
Count_Nosferatu replied to Tama7's question in Help
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" -
Can't do a search if don't use memory range "Other"
Count_Nosferatu replied to Tama7's question in Help
Old joke: To ask a question correctly, need to know at least half of answer. -
Sure, but in my experience, 99% of hackers fail this test.
-
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.
-
This is the next check by the server. It would be good to check first HTTP_USER_AGENT
-
That's right, only a program (game) can take some number as infinity. For example 0xFFFFFFFF or 0x00FFFFFFF This is if developers foresaw that something will be infinite
-
-
Of course this folder is missing. But the problem is that the official GG doesn’t understand the syntax io.open(file,"w+"):write("{")` And it is better to save the file in the same place as your script. This is how it is understood: ... local json_info,file_nam,file,path,_ json_info=TdLove.ParseResults(TdLove,result) if gg.alert("Alert or Write","write","alert")==1 then path = (gg.getFile():match("^(.*)[/\\][^/\\]*$").."/") file_name=path..gg.getTargetPackage()..".js" file = io.open(file_name,"w") io.output(file) io.write('{') io.close(file) end file = io.open(file_name,"a") io.output(file) for iii,kkk in ipairs(json_info) do _=(iii~=#json_info and ",\n" or "\n") io.write("\n{\n\""..iii.."\":\n"..kkk.."\n}".._) end io.write("\n}") io.close(file) ... And some other little things: ... local gg=gg gg.clearResults() gg.setVisible(false) menu() gg.clearResults() gg.setVisible(true)
-
I can, but I'm not interested in the result of your script. I'm interested in why your script crashes on GG downloaded from this site. I tried it on four devices, three rooted, one with a virtual machine. GG: 101.1 (16142); Android: 7.1.2 (25) [su] GG: 101.1 (16142); Android: 9 (28) [su] GG: 101.1 (16142); Android: 10 (29) [io.va.exposed] GG: 101.1 (16142); Android: 12 (32) [su] The same error on all devices: `io.open(file,"w+"):write("{")` attempt to index ? (a nil value) with key 'write' I suspect that you are using a modified GG, and you don't write about it.
-
-
You understand correctly, to find something and exchange it for something. But you can find a number that is only for display on the screen. Number you need may be in another place and encrypted. In online games - even more options.
- 1 reply
-
2
-
-
local value1 = 140 local value2 = 140 local offset = 140 gg.searchNumber(value1, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) l = gg.getResultsCount() aaa = gg.getResults(l) for i = 1, l do bbb = gg.getValues({{ address = aaa[i].address + offset, flags = gg.TYPE_DWORD }})[1].value if bbb == value2 then -- Here you insert what you need, for example a print() print(aaa[i].address) end end
-
Is there any way to change what the "Cancel" button says or does in a script?
Count_Nosferatu replied to Kelilah's question in Help
gg.alert('Test\nTest\nTest', 'Exit') https://gameguardian.net/help/classgg.html#a07201e70d15be5ac19da2eb3d1c0e352 -
How to use GG and GO Multiple in Bluestack 5 Pie(64bit)
Count_Nosferatu replied to NopeWhy's question in Help
This is without GG and mainly Android, without virtualization.