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

POE 2 > Twin-stick shooter with DS-like bosses, no crafting just gamba, no zen.
POE 1 > aRPG, amazing crafting, can be zen.
D2 > zen, no crafting, rune words.
Last edited by BlackMarshes212#1072 on Dec 16, 2024, 3:49:33 AM
Last bumped on Dec 16, 2024, 3:27:36 AM

Report Forum Post

Report Account:

Report Type

Additional Info