First and foremost i do apologize if the format to post here is wrong, I know this could be a noob question for some , let me js share my macro concern.
I have been doing my macro work and yes it's my first time doing macro.
i followed exactly like in the guide to download and put those folders properly.
E:\Program Files (x86)\openkore_ready\openkore_ready\plugins\macro
in that folder contains the macro.pl file and Macro folders with script.pm, utilities.pm in it
E:\Program Files (x86)\openkore_ready\openkore_ready\plugins\macro\Macro
Next i have the macro.txt file in the control folders along with other config.txt here like;
E:\Program Files (x86)\openkore_ready\openkore_ready\control
In my config.txt file, i have entered this.
Code: Select all
macro_nowarn 1
macro_file macros.txt
macro_allowDebug 0
macro_orphans terminate
Code: Select all
#find master
automacro findMaster {
timeout 3
console /^I lost my master/
call {
$master = @config (followTarget)
do pm "$master" x $.map $.pos
}
}
automacro findMaster2 {
timeout 3
console /^Calculating route to find master/
call {
$master = @config (followTarget)
do pm "$master" x $.map $.pos
}
}
#goto master
automacro gotoMaster {
pm /x (.*) (.*) (.*)/
call {
$pm = $.lastpm
if ($pm != $master) stop
do move $.lastMatch1 $.lastMatch2 $.lastMatch3
}
}
#when master is found
automacro foundMaster {
console /^Found my master!/
call {
do pm "$master" clear
}
}
msg displayed "macro findMaster not found or error in queue
i typed macro list in the console,
it displayed
I have no idea what went wrong as i dont even get any error code..and i have been searching through the forum for hours to no avail...---macros---
--automacros--
--PearlSub--
I appreciate the reply and positive response to solve this issue.