|
本帖最后由 小符 于 2017-2-6 11:12 编辑
找到个不错的bus脚本,分享一下。
下载地址:https://github.com/wndrz/kolbot-powerrush
PowerRush.js复制到libs文件夹,bots文件夹下的2个文件复制到libs\bots下。
bots/PowerRusher.js842行开始的3行需修改,看2楼。
配置:司机和BB的config先全部设false,然后所有char的Config.Leader = "司机的角色名字",
司机需设定Scripts.PowerRusher = true; Config.PublicMode = 1; Config.UseMerc = true;设定自己定义的拾取脚本Config.PickitFiles.push("my.nip");设定攻击技能。
baby需设定Scripts.PowerRushee = true;并设定技能。
- Config.PublicMode = 2;
- Config.LifeChicken = 0;
- Scripts.PowerRusher = false;
- Scripts.PowerRushee = true;ig
- Config.AttackSkill[0] = -1; // Preattack skill.
- Config.AttackSkill[1] = 0; // Primary skill to bosses.
- Config.AttackSkill[2] = -1; // Primary aura to bosses
- Config.AttackSkill[3] = 0; // Primary skill to others.
- Config.AttackSkill[4] = -1; // Primary aura to others.
- Config.AttackSkill[5] = -1; // Secondary skill if monster is immune to primary.
- Config.AttackSkill[6] = -1; // Secondary aura.
复制代码 编辑PowerRush.js文件
- var PowerRush = {
- Rushers: ["drivecharname"], // 司机角色名字
- RusheeCount: 3, // baby的数量
- RusheeLeader: "f1", // 领头的baby的profile名字,注意不是角色名,是d2bot #控制台里的profile名字
- Bumper: "", // bumper name; null for wsk walk 空着可以1级baby无需keychar,pass act5
- RushMode: "quick", // quick, full, wps, fullwps
- SwitchDifficulty: true, // Restart rushee profiles at the end of act 5 to skip the Congratulations and unbug the difficulty button自动切换难度
- // Make sure to set leader profile difficulty to "Highest" profile的难度设定为“Highest”
- //下面autorusher自动切换司机,方括号里内容全部注释掉。
- AutoRusher: [
- // automatically switch rusher profiles based on difficulty and quest
- // add lines of [diff, quest, name], which indicate that profile 'name' will be started for the specified quest
- // e.g.
- // [0, "andariel", "RusherSorc"],
- // [2, "travincal", "RusherPala"]
- //[1, "andariel", "RusherSorc"],
- //[2, "travincal", "RusherPala"],
- ],
复制代码 编辑D2BotFollow.dbj
- var JoinSettings = {
- "f1": ["all"] // "领头的bb的profile":["all"]
- };
复制代码
d2bot #控制台里面 领头的bb用d2Botlead启动,司机和另2个bb用D2botfollow启动。
如果bb不是从普通开始pass,注意领头的bb身上要有box。
如果司机掉线,3个bb还在,司机可手工重新进,领头的bb手工输入message ,比如要pass act4,就输入 start diablo,也可全部退出,重新创建游戏,会自动判断继续bus。
|
|