aight heres my script
how it works
macro recognizes color of combo bar activates skills in the given order fullstop.
sleep times vary depending on the skillcasttimes
the problem with the script is
it works perfectly fine once you adjusted the sleep times right BUT not in cases where you lag or client fucks up for a few mili seconds which hapens rather often cause my computer is shit :D
i want to make it so that when it recognizes the black of the combo bar the function/script starts all over again
making it also unnecessary to adjust the sleeptimes right
help plz <3
Code:
while 1 If Hex(PixelGetColor(420, 57),6) = "F8C800" Then if Hex(PixelGetColor(250, 763),6) = "232E41" Then send(6) sleep(10000) Elseif Hex(PixelGetColor(207, 763),6) = "232E41" Then send(5) sleep(10000) elseif Hex(PixelGetColor(163, 763),6) = "232E41" Then send(4) sleep(10000) else send(3) sleep(10000) endif EndIf WEnd
macro recognizes color of combo bar activates skills in the given order fullstop.
sleep times vary depending on the skillcasttimes
the problem with the script is
it works perfectly fine once you adjusted the sleep times right BUT not in cases where you lag or client fucks up for a few mili seconds which hapens rather often cause my computer is shit :D
i want to make it so that when it recognizes the black of the combo bar the function/script starts all over again
making it also unnecessary to adjust the sleeptimes right
help plz <3