guys i made a little script myself but it has 2 problems - biggest, sometimes when i ctrl + left click to jump in conquer online while i spam healing potions by script, it acts as if the ctrl key isn't pressed and my character walks in that direction instead of jumping. and the smaller problem is that i have to press "ctrl + d" a couple of times for script to stop. so first i press cltr + a because flag is already 0 and script starts potting, then i press ctrl + d to stop it and if i want to restart, i press ctrl + s and then ctrl + a... here is what i did. i think the script sometimes ignores that i press Control because of the sleep command which i'd like to avoid. i also tried with +a, +d and +s i mean shift + a, etc but it's same problem, my char sometimes walks instead of jump
flag = 0
^a::
loop,
{
if (flag = 1)
{
;flag = 0
;return
exit
}
;send, {F1}
if (flag = 0)
{
send, {F9}
sleep, 100
send, {F10}
sleep, 400
;MouseClick, Left
}
}
return
^s::
flag = 0
return
^d::
flag = 1
;exit
return
Post edited February 11, 2017 by ciomalau