Looking for a working DX11 auto flask menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 36
  1. #1
    tenaciouzd's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2012
    Posts
    240
    Thanks G/R
    6/6
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Looking for a working DX11 auto flask

    Have been waiting patiently for teh cheats release for 4 weeks. Figured I would see if anyone knew of anything else out there working. I am willing to pay. Feel free to add me to skype. Thank you.

    Looking for a working DX11 auto flask
  2. #2
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can easily modify the AHK Flask one to your liking. Just download MousePos and to get the X,Y

    Thread : Flask manager (pixel detection, life builds, autohotkey, poe x64, 1080p) (Big thanks to dlr5668 on creating a wonderful base for AHK ! )

    So let's say I want to use a Quicksilver flask each time I press my Cyclone(Right Click)

    It would look something like this

    Flask1Logic() ; (4000 ms = 4 seconds duration. Modify if you have higher Quicksilver flask duration)
    {
    global Flask1_timer
    if (A_TickCount - Flask1_timer > 4000) and GetKeyState("RButton", "P") {
    Sendinput, {1 Down}
    Sendinput, {1 Up}
    Flask1_timer := A_TickCount
    }
    }

    Now I have the timer corrected for my Quicksilver flask, and it will only fire when I press or hold my RButton(Right mouse button)

    Now we must create a logic(basic) to let it fire in the pulse -->

    We create something called CycloneMovement()

    CycloneMovement() ;We add only Flask1Logic() for this test
    {
    Flask1Logic()
    }

    Now, we need to add CycloneMovement() into the loop (at the top of FlaskManager AHK file)

    if IsInGame() { ;checking ingame state (green shop button)

    CycloneMovement()
    }
    else {
    Sleep 500
    }


    Now we reload the script and it will only fire QuickSilver flask(bound on 1 button) each time you hold or press Right Mouse Button.

    If you want I could make a small guide on how to use the MeasureAverageColor3x3 + MousePos if needed.
    Last edited by Xcesiuss; 01-02-2017 at 11:55 PM. Reason: Added link to thread.

  3. Thanks toadskin (1 members gave Thanks to Xcesiuss for this useful post)
  4. #3
    tenaciouzd's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2012
    Posts
    240
    Thanks G/R
    6/6
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A guide would be sweet. I don't know shit about coding but I am willing to learn. I dont need anything as complex as firing one on a ability, really just for hp and mana. But I see in your example how i could fire my dps flasks on a button press. Feel free to add me to skype if you wish. Im using dx9 autoflask getting 5-10 fps dips, usally 20fps average, especially in labs/trials. Completely unplayable and not even fun to play. dx11 runs flawless.

  5. #4
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looking for a working DX11 auto flask-d9224ea84fe849d4a10d180a11587716-png

    Something I've been working on today. I got the saving of each key, edits working.

    I just need to complete what the actual hotkeys are doing now, hopefully that shouldn't take long until release tomorrow.

    Trying to learn AHK Gui from scratch tok a while and still confuses me..


    Flask Key(ingame key) -> Duration of flask (0 if health.. but requires additonal stuff look below) -> Key Trigger (can link multiple keys for different flasks or 1 key for everyone) -> Checkbox to enable/disable flask (if you wanna use it manually)

    Debug --> You need to get X,Y yourself from MousePos or similar tools. Enter them inside X,Y and it will report R,G,B color into the Windows. Enter those X,Y + RGB into Health/Mana if you wanna use those.
    Last edited by Xcesiuss; 01-03-2017 at 02:21 PM.

  6. Thanks toadskin, noneyatemp (2 members gave Thanks to Xcesiuss for this useful post)
  7. #5
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If there is anyone knowledge about AHK, I need to add Mouse buttons into :: > Gui, Add, Hotkey vtestKey, %hotkeyTest%

    But is there any easy way of doing so?


    GUI is working fine apart from the issue with Mouse buttons (the hotkey system on AHK GUI doesn't seem to pick them up)

    Todo ::
    Fix up Debug/Health/Mana
    Fix up working hotkey usable flasks on key push

  8. Thanks toadskin, noneyatemp (2 members gave Thanks to Xcesiuss for this useful post)
  9. #6
    tenaciouzd's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2012
    Posts
    240
    Thanks G/R
    6/6
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome alex, cant wait to see it completed.

  10. #7
    gfnparty's Avatar Member
    Reputation
    3
    Join Date
    Nov 2013
    Posts
    22
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awesom. i waitig too)

  11. #8
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Some small bumps in the way. Had to read up on IniWrite since FileAppeal was writing the same stuff twice and writing the file over and over even if I deleted it.

    Settings are now working 100%, I'll prob finish up tomorrow. No promises

  12. Thanks noneyatemp, toadskin (2 members gave Thanks to Xcesiuss for this useful post)
  13. #9
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First release will be coming soon.

    Hotkey to GUI is currently F10 (I hope no one is using their F10 for anything else, it will be configureable in near future)

    Got everything working as it should, still need to write up some things for the next release. Right now only Flasks with duration works

    So the UI works like this :: | Flask Key Binding | Flask Duration | Flask Triggerkey

    Triggerkey = the key which will trigger the flasks. You can setup chain flasks like 1-5 on 1 Triggerkey, or you can setup flask 1-3 to Rbutton but flask 4-5 on a different key.

    Remember to press the Okay button to save.

    I've also added MonitorNumber, so you can switch if you are running PoE on a different monitor than the main monitor (1)

    Default is 1. Please only change this setting if you know what monitor you have PoE on.

    FlaskManager-GUI/flaskmanager.ahk at master * Xcesius/FlaskManager-GUI * GitHub


    Will need to add Blade Flurry (auto) checkbox, fix/add so the flask checkboxes works, fixing Debug/Health/Mana. If you want to disable a flask, please just remove the key you've binded that flask triggerkey on. Like All buttons have default RButton as triggerkey, so if you want to disable a flask just remove the text on RButton/similar

    Let me know if you want something added
    Last edited by Xcesiuss; 01-05-2017 at 07:01 AM. Reason: First version added.

  14. Thanks a1yet (1 members gave Thanks to Xcesiuss for this useful post)
  15. #10
    tenaciouzd's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2012
    Posts
    240
    Thanks G/R
    6/6
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So it does not currently work with health/mana pots?

  16. #11
    Eph3drine's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also, any chance it has a reliable auto-logout/chicken? Do you intend on adding one?

  17. #12
    tenaciouzd's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2012
    Posts
    240
    Thanks G/R
    6/6
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Getting a error on line 20 when i try to run it.

    \libs\gdip.ahk cannot be opened

    Nvm, search my computer for gdip and replaced guruds in that folder, got the gui up, will update if works correctly

    Not working, it save the button activation, but checking enable flasks and hitting ok does nothing, if i close and reopen or reload the script, the binds are saved and the enable is unchecked

    i notice the setting ini has all the parameters saved in there for duration keybinds etc, nothing regarding if a flask is enabled or not. You might need to put your whole folder on github rather than just the ahk? seems like something is missing. Going to get some sleep, hopefully awake to a fix! Thanks for all the works so far!
    Last edited by tenaciouzd; 01-05-2017 at 09:00 AM.

  18. #13
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tenaciouzd View Post
    Getting a error on line 20 when i try to run it.

    \libs\gdip.ahk cannot be opened

    Nvm, search my computer for gdip and replaced guruds in that folder, got the gui up, will update if works correctly

    Not working, it save the button activation, but checking enable flasks and hitting ok does nothing, if i close and reopen or reload the script, the binds are saved and the enable is unchecked

    i notice the setting ini has all the parameters saved in there for duration keybinds etc, nothing regarding if a flask is enabled or not. You might need to put your whole folder on github rather than just the ahk? seems like something is missing. Going to get some sleep, hopefully awake to a fix! Thanks for all the works so far!
    As I stated in my post, Health/Debug/Mana does not yet work.

    Added working checkboxes to enable/disable flasks.
    Last edited by Xcesiuss; 01-05-2017 at 02:43 PM.

  19. Thanks toadskin (1 members gave Thanks to Xcesiuss for this useful post)
  20. #14
    tenaciouzd's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2012
    Posts
    240
    Thanks G/R
    6/6
    Trade Feedback
    13 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Downloaded lastest version. It now saves setting for enable checkbox, but does nothing in the actual game even while enabled.

  21. #15
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tenaciouzd View Post
    Downloaded lastest version. It now saves setting for enable checkbox, but does nothing in the actual game even while enabled.
    Please press f10 and take a screenshot and upload your settings.ini thanks

Page 1 of 3 123 LastLast

Similar Threads

  1. [Hack] Looking for a working ROTMG hack/cheat tool. Paying
    By Cenny in forum MMO Exploits|Hacks
    Replies: 2
    Last Post: 07-04-2012, 09:44 AM
  2. Looking for a Working XYZ hack!
    By spiratesss in forum WoW Bots Questions & Requests
    Replies: 4
    Last Post: 01-17-2012, 06:12 AM
  3. Looking for a working fly and collision hack please.
    By neilneil123 in forum World of Warcraft General
    Replies: 1
    Last Post: 09-01-2011, 09:19 AM
  4. looking for a working DC macro
    By manbear in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 03-05-2011, 10:15 AM
All times are GMT -5. The time now is 10:51 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search