Jump to content
  • 0

Can anyone help me with this ?


VNGEO

Question

7 answers to this question

Recommended Posts

 

5 hours ago, Itz_Me2341 said:

I am trying to hack a game called WildCraft.Everyone is hacking it so I wanted to do it to.But the thing is that my gg does not want to download when I try to get the app

You cannot download gg , is that what you mean ??

Link to comment
Share on other sites

Thanks for your help 

3 hours ago, AKRAMRAZA said:

Did you try using group search and then refining the value that you want ??

The problem is i am trying to make a script 

After group search the total number of the value is change so i cant put it into my script 

The special thing about it is the value i want always at the 3rd , 6th , 9th and 12th

So my question is how to get these value by a command

Link to comment
Share on other sites

5 hours ago, VNGEO said:

Thanks for your help 

The problem is i am trying to make a script 

After group search the total number of the value is change so i cant put it into my script 

The special thing about it is the value i want always at the 3rd , 6th , 9th and 12th

So my question is how to get these value by a command

For that you need loop.Try this ,

local s = gg.getResults(99999)
local  t = {}
for i, v in ipairs(s) do
  if i % 3 == 0 then
    t[#t + 1] = v
  end
end
print(t)

 

After the loop give this table to setValues to edit or to addListItems to freeze.

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.