kando Posted July 1, 2020 Posted July 1, 2020 How search boolean value with gg plz Ex: value buyable:true i need change this value to buyable:false How do i write that in gg
Emarkx Posted July 1, 2020 Posted July 1, 2020 Sometimes true and false is stored as 1 or 0 And True or false You just have to figure out how its stored.
kando Posted July 2, 2020 Author Posted July 2, 2020 On 7/1/2020 at 11:52 AM, Emarkx said: Sometimes true and false is stored as 1 or 0 And True or false You just have to figure out how its stored. thanks for your reply I know that the data is stored as True And False Just what I do not know how to replace False With True Via gg
Emarkx Posted July 4, 2020 Posted July 4, 2020 You have to do a hex search for the actual word "true"
BadCase Posted July 4, 2020 Posted July 4, 2020 If you are talking about a boolean in a lib then ARM8 64bit search true = 20008052r false = 00008052r ARM7 32bit search true = 0100A0E3r false = 0000A0E3r but there will most likely be thousands of results, best to attempt to debug it with Termux/gdb if your looking in the lib, if the value is not in a lib but in a normal range they really could use anything for a bool, if you are lucky 0 for false 1 for true and often located near related values or pointed to from the same list of pointers
TeaRex Posted July 6, 2020 Posted July 6, 2020 On 7/5/2020 at 1:38 AM, BadCase said: If you are talking about a boolean in a lib then ARM8 64bit search true = 20008052r false = 00008052r ARM7 32bit search true = 0100A0E3r false = 0000A0E3r but there will most likely be thousands of results, best to attempt to debug it with Termux/gdb if your looking in the lib, if the value is not in a lib but in a normal range they really could use anything for a bool, if you are lucky 0 for false 1 for true and often located near related values or pointed to from the same list of pointers Hey mate I sent you multiple messages, could you please check? Thanks!
Question
kando
How search boolean value with gg plz
Ex: value buyable:true
i need change this value to
buyable:false
How do i write that in gg
7 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.