Breakfast Scripts and buffbots

HasteBro

Member
Is there a way to use different breakfast scripts for different characters?

Specifically, I want to have only my buffbot start a breakfast script on login, while still being able to login in on a second mafia client on another character without starting the same script.

And while I'm talking about buffbots, how would I go about adding my buffbot to mafia's buffbot list?
 

HasteBro

Member
Hey, thanks! I didn't think of that simply because I never scripted anything.

I gave it a try and was able to make a working breakfast script that calls the right CLI command script for each character.

I also found out that I actually like scripting XD
 

mredge73

Member
Here are some specific breakfast properties that mafia uses:
Code:
set_property("autoPlantSoftcore","true");
set_property("breakfastSoftcore","Advanced Cocktailcrafting,Advanced Saucecrafting,Pastamastery,Summon Crimbo Candy");
set_property("grabCloversSoftcore","true");
set_property("grimoireSkillsSoftcore","all");
set_property("libramSkillsSoftcore","all");
set_property("loginRecoverySoftcore","true");
set_property("readManualSoftcore","true");
set_property("tomeSkillsSoftcore","true");
set_property("useCrimboToysSoftcore","true");
set_property("visitLoungeSoftcore","true");
set_property("visitRumpusSoftcore","true");

cli_execute("breakfast");

set_property("autoPlantSoftcore","false");
set_property("breakfastSoftcore","");
set_property("grabCloversSoftcore","false");
set_property("grimoireSkillsSoftcore","none");
set_property("libramSkillsSoftcore","none");
set_property("loginRecoverySoftcore","false");
set_property("readManualSoftcore","false");
set_property("tomeSkillsSoftcore","false");
set_property("useCrimboToysSoftcore","false");
set_property("visitLoungeSoftcore","false");
set_property("visitRumpusSoftcore","false");
 
Top