automating buff requests

rogorx

New member
I'm trying to figure out how to automate buff requests from a buff bot.
basically what are mafia script commands that could automate this?
 

Rinn

Developer
Something like this, i would also make sure you have a check that ensures you don't go over the song limit because that might cause an infinite loop.

Code:
foreach e in $effects[Polka of Plenty, Fat Leon's Phat Loot Lyric, Carlweather's Cantata of Confrontation, Empathy]
{
    while (have_effect(e) < my_adventures())
    {
        acquireBuff(e);
    }
}
 
Top