Jump to content

Star wars galaxy of heroes


shaka1
 Share

Recommended Posts

5 hours ago, Lyana said:

It still works but must use "Float" instead of "DWord" on search.

Confirmed that still works changing the search type to FLOAT instead of DWORD.

My old script to modify Clone Sergeant (lvl 1, with 1 star and gear 1, without any gear equiped) was like this (the values searched are "Health;Speed;Offense"):

::menu::
if gg.isVisible(true) 
then gg.setVisible(false) 
end
gg.clearResults()
var2 = gg.choice({
'Exit',
'Clone Sergeant (1 star - lvl 1 G1)',
}, nil)

if var2 == 1
then goto exit
elseif var2 == 2
then goto Clone1G1
elseif var2 == nil
then goto sleep
end

::Clone1G1::
gg.clearResults()
gg.searchNumber('487;80;40', gg.TYPE_DWORD)
gg.getResults(1000)
gg.editAll('800000;850000;900000', gg.TYPE_DWORD)
gg.clearResults()
gg.toast('OK')
goto sleep

::sleep::
gg.setVisible(false)
::sleepphase2::
gg.sleep(100)
if gg.isVisible(true)
then goto menu
else goto sleepphase2
end

::exit::
os.exit()

So is needed change the TYPE_DWORD to TYPE_FLOAT, like this:

::menu::
if gg.isVisible(true) 
then gg.setVisible(false) 
end
gg.clearResults()
var2 = gg.choice({
'Exit',
'Clone Sergeant (1 star - lvl 1 G1)',
}, nil)

if var2 == 1
then goto exit
elseif var2 == 2
then goto Clone1G1
elseif var2 == nil
then goto sleep
end

::Clone1G1::
gg.clearResults()
gg.searchNumber('487;80;40', gg.TYPE_FLOAT)
gg.getResults(1000)
gg.editAll('800000;850000;900000', gg.TYPE_FLOAT)
gg.clearResults()
gg.toast('OK')
goto sleep

::sleep::
gg.setVisible(false)
::sleepphase2::
gg.sleep(100)
if gg.isVisible(true)
then goto menu
else goto sleepphase2
end

::exit::
os.exit()

By this way it works well as always, the only bad thing is that the search delays 20 seconds instead of 3 seconds.

I tried with other type of search like TYPE_AUTO, TYPE_BYTE, TYPE_DOUBLE, TYPE_QWORD, TYPE_WORD and TYPE_XOR but any of them worked, so only TYPE_FLOAT is working.

Thanks to @Lyana for the advice 😃

Edited by QLC
Link to comment
Share on other sites

4 hours ago, wamakima5004 said:

Try using Float

 So far float is working for me so far with health;speed;attack

But dword can't anything anymore

 

6 hours ago, Lyana said:

It still works but must use "Float" instead of "DWord" on search.

Many thanks to those who helped, Lyana and wamakima5004

Link to comment
Share on other sites

10 hours ago, Lyana said:

It still works but must use "Float" instead of "DWord" on search.

Dude/Girl ! THANK YOU SOOO MUCH for the help. You are the real MVP. I made the account here just to thank you. I was gona delete that game because there is just so much grinding and farming even with gg that i wasnt gonna do it anymore. i have been playing everyday for over a year now and i'm not even half the player to compete with the top players. My hope was gone after latest update if it wasnt for you  😍

Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

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