Kli1195
New member
I have:
But I'm having some trouble.
How can I make it so that it automatically checks to see if you have any mysticality-based skills and uses them twice in combat?
And if the player has none, how to make it so that it aborts?
Code:
void bagT(){
int BoT = my_adventures();
while((item_amount($item[Bag o' Tricks]) > 0)){
while(BoT == my_adventures()){
equip($item[Bag o' Tricks]);
adventure(my_adventures(), $location[McMillicancuddy's Farm]);
use_skill($skill[Entangling Noodles]);
use_skill($skill[Lasagna Bandages]);
use_skill($skill[Open the Bag o' Tricks]);
}
}
}
How can I make it so that it automatically checks to see if you have any mysticality-based skills and uses them twice in combat?
And if the player has none, how to make it so that it aborts?