Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/16/2022 in all areas

  1. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  2. 1 point
  3. 1 point
  4. use offsets maybe...? = price address + offset something like this.. local t = gg.getResults(1)--price address found local p = {} p[1] = {} p[1].address = t[1].address --price address p[1].flags = gg.TYPE_DWORD --value type p[1].value = 0--edit to your value gg.setValues(p) p[1].address = t[1].address + 0x4-- add offset for amount address below it. p[1].flags = gg.TYPE_DWORD --value type p[1].value = 999999--edit to your value gg.setValues(p) or local t = gg.getResults(1) gg.setValues({ {address = t[1].address,flags = gg.TYPE_DWORD,value = 0}, {address = t[1].address + 0x4,flags = gg.TYPE_DWORD,value = 999999} })
    1 point
  5. there are 5 doors in my house. 1 is locked. How will i know which door is locked...? or should i go and ask my neighbour?
    1 point
×
×
  • 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.