Jump to content
  • 0

How to call the copy function as a search group


TimerRP

Question

Posted

as it says in the title how do I call the copy function as group search, this would be illogical why would I want to call this function if I already have the values I am looking for but when it comes to offset this works when one edits the offset Its value obviously changes but now how do I put it back to its original value in hex form because for that I would use the copy function as group search.

2 answers to this question

Recommended Posts

Posted

Apparently with the function gg.showUiButton() it is possible to use other functions of the game guardian example: copy as a group search, but it gives an error when executing OffsetEdit.

function OffsetEdit(offset,hex) r=gg.getRangesList("libil2cpp.so")[1].start local h={} h[1]={} h[1].address=r+offset h[1].flags=0x20 h[1].value=hex gg.setValues(h) end
gg.showUiButton()
while true do
::UI::
if gg.isClickedUiButton() then
::stort::
gg.clearResults()
if Get_user_input == nil then
default1 = "0x0"
else
default1 = Get_user_input[1]
end
Get_user_input = gg.prompt(
{"Offset:"},
{default1},
{"text"})
if Get_user_input ~= nil then
if (Get_user_input[1] == "") then
gg.alert(" Don't Leave Input Blank")
goto stort
end
else
gg.alert(" Error : Try again ")
goto stort
end
user_input = ":"..Get_user_input[1] 
OffsetEdit(user_input,'h0000A0E31EFF2FE1')
end
end

could someone help me to solve the problem...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.