Need a Script for casting buffs on others

kingofwartowers

New member
It needs to do this:
Cast as many turns of Jingle Bells possible on someone (Represent the name by 'A').
Use 2 ancient magi-wipes.
And repeat.

I will pay, of course.
 

Bale

Minion
That's barely even a script. I'd feel guilty if I took your meat for that.

Code:
while(my_meat() > 2 * mall_price($item[ancient magi-wipe])) {
   use_skill(my_mp() / mp_cost($skill[jingle bells]), $skill[jingle bells], "A");
   use(2, $item[ancient magi-wipe]);
}

That will do exactly what you asked, until you run out of meat.
 
Top