Microtransaction Simulator

Microtransaction Simulator

评价数不足
Microtransaction-Simulator Automated Script
由 spooki 制作
An automated script that plays Microtransaction-Simulator for you!
   
奖励
收藏
已收藏
取消收藏
Download AHK (AutoHotKey)
First I need you to download AHK (AutoHotKey) from https://autohotkey.com/
This is a program that reads your script and will click automatically once you start it. Just follow the setup wizard and you'll be good to go.
Setting up the script
Now, I want you to copy this code to your clipboard:


; This script will play Microtransaction-Simulator for you

SetDefaultMouseSpeed,0
WinWaitActive Microtransaction-Simulator
Run()

; To stop the application at any time, simply press the Escape button
Escape::ExitApp

;Run the whole application indefinitely
Run() {
while true {
Open()
OneCard()
TwoCard()
ThreeCard()
FourCard()
Sleep,500
}
}

Open()
{
Click,300,450
}

OneCard()
{
Click, 300,350
}

TwoCard()
{
Click,200,350
}
ThreeCard()
{
Click,320,125
}
FourCard()
{
Click,200,125
}


Great! Now I want you to go to your Notepad and paste the code in to there, save it as script.ahk
MAKE SURE IT SAVES AS .ahk AND NOT .txt
Save it to your desktop or someplace where you'll easily find it.
Running the script
Note that this script ONLY works when you have set the resolution to 640x480 and Windowed

To start the script, simply click on your script.ahk file and then on the game. The script will start and loop forever, you can stop the script by pressing ESC

Thank you for checking out my guide! If you would be so kind and drop a thumbs up or +rep my profile, I would greatly appriciate that.

Hope we meet again, until then I wish you happy hunting

15 条留言
BronzyDruid5299 2022 年 9 月 20 日 下午 9:26 
Wouldn't it be faster to make the script click open then open all?
scrimble 2022 年 2 月 22 日 下午 10:14 
Can you give more detail on how to change the resolution and whether it's in windowed mode?
happy 2021 年 11 月 13 日 下午 3:20 
-screen-width 640 -screen-height 480

Put this as start commands for the game (right click the game, then properties)
The game will launch in needed resolution, script still works fine.
GGreaper™ 2020 年 4 月 18 日 上午 6:28 
cant open the script
spooki  [作者] 2017 年 11 月 14 日 上午 1:16 
Hmm, thats weird. I have 100%:ed this already, so i downloaded it again and i could pick the resolution still. The only thing i can think of is reinstalling the game. To pause the sript press ESC :100percent:
Rosie 2017 年 11 月 13 日 下午 12:26 
How do you change the resolution and window the game? The popup in the picture does not show up when I launch the game.
Boucher Charcutier 2017 年 11 月 11 日 上午 9:05 
how do I stop the script and how do i 640x480 my game ?
barondeghost 2017 年 10 月 1 日 上午 11:21 
It works for me too, thank you!
drain gang 2017 年 10 月 1 日 上午 3:36 
It works now!
spooki  [作者] 2017 年 9 月 30 日 下午 10:28 
Ah I see, steam fucked up the code up a bit, should work now? Please reply if it still throws the error.