the follow macros may seem redundant but i bot and play manually, and the follow chat command frequently gives me a failure message. if i do it by console though, they do follow. so the macro is basically to make sure they follow
Code: Select all
automacro follow {
party /^follow$/
call {
do follow $.lastparty
stop
}
}
automacro followOther {
party /^follow (.*)/
call {
do follow $.lastMatch1
stop
}
}
automacro doCommand {
console /\[Party] (.*)\ : do (.*)/
call {
do $.lastMatch2
stop
}
}