Search found 2 matches

by ardeact
07 Feb 2023, 22:12
Forum: Gaming Help (v1)
Topic: Keystroke hotbar numbers using scroll wheel
Replies: 2
Views: 431

Re: Keystroke hotbar numbers using scroll wheel

Here's what I managed to write #Requires AutoHotkey v2.0 ; WheelDown WheelUp numvar := 0 WheelUp:: { global numvar += 1 SendInput numvar } WheelDown:: { global numvar -= 1 SendInput numvar } It's real ugly and I made it using the doc, but it works. I don't know how to create a toggle for it though. ...
by ardeact
07 Feb 2023, 20:26
Forum: Gaming Help (v1)
Topic: Keystroke hotbar numbers using scroll wheel
Replies: 2
Views: 431

Keystroke hotbar numbers using scroll wheel

Hello, I need a script that on each scroll, it goes through value range 0-9 and keystrokes them. For example, in Roblox, there are games that use a number system to select inventory, I want to be able to select them using the scroll wheel. Thanks :D

[Mod action: Moved topic to “Gaming”]

Go to advanced search