Jump to content

Vaster

Members
  • Posts

    15
  • Joined

  • Last visited

Additional Information

  • Android
    11.x
  • Device
    Redmi Note 9 Pro Jeyouse

Recent Profile Visitors

676 profile views

Vaster's Achievements

Contributor

Contributor (5/14)

  • Collaborator Rare
  • One Month Later
  • First Post Rare
  • Reacting Well Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Solved , sory for my bad
  2. gg.searchNumber('3,470,333,575,360Q;472,446,403,368Q;-4,294,967,186Q;4,294,967,295Q;-4,294,967,296Q;-1Q;8,589,934,591Q::25', gg.TYPE_QWORD, false, gg.SIGN_EQUAL, 0x7000000000, 0x7FFFFFFFFF, 0) if gg.getResultsCount() == 0 then gg.toast("Value Not Found")end gg.refineAddress("8" ,0xff, gg.TYPE_QWORD, gg.SIGN_EQUAL, 0, -1, 0) gg.refineNumber(3470333575360, gg.TYPE_QWORD) local r = gg.getResults(1) for i, v in pairs(r) do v.address = v.address + 0x28 gg.loadResults(r) local t = {} t[1] = {} t[1].address = r -- some desired address t[1].flags = gg.TYPE_QWORD t = gg.getValues(r) -- use value as pointer t[1].address = t[1].value t = gg.getValues(t) gg.loadResults(t) local count = gg.getResultsCount(1) local results = gg.getResults(1) local values = {} for i, v in ipairs(results) do local name = v.name local index = (i + 1) * 2 local addr = v.address values[index + 1] = {address = addr + 0x0F900, flags = gg.TYPE_DWORD, value = 0x007F044C, freeze = false, name = "NeoS1"} values[index + 2] = {address = addr + 0x0F9C0, flags = gg.TYPE_DWORD, value = 0x007F00B8, freeze = false, name = "NeoS2"} gg.loadResults(values) local change = gg.getResultsCount(2) local value = {} for i, v in ipairs(change) do local name = v.name local index = (i + 1) * 2 local addr = v.address local value[index + 1] = value[index + 2] gg.setValues(value) gg.setVisible(false) gg.toast('') end end end Any Sensei Can teach me ? how to switch results index 1 to index 2 and vice versa ?
  3. Many Thx Sir, for ur time ,and thx again for explain to me , I understand Now where my problem ,from ur explanation ....
  4. Still not Solve it , i try change my lua like this gg.searchNumber('1,062,836,634D;1,106,247,680D;5D~99D;5D~99D;5D;5D::21', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0x7000000000, 0x7FFFFFFFFF, 0) gg.refineAddress("0", 0xff, gg.TYPE_DWORD, gg.SIGN_EQUAL, 0, -1, 0) if gg.getResultsCount() == 0 then gg.toast("Value Not Found") return end gg.refineNumber(1062836634, gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.toast("Value Not Found .... Wait.....")end local r = gg.getResults(1) for i, v in pairs(r) do v.address = v.address + 0x08 v.flags = gg.TYPE_BYTE gg.loadResults(r) end local results = gg.getResults(1) local numb = gg.getValues(results) local value = #numb local addrs = {1} for i=1, #numb do addrs[i] = {} addrs[i]["address"] = nil addrs[i]["flags"] = nil addrs[i]["value"] = "" ..value end local modc = gg.prompt({'Enter Value : 0 > 99'}, addrs, {nil}) if modc == nil then return gg.alert("Value Eror .....") end local r = gg.getResults(1) for i, v in pairs(r) do v.value = modc[1] v.name = "Mr.DiggsRCount" v.freeze = true gg.addListItems(r) gg.setValues({}) gg.toast("") gg.clearResults() end and get results like that , how i can get value Only In gg.prompt? im so pain about that.....
  5. Thnksss a lot for ur time Sir , I Will try Now
  6. Yes Sirr , Can Help me bcus i want put the promp for Weapon and acccesories later ,the game Have Ids Weapon and make the Ids To Many Work At least We know What Recent Value For What Weapon We Use , Can help me Sirr ?
  7. Attemp nil Value With Key Index 1, i try Change The location recent value but i got full table like this {--table(efc719a) [1]={--table(3357acb) ['address']=0x71722f0c28 ['flags']=1--gg.TYPE_BYTE ['value']=50 } } how i can put only a table [value]=50 to gg.prompt ?
  8. thnksss Sir i will try
  9. About gg.prompt How to make gg.loadresults to This prompt ? function mrdiggsc() gg.setVisible(false) gg.clearResults() gg.searchNumber('1,062,836,634D;1,106,247,680D;5D~99D;5D~99D;5D;5D::21', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0x7000000000, 0x7FFFFFFFFF, 0) gg.refineAddress("0", 0xff, gg.TYPE_DWORD, gg.SIGN_EQUAL, 0, -1, 0) if gg.getResultsCount() == 0 then gg.toast("Value Not Found") MAIN()end gg.refineNumber(1062836634, gg.TYPE_DWORD) if gg.getResultsCount() == 0 then gg.toast("Value Not Found .... Wait.....")end local modc = gg.prompt({'Enter Value : 0 > 99'}, {[1] = recentvalue}, {[1] = "Number"}) if modc == nil then return gg.alert("Value Eror .....") end local limit = tonumber(modc[1]) if limit < 0 or limit > 99 then return gg.alert("Value Eror .....") elseif limit == 100 or limit == 99999 then return gg.alert("Value Eror .....") elseif limit == nil then return gg.alert("Value Eror .....") end local r = gg.getResults(1) local t = gg.TYPE_BYTE local t = {} t[1] = {} t[1].flags = gg.TYPE_BYTE for i, v in pairs(r) do v.address = v.address + 0x08 v.flags = gg.TYPE_BYTE v.value = modc[1] v.name = "Mr.DiggsRCount" v.freeze = true gg.addListItems(r) gg.setValues(r) gg.loadResults(r) gg.getResults(1) recentvalue = gg.getValues(r) gg.toast("") gg.clearResults() end end the "recentvalue" not work if i put to the gg.prompt where i wrong ? can u tell me abut that Sir?
  10. sory late reply , and many thankss for ur time Sir
  11. Sory I have bad English Langue I hope,people can understand , i need help if value other 0/16777473 gg auto delete it if old > ( 0 or 16777473 )then function run() gg.setVisible(false) while not gg.isVisible() do local rem = gg.getListItems() for i, v in ipairs(rem) do if v.name ~= "ChangeEquip" then rem[i] = nil end end rem=tonumber(1) x = gg.getListItems(rem) v = rem local v = gg.getListItems(rem) local old = v[1].value v = gg.getValues(v) if old ~= v[1].value then gg.toast('Changed Party Equipment Removed: '..old..' -> '..v[1].value) end if old > 16777473 then gg.removeListItems(v) return end gg.toast(" ! Party Change Equipment Active !") This for last remnant remastered game the value changed every i open Menu Game and can crash the game if gg freeze it ,....
×
×
  • 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.