Jump to content
  • 0

Need Help again 🙏🙏


WhiskeyCl

Question

Hi, 

I try to make script for hacking booster at warship battle 3D, but I don't know something wrong. For understanding what I mean, I sent video n picture for you. This a script code that I has made it, please maybe I was wrong with it

gg.searchNumber('68769;68756;68749;68735', gg.TYPE_DWORD)
gg.refineNumber('68769', gg.TYPE_DWORD, true, gg.SIGN_EQUAL, 0, -1)
n = gg.getResultsCount()
     jz = gg.getResults(n)
   for i = 1, n do
     gg.setValues({
       [1] = {
         address = jz.address + 3,
         flags = 2,
         value = 3219
       }}, 
                {
       [2] = {
         address = jz.address + 4,
         flags = 2,
         value = 1
       }
     })
gg.toast("Successfull!")

end

 

 

IMG_20191127_144906.thumb.jpg.865620e651de3cc35eb5cb2b66e5f0b3.jpgIMG_20191127_144730.thumb.jpg.48979299a5f7e604e2dbe16e6abf57de.jpgIMG_20191127_144650.thumb.jpg.91e4212425288583dc6abaa781d71cd8.jpg

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • Administrators
1 hour ago, WhiskeyCl said:

gg.TYPE_DWORD

 

1 hour ago, WhiskeyCl said:

address = jz.address + 3,

 

1 hour ago, WhiskeyCl said:

address = jz.address + 4,

Address must be even for 4, for Dword data type. It is called data align in memory.

1 hour ago, WhiskeyCl said:

 jz = gg.getResults(n)

 

1 hour ago, WhiskeyCl said:

address = jz.address + 3,

jz is table with tables, Read API docs for getResults. So jz.address is just nil.

Link to comment
Share on other sites

2 hours ago, Enyby said:

 

 

Address must be even for 4, for Dword data type. It is called data align in memory.

 

jz is table with tables, Read API docs for getResults. So jz.address is just nil.

Thank you Sir, in the future I will be more thorough, sorry for taking up your time Sir 🙏🙏

Link to comment
Share on other sites

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.