0 of 0

File information

Last updated

Original upload

Created by

Mikemc

Uploaded by

Mikemc31

Virus scan

Safe to use

17 comments

  1. HardingT98
    HardingT98
    • member
    • 0 kudos
    Not sure who else needs this, but I got it to work pretty well with the mouse wheel. For those of you who found this and have no idea how to use AHK, here's how I did it.
    1. Download autohotkey and run the installer.
    2. Create a new txt file (i did one on my desktop for ease of access while figuring this out. It can go anywhere afaik)
    3. Copy this following script into that text file:



    #SingleInstance Force
    #Persistent
    #IfWinActive ahk_class Fallout4
    #InstallMouseHook

    ; Create a variable called 'weap_slot' and set it to 1
    weap_slot := 1

    ; -----Ascends the weapon wheel-----

    ; mouse wheel downwards
    Wheeldown::
    weap_slot := weap_slot+1

    ; Change the 5 to any number up to 9 to add more weapons to favorites.
    if (weap_slot > 5)
    weap_slot := 0

    ; Add semicolons to the beginning of the next two lines to add slot 1 functionality; remove semicolons to save slot 1 for anything else.
    if (weap_slot = 1)
    weap_slot := 2

    Goto change_weapon

    ; -----Descends the weapon wheel-----

    ; mouse wheel up
    Wheelup::
    weap_slot := weap_slot-1

    ; Add semicolons to the beginning of the next two lines to add slot 1 functionality; remove semicolons to save slot 1 for anything
    else.
    if (weap_slot = 1)
    weap_slot := 0

    ; If the hotbar value is in the negatives, send it to 5.
    if (weap_slot < 0)
    weap_slot := 5

    Goto change_weapon

    ; Menu title has a colon after its name.
    change_weapon:
    SetKeyDelay, 20,50
    SendEvent, %weap_slot%
    Return 


    4. Change the name of the file to whatever name you want, but change the TXT file extension to .ahk.
    5. Right click on the file after saving and exiting and select "run script"
    6. Check to make sure your script is running by selecting the up arrow on your taskbar and looking for the green box with an "H" on it, indicating the script is running properly.
    7. Run FO4 and choose your hotkeys 2-5 (or more if you edit the script to your liking, read the commented bits)
    8. Enjoy scrolling.

    To disable the POV change that comes with using the mouse wheel, I use and recommend this mod: https://www.nexusmods.com/fallout4/mods/38673?tab=description

    This is what I did to get this script working as someone who had no clue how to use it in the first place. I hope it helps out someone else. 
  2. blaby5
    blaby5
    • member
    • 0 kudos
    How i can put it on my mouse wheel so that i can switch guns up and down with the mouse wheel?
    And how could i change the Hotkeys to switch guns?
    Thanks for your work
  3. AaronTheBossMan
    AaronTheBossMan
    • supporter
    • 0 kudos
    Where do you install this file??
    1. Mikemc31
      Mikemc31
      • member
      • 1 kudos
      Put it where ever you want, as it requires the auto-Hotkey program to work.
      It's a script for software that presses keys for you.
  4. baianoz1
    baianoz1
    • member
    • 0 kudos
    faça um vídeo de como instalar e usar isso, por favor 

    How do I configure and use this?
  5. BigMoodyMage
    BigMoodyMage
    • member
    • 0 kudos
    I am confused on where to install the file and how to choose which buttons to use. Any help would be muchly appreciated
  6. RodBlanc
    RodBlanc
    • member
    • 5 kudos
    I manage to make it work with the mouse wheel. 1 and 3 for me i use for jet and stimpack, and 10 weapons on my wheel. It just work!!
    1. vladSith0
      vladSith0
      • supporter
      • 181 kudos
      How did you disable the game original key biding of mouse wheel ?
  7. RodBlanc
    RodBlanc
    • member
    • 5 kudos
    Is not possible for doing this but keeping the - and the = ans well? To have twelve slot of weapons insted of 10
  8. FatsackTony1
    FatsackTony1
    • member
    • 2 kudos
    f*#@ yes finally
    1. Wilddog73
      Wilddog73
      • premium
      • 0 kudos
      You know how to install?
  9. KOYK_GR
    KOYK_GR
    • member
    • 0 kudos
    Finally! Thank you!

    i ask my self..how hard is for Bethesda to think this? apparently very!
    1. User_2530535
      User_2530535
      • account closed
      • 61 kudos
      The scroll wheel is used for zooming in and out in Third Person in the default game. Considering how many people use that feature, it wasn't an "oversight," it was on purpose.
    2. KOYK_GR
      KOYK_GR
      • member
      • 0 kudos
      true and not letting us to change the keys was bad movement.
    3. Wilddog73
      Wilddog73
      • premium
      • 0 kudos
      Skyrim already solved this by letting you scroll when the favorites bar was open, though.
  10. livipup
    livipup
    • premium
    • 46 kudos
    You can just use 1-9, -, and = to change your weapons quickly.
    1. Mikemc31
      Mikemc31
      • member
      • 1 kudos
      This is for people who's fingers aren't long enough to reach 5 to = quickly