here is my code: im using PM to trigger macros...
Code: Select all
automacro heal {
console /\(From: (.*)\) : heal/i
exclusive 1
run-once 1
timeout 1.5
sp > 10%
call {
$name = $.lastMatch1
do sp 28 $name 10
release all
}
}
Moderator: Moderators
Code: Select all
automacro heal {
console /\(From: (.*)\) : heal/i
exclusive 1
run-once 1
timeout 1.5
sp > 10%
call {
$name = $.lastMatch1
do sp 28 $name 10
release all
}
}
Code: Select all
automacro heal {
console /(From: (.*)) : heal/i
exclusive 1
run-once 1
timeout 1.5
sp > 10%
call {
$name = $.lastpm
do sp 28 "$name" 10
release all
}
}
Code: Select all
console /\(From: (.*)\) : heal/i