Jump to content

JoxxApart

Members
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

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

JoxxApart's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • First Post Rare
  • Reacting Well Rare
  • Conversation Starter Rare

Recent Badges

1

Reputation

  1. d*** bruh, I just made the required change at last and it worked. Thanks for your smart efforts bruh I'm very grateful!!<3
  2. Thanks for telling 4 is dword in ur script. I don't wanna edit any value as it freezes the game, I just wanna freeze the refined values. The initial search shows less than 20K results, second refine can either be 2(final) or 100 results. Third refine is the last and final, you didn't include refine function, will it still work? And there's no need to loop the script, please don't mind And a huge thanks for being so great!
  3. @MonkeySANby using the method you provided for tapping gg for executing script, I used it thrice, but it infinitely looped second one(shoot and enter clip size) gg.setRanges(gg.REGION_CODE_APP | gg.REGION_C_ALLOC | gg.REGION_C_DATA | gg.REGION_ANONYMOUS) gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) local fi = gg.prompt({"Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.searchNumber(fi[1],gg.TYPE_DWORD) gg.getResults(20000) gg.sleep(100) end gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) local gi = gg.prompt({"Shoot And Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gi[1], gg.TYPE_DWORD) gg.getResults(100) end gg.sleep(100) end gg.setVisible(false) while true do if gg.isVisible() then gg.setVisible(false) local gti = gg.prompt({"Shoot And Enter Clip Size last time"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gti[1], gg.TYPE_DWORD) local t = gg.getResults(3) for i, v in ipairs(t) do t[i].freeze = true end gg.addListItems(t) end gg.sleep(100) end end
  4. gg.searchNumber(input[1], 4) If you can tell what does the second argument mean in this function, I'll be very grateful again.
  5. Ohh, okay, thank you so much Oh ya, that's what I needed, thank you so much, let me try the script and find out if it works for me, I guess it will cuz it sounds like the only exact solution as using loops for asking will cause unnecessary prompts and is inefficient. Tysm!!<3 Love ya bruh, no homo
  6. Hi, I need help with the prompt command, I want to know if it's possible to replace sleep function in the code below with some other method in which I can choose when to execute the refine function local fi = gg.prompt({"Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.searchNumber(fi[1],gg.TYPE_DWORD) gg.getResults(20000) gg.sleep(3000) local gi = gg.prompt({"Shoot And Enter Clip Size"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gi[1], gg.TYPE_DWORD) gg.getResults(100) gg.sleep(5000) local gti = gg.prompt({"Shoot And Enter Clip Size last time"}, {[1] ="0"}, {[1] ="number"}) gg.refineNumber(gti[1], gg.TYPE_DWORD) local t = gg.getResults(3) for i, v in ipairs(t) do t[i].freeze = true end gg.addListItems(t) gg.setRanges(gg.REGION_CODE_APP,gg.REGION_C_ALLOC, gg.REGION_C_DATA,gg.REGION_ANONYMOUS) One thing that just came to my mind is using functions, sleep and a loop and asking to either sleep or use refine in prompt, please give ideas and new methods to use. I used setranges function in the beginning but it was only searching in anonymous region,why??
×
×
  • 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.