POE FPS (tool beta release)
Obligatory meme (flash warning)
Spoiler
![]() I got sick and tired of the aRPG+FPS RSI/CTS generator and decided to simplify my inputs. ![]() I bound my skills 1-5, and the pots to Q and E. With this change you are no longer removing your hands away from the movement keys (WASD). It essentially turns POE into an FPS. For this to "fully work" I went a step further and made an AHK script that listens to the user input and when the users moves the scroll wheel up/down it presses the corresponding button (1-5). When it reaches No.5 it cycles back to 1, essentially giving you infinite scroll.
Spoiler
#SingleInstance Force ; Initialize current key to 1 currentKey := 1 ; Mouse Wheel Up - Increment Key WheelUp:: { global currentKey ; Declare global variable within the function currentKey++ if (currentKey > 5) { currentKey := 1 ; Wrap back to 1 } Send(currentKey) } ; Mouse Wheel Down - Decrement Key WheelDown:: { global currentKey ; Declare global variable within the function currentKey-- if (currentKey < 1) { currentKey := 5 ; Wrap back to 5 } Send(currentKey) } Alternatively, you might want to cycle between two ammo types:
Spoiler
pressFlag := 1 ; Initialize flag to 1 (will press 1 first) TogglePress() { global pressFlag ; Declare pressFlag as global if (GetKeyState("MButton", "P")) ; Check if the middle mouse button is pressed { if (pressFlag = 1) { Send "1" ; Press "1" pressFlag := 2 ; Switch flag to 2 for next press } else { Send "2" ; Press "2" pressFlag := 1 ; Switch flag to 1 for next press } ; Wait until the middle mouse button is released to avoid repeated presses while (GetKeyState("MButton", "P")) Sleep 10 } } SetTimer TogglePress, 100 ; Check the middle mouse button every 100ms Now... that's 1 out of 3 mayor gripes I have with POE2. The other two are: 1. Allow us to finally use Mouse + Keyboard + Controller. https://www.pathofexile.com/forum/view-thread/3636863 2. Allow us to disable Orb-walking / Kiting https://www.pathofexile.com/forum/view-thread/3627967 Last edited by BlackMarshes212#1072 on Dec 16, 2024, 3:49:33 AM Last bumped on Feb 8, 2025, 10:25:32 AM
|
![]() |
Hey, I came across this old post about Tencent’s official multi-flask hotkey in the Chinese version of PoE.
Given GGG’s strict stance on AHK and remapping software, it’s interesting that Tencent developed an official tool that does exactly what GGG bans elsewhere. This kind of double standard makes it even more important for them to clarify their stance on remapping software. Multi-flask hotkey in official Chinese Path of Exile: Hi guys, I checked out the Chinese POE site today and noticed a post about multi-flask hotkey available in TGP(Tencent gaming platform?), it's an official program developed by the POE publisher Tencent. From the thread it seems that you can toggle on/off for the flask you want to multi, and using tilde (~) to activate it. How do you guys or GGG(if you guys are reading) think about this. Here's a direct link to the picture I was talking about: The link is here if you want to check it out: https://poe.game.qq.com/forum/view-thread/7726/page/1#p35628 Sourced from: https://www.reddit.com/r/pathofexile/comments/5ux1x9/multiflask_hotkey_in_official_chinese_poe/ |
![]() |
" And how you press, for example, "3", while moving to the top right with "WD" keys? For me, there are enough keys which allow me to move any direction while using any skill. Like, I'm using ESDF for movement, can press CVB with my big finger, QAZ with pinky, spacebar and 5 mouse buttons — more than enough keys. 12 keys in total — 2 for flasks, 7 for skills, 1 for dodge, 1 for inventory, 1 for map. And Caps Lock for pausing game. Don't need any macros. Last edited by Suchka_777#4336 on Feb 8, 2025, 4:14:46 AM
|
![]() |
" I don't see the reason to do it if you can just immediately press key for skill you want to use. But maybe it might feel fun like you are choosing weapon to fire. Just not really effective. |
![]() |
" You mean using skills one by one in pre-defined order? I wonder, with which build you would want to do it? Can't imaging any. Last edited by Suchka_777#4336 on Feb 8, 2025, 10:25:59 AM
|
![]() |