Ok based on the auto pot macro I have added the following and have tried adjusting the range but it does not seem to be helping. I am trying to cast even though there are no mobs around me, probably due to the clothes my char is wearing.
Code:
begin
begin loop()
if Color.At the current mouse position is within (RGB range)("82", "85", "90", "50")
begin
Keyboard.Hold keys("{<ctrl>}")
Keyboard.Press key("{<f6>}")
Keyboard.Release keys("{<ctrl>}")
Macro.Pause("100")
Mouse.Click("Right")
Macro.Pause("2500")
Keyboard.Hold keys("{<ctrl>}")
Keyboard.Press key("{<f7>}")
Keyboard.Release keys("{<ctrl>}")
Macro.Pause("100")
Mouse.Click("Right")
Macro.Pause("2500")
Keyboard.Hold keys("{<ctrl>}")
Keyboard.Press key("{<f8>}")
Keyboard.Release keys("{<ctrl>}")
Macro.Pause("100")
begin loop()
if Color.At the current mouse position is within (RGB range)("82", "85", "90", "50")
begin
Mouse.Hold button("Right")
end
if Color.At the current mouse position is not within (RGB range)("82", "85", "90", "50")
begin
Mouse.Release button("Right")
end
end
end
end
end
Ok based on the auto pot macro I have added the following and have tried adjusting the range but it does not seem to be helping. I am trying to cast even though there are no mobs around me, probably due to the clothes my char is wearing.
[code]
begin
begin loop()
if Color.At the current mouse position is within (RGB range)("82", "85", "90", "50")
begin
Keyboard.Hold keys("{<ctrl>}")
Keyboard.Press key("{<f6>}")
Keyboard.Release keys("{<ctrl>}")
Macro.Pause("100")
Mouse.Click("Right")
Macro.Pause("2500")
Keyboard.Hold keys("{<ctrl>}")
Keyboard.Press key("{<f7>}")
Keyboard.Release keys("{<ctrl>}")
Macro.Pause("100")
Mouse.Click("Right")
Macro.Pause("2500")
Keyboard.Hold keys("{<ctrl>}")
Keyboard.Press key("{<f8>}")
Keyboard.Release keys("{<ctrl>}")
Macro.Pause("100")
begin loop()
if Color.At the current mouse position is within (RGB range)("82", "85", "90", "50")
begin
Mouse.Hold button("Right")
end
if Color.At the current mouse position is not within (RGB range)("82", "85", "90", "50")
begin
Mouse.Release button("Right")
end
end
end
end
end
[/code]