SCRIPT_NAME="mount";
SCRIPT_DESC = "mounts";
SCRIPT_OFF = false;
void bootup(){
triggerManager.newTrigger("soulHealth",
"^Your soul mount: ([ A-ZDEVa-zde',._-]+) \\(([0-9]+)\\%\\) (|[+-]|[+-][+-]|[+-][+-][+-]|[+-][+-][+-][+-]|[+-][+-][+-][+-][+-]|[+-][+-][+-][+-][+-])$",
"$"+SCRIPT_NAME+".mountHealthReport");
}
void mountHealthReport(){
hps=Integer.parseInt(vars.get(2));
if(hps < 51) {
clientGUI.doCommand("party report Mount in "+hps+"% hps, HEAL IT!");
clientGUI.doCommand("party report Mount in "+hps+"% hps, HEAL IT!");
}
}