Jump to content

SurikenTSD

Members
  • Posts

    13
  • Joined

  • Last visited

Additional Information

  • Android
    9.x (Pie)
  • Device
    Xiaomi Redmi 8A

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

SurikenTSD's Achievements

Rookie

Rookie (2/14)

  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare

Recent Badges

1

Reputation

  1. Unfortunately, I don't know why, but Parallel Space and similar apps don't work on my phone. I usually just open chests from my phone. P.S.: At best, this script will unlock clubs. I have experience with similar scripts—they do unlock clubs, but only at level 1. And I already have all the clubs unlocked.What I really need is something else: increasing the guiding line distance beyond the maximum upgrade level of the club. (In the old script, which I linked in my first message, I could set a final value that the script used to adjust the directive.)
  2. Unfortunately, I'm completely clueless about this, and I have no idea what to do with the dump. There are tons of files, and I have no idea how to find the right one or what to do with it afterward. If I knew how to do it, I wouldn’t be begging for a script like a kid asking for candy. The root detection in this game works completely randomly. On my phone, which doesn’t have root access, it still occasionally says, "Your device is rooted – get lost." Same thing on an emulator that actually has root access.
  3. Hello! A recent update was released, and the script that automatically searched for values and increased the guiding line distance for hitting the ball with a club stopped working. Please, could someone create a new version of the script that works with the latest version of the game? If you're not familiar with the game but want to help: after installing the game, it won't take much time or effort to start analyzing. You don’t need to log in via Facebook or Google—you can enter the game as a guest. You'll immediately begin with a tutorial where you need to sink the ball into the hole in 1 or at most 2 strokes (~10 seconds). Right after that, the game will automatically start searching for opponents. The first matches will be against bots. You can start analyzing in the very first match. To clarify: do not increase the shot power. Essentially, the script should have no actual effect other than a purely visual one—it should extend the guiding line distance, so that when pulling back, the line becomes longer than what the selected club normally allows. However, if you somehow manage to increase shot power (not just visually, but actually), I’d be more than grateful. Link to the broken script. Link to the game on Google Play Market.
  4. A recent update was released, and the script no longer works. Could you fix it, please?
  5. Dear script-wise and sagacious creator! I, the unworthy, beseech you! Could you update this script and, in addition to extending the standard aiming trajectory, also add an extension of the aiming trajectory when hitting from the sand? Otherwise, if the club has the first level of aiming trajectory, it's unclear how much force is needed to hit the ball to land it at a specific point from the sand. I BEG YOU! You or anyone else who understands scripts. Thank you profusely in advance.
  6. I didn't know why, but the values was not frozen. Only changed. If I manually freeze them, everything is OK, if not, the values change immediately. However, I didn't despair and found a way out of the situation, I found what you missed in your example: I don't know how critical this is, but you didn't specify table ["freezeType"] = gg.FREEZE_NORMAL line and the most important thing is that you forgot about gg.addListItems (table) line. But the main thing - the direction was set and eventually I was able to figure it out on my own. Thanks a lot! function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.refineAddress("6??????4", -1, gg.TYPE_DWORD, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(2000) gg.processPause() gg.searchFuzzy("-4~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end local table = gg.getResults(10) for i = 1, #table do table[i]["value"] = -1 table[i]["freeze"] = true table[i]["freezeType"] = gg.FREEZE_NORMAL end gg.setValues(table) gg.addListItems(table) gg.toast('Done!') gg.setVisible(true) os.exit() end
  7. Hello! I am trying to write a small script, with lua familiar for the second day and have made some progress. In this function, I search for values and filter them out until there are exactly two left. Then I change them, but how do I freeze them? I tried to search for the answer using the example of other scripts, but most of them are encrypted, and in those that are not encrypted, I did not find the answer (or did not understand it). How do I use FREEZE_NORMAL correctly? Can someone help me with an example of my script? Thanks. function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(1250) gg.processPause() gg.searchFuzzy("-3~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end gg.getResults(10) gg.editAll('-1', gg.TYPE_DWORD) gg.FREEZE_NORMAL() -- Incorrect usage, but I don't know how to use it correctly. :( gg.toast('Done!') gg.setVisible(true) os.exit() end
×
×
  • 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.