marlodor Posted December 9, 2021 Posted December 9, 2021 I want to ask how make a lua script where i want to search a value but i want search it only into Address start with A0000000 and it end at AFFFFFFF How i can do that search into a script?
MonkeySAN Posted December 9, 2021 Posted December 9, 2021 use gg record script function and run the search. open the saved file and look at how it is written.
MAARS Posted December 9, 2021 Posted December 9, 2021 unless the value the value are located in statics address memory like Xa you can use this option, but if the value is in region like C_ALLOC forget about that cause this memory is dynamic, next time you login to the game the address will not be the same and your address range for the search will become false
marlodor Posted December 9, 2021 Author Posted December 9, 2021 Thank you @MonkeySAN. @MAARS I use Anonymous region. I release a part of script here if someone have my problem and want to resolve it faster gg.searchNumber('Your_Value',gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0xA0000000, 0xafffffff, 0) The code at the end i have used after some search to find the good way without game crashes gg.searchNumber('16777473',gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0xA8A00000, 0xefffffff, 0)
Question
marlodor
I want to ask how make a lua script where i want to search a value but i want search it only into Address start with A0000000 and it end at AFFFFFFF
How i can do that search into a script?
3 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.