Skip to content
Menu
SteamAH
  • Cheat
  • Guide
  • Tips
  • Game Lists
  • Privacy Policy
  • Abuse
SteamAH

Potion Craft: Alchemist Simulator Stirring AutoHotkey Script Guide

Posted on December 22, 2022

For Potion Craft: Alchemist Simulator players, this is a small AutoHotkey script that lets you automate stirring if you have a wrist pain like me.

Script

Based on “Mortar & Pestle AutoHotkey Script” by Aesther

Potion Craft: Alchemist Simulator Mortar & Pestle AutoHotkey Script

Follow that guide to install autohotkey and use the following script to auto stir with the ‘F’ key while you hold the stirring spoon. In essence, you hold left mouse button to hold the spoon, and hold ‘F’ to stir. If you let go of ‘F’, you will stop stirring
; Feel free to change, improve or share the code. It is free to use in every sense.
; —————————————–
; Change this section as you want.
theHotkey = F   ; The Hotkey. Check https://www.autohotkey.com/docs/v1/KeyList.htm for all the keys & buttons.
theSpeed = 2    ; This represents the speed of the motion. Try any number between 0 and 100. 0 is instant, 100 is veeery slooow. 2 seems fine to me.
; —————————————–
; The rest is the code that does the job. Don’t change it unless you’re experimenting.
Hotkey, %theHotkey%, ActivateCode
Return
#IfWinActive Potion Craft
ActivateCode:
sign = –
Loop
{
    if !GetKeyState(theHotkey, “P”)
        break
    if (sign = “-“)
        sign = +
    Else
        sign = –
    MouseMove, %sign%200, 0, %theSpeed%, R
}
return
That’s all we are sharing today in Potion Craft: Alchemist Simulator Stirring AutoHotkey Script Guide, if you have anything to add, please feel free to leave a comment below, you can also read the original article here, all the credits goes to the original author Mapache

MORE GAME GUIDES FOR YOU

Related Posts:

  • Potion Craft: Alchemist Simulator Mortar & Pestle AutoHotkey Script
  • Potion Craft: Alchemist Simulator Strong Potion Crafting Guide
  • Potion Craft: Alchemist Simulator Where to Find Backpack’s Faction-Owner
  • Potion Craft: Alchemist Simulator Complete Basic Potion Craft Guide
  • Potion Craft: Alchemist Simulator List of Keywords to Figure Out the Right Potion

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Disclaimer

All content cited is derived from their respective sources. If you think we have used your content without permission, Please go to the Abuse Page to contact us and we will be taking it seriously.

Recent Posts

  • Dead Space How to Improve Image Quality & Fix Stutters
  • Dead Space How to Sell Ammo for Profit
  • Hi-Fi RUSH How to Defeat Kale’s 3 Forms
  • Hi-Fi RUSH All Numbered Door Locations (Post-game)
  • Milky Quest II How to Get Secret Skill, Extra Items & 99999 Exp
©2023 SteamAH | Powered by SuperbThemes & WordPress