Quote:
Originally Posted by Eternaldragon10
so hab jetzt mein bo barb für soso reingemacht 2 fragen er gibt am anfang bo pala fängt an und boo sich selber mit cta kann ich das austellen ? cta will ich nicht ablegen da im thronsal imemr dooof gebot wird und er nix abkriegt ? und mein bo hält nur ca 6 minuten und 1 run dauert 8 wäre dan genau bei thronsal beginn aus . 2 frage dieser dummme pala atackt immer erst die horadrims beim clearen ist schön blöd wen man 20 souls und 50 vipern noch im raum hat der lichtblitz trifft nie kann ich einstellen das er die zu letzt macht?
|
BO Prob:
Leader mit gutem BO:
Code:
// Battle orders script - Use this for 2+ characters (for example BO barb + sorc)
Scripts.BattleOrders = true;
Config.BattleOrders.Mode = 0; // 0 = give BO, 1 = get BO
Config.BattleOrders.Wait = false; // Idle until the player that received BO leaves.
Config.BattleOrders.Getters = ["CHARNAME DER BO BEKOMMEN SOLL"]; // List of players to wait for before casting Battle Orders (mode 0). All players must be in the same area as the BOer.
Falls mehrere Follower von dir drin sind die alle bo bekommen sollen:
Code:
Config.BattleOrders.Getters = ["CHAR 1", "CHAR 2", "CHAR 3"]; // List of players to wait for before casting Battle Orders (mode 0). All players must be in the same area as the BOer.
Soso:
Code:
// Battle orders script - Use this for 2+ characters (for example BO barb + sorc)
Scripts.BattleOrders = true;
Config.BattleOrders.Mode = 1; // 0 = give BO, 1 = get BO
Config.BattleOrders.Wait = false; // Idle until the player that received BO leaves.
Config.BattleOrders.Getters = []; // List of players to wait for before casting Battle Orders (mode 0). All players must be in the same area as the BOer.
Somit wartet der BO-Char auf den eingetragenen Charname und castet dann für beide bo. die soso sollte dann erstmal kein bo mehr machen.
Baalrun Prob:
Pala läuft vermutlich als Leader, somit ist Baal Script bei Pala aktiviert.
Die soso benutzt BaalHelper oder BaalAssistent
Stell, falls du den Baal helper benutzt, auf BaalAssistent um.
Beim BaalAssistent kannst du einstellen dass die Soso wartet bis der Throne gecleant ist und der Leader Safe Tp sagt, dann geht so vorher auh nicht bei den Seelen drauf.
Code:
Scripts.BaalAssistant = true; // Used to leech or help in baal runs.
Config.BaalAssistant.Wait = 120; // Seconds to wait for a runner to be in the throne / portal wait / safe TP wait / hot TP wait...
Config.BaalAssistant.KillNihlathak = false; // Kill Nihlathak before going to Throne
Config.BaalAssistant.FastChaos = false; // Kill Diablo before going to Throne
Config.BaalAssistant.Helper = true; // Set to true to help attack, set false to to leech.
Config.BaalAssistant.GetShrine = false; // Set to true to get a experience shrine at the start of the run.
Config.BaalAssistant.GetShrineWaitForHotTP = false; // Set to true to get a experience shrine after leader shouts the hot tp message as defined in Config.BaalAssistant.HotTPMessage
Config.BaalAssistant.SkipTP = false; // Set to true to enable the helper to skip the TP and teleport down to the throne room.
Config.BaalAssistant.WaitForSafeTP = true; // Set to true to wait for a safe TP message (defined in SafeTPMessage)
Config.BaalAssistant.DollQuit = false; // Quit on dolls. (Hardcore players?)
Config.BaalAssistant.SoulQuit = false; // Quit on Souls. (Hardcore players?)
Config.BaalAssistant.KillBaal = true; // Set to true to kill baal, if you set to false you MUST configure Config.QuitList or Config.BaalAssistant.NextGameMessage or the bot will wait indefinitely.
Config.BaalAssistant.HotTPMessage = ["Hot"]; // Configure safe TP messages.
Config.BaalAssistant.SafeTPMessage = ["Safe", "Clear"]; // Configure safe TP messages.
Config.BaalAssistant.BaalMessage = ["Baal"]; // Configure baal messages, this is a precautionary measure.
Config.BaalAssistant.NextGameMessage = ["Next Game", "Next", "New Game"]; // Next Game message, this is a precautionary quit command, Reccomended setting up: Config.QuitList
Dazu muss beim Leader nur eine Safe TP nachricht eingetragen sein.
Code:
Scripts.Baal = true;
Config.Baal.HotTPMessage = "Hot TP!";
Config.Baal.SafeTPMessage = "Safe TP!";
Config.Baal.BaalMessage = "Baal!";
Config.Baal.SoulQuit = false; // End script if Souls (Undead Soul Killers) are found.
Config.Baal.DollQuit = false; // End script if Dolls (Undead Stigyan Dolls) are found.
Config.Baal.KillBaal = true; // Kill Baal. Leaves game after wave 5 if false.