Game Hacking Dojo Master Cheater
Reputation: 1
Joined: 17 Sep 2023 Posts: 250
|
Posted: Wed Jan 01, 2025 6:10 pm Post subject: |
|
|
I tried using the following, but it didn't help. The comments are probably saved not only to the cheat table but somewhere else as well.
Code: | local function remove_xml_content(input, tag_name)
local open_tag = "<"..tag_name..">"
local close_tag = "</"..tag_name..">"
local pattern = open_tag..".*"..close_tag
return string.gsub(input, pattern, "")
end
local stream = createStringStream()
saveTable(stream)
local stream_data = stream.DataString
stream.DataString = remove_xml_content(stream_data, "DisassemblerComments")
--writeToClipboard(stream.DataString)
loadTable(stream, false, false) |
|
|