Simple AutoPrompt by alistormccoy
Description: Automatically answers any prompts that pop up while the script is running
1// AutoPrompt
2// Simple tool to help with pricing several items at the same price or giving a
3// bunch of runes the same name. Set your prompt response, press play, and
4// it'll automatically answer any prompts with your response. Enter war mode
5// to stop the script.
6
7#Set your prompt here:
8
9@setvar! response "32000"
10
11#Do not edit below
12if warmode
13 hotkey "Toggle War/Peace"
14endif
15overhead "Response: {{response}}" 1159
16while not dead
17 promptresponse response
18 wait 500
19 if warmode
20 hotkey "Toggle War/Peace"
21 stop
22 endif
23endwhile