Sleepy mariachi steal accordion + yellow ray

daunt

New member
I made this consult script for automated AT big ascension. I couldn't find anything that did this, so I thought I'd share. This will stun a sleepy mariachi and then steal accordions before yellow raying. It requires finger cuffs for stun.

Code:
int stunned=0;
int stole=0;
string consultSleepy(int round, string opp, string text) {
if (contains_text(text,"a sleepy mariachi")) return "skill sing";
if (contains_text(text,"anger and resolve")) {
stunned=1;
return "item finger cuffs";
}
if (stole==1 && contains_text(text,"yellow eye")){
return "skill point at your";
}else if (stunned==0 || contains_text(text,"tear the finger")){
stunned=1;
return "item finger cuffs";
}
else if (stole==0){
stole=1;
return "skill Steal Accordion";
} else {
return "skill sing";
}
print("should not happen");
return "skill sing";
}
 
Top