因为版本不匹配导致(采集暂时没问题),
生产需要自己写宏,技能对照表可以参考profile文件夹里面对照表.或者灰机网站查看
类似这种宏格式:
Name: mojiang
Type: Craft
Enabled: True
Conditions: (MaxDurability == 80 && MaxProgress == 2542 && Craftsmanship >= 2617 && Control >= 1763 && Cp >= 482 && Specialized == False)
Cost: 0
S1:
- Reflect
- Delicate Synthesis
- Delicate Synthesis
- Delicate Synthesis
- Delicate Synthesis
- Great Strides
- Byregot's Blessing
- Careful Synthesis
写好后 导入到lisebth中.
E:\RB\RebornbuddyCN V383\Settings\Lisbeth\Macros 宏的保存位置.
直接在lisebth里面宏里添加宏,重载或者添加.在订单里面填物品后.在循环里面选择你写的宏.
技能:5.2删除了Ingenuity 新颖,所以RB识别不到,请写宏的时候注意.
[07:03:57.054 N] Action Name:Sprint 冲刺 Action Id:3
[07:03:57.054 N] Action Name:Teleport 传送 Action Id:5
[07:03:57.054 N] Action Name:Return 返回 Action Id:6
[07:03:57.054 N] Action Name:Inner Quiet 内静 Action Id:258
[07:03:57.054 N] Action Name:Great Strides 阔步 Action Id:266
[07:03:57.054 N] Action Name:Collectable Synthesis 收藏品制作 Action Id:4566
[07:03:57.054 N] Action Name:Manipulation 掌握 Action Id:4580
[07:03:57.054 N] Action Name:Reuse 再利用 Action Id:4603
[07:03:57.054 N] Action Name:Name of the Elements 元素之美名 Action Id:4621
[07:03:57.054 N] Action Name:Ingenuity 新颖 Action Id:4629
[07:03:57.054 N] Action Name:Waste Not 俭约 Action Id:4637
[07:03:57.054 N] Action Name:Waste Not II 长期俭约 Action Id:19002
[07:03:57.054 N] Action Name:Innovation 改革 Action Id:19010
[07:03:57.054 N] Action Name:Final Appraisal 最终确认 Action Id:19018
[07:03:57.054 N] Action Name:Basic Synthesis 制作 Action Id:100090
[07:03:57.054 N] Action Name:Basic Touch 加工 Action Id:100091
[07:03:57.054 N] Action Name:Master's Mend 精修 Action Id:100092
[07:03:57.054 N] Action Name:Standard Touch 中级加工 Action Id:100093
[07:03:57.054 N] Action Name:Observe 观察 Action Id:100099
[07:03:57.054 N] Action Name:Precise Touch 集中加工 Action Id:100134
[07:03:57.054 N] Action Name:Careful Synthesis 模范制作 Action Id:100209
[07:03:57.054 N] Action Name:Patient Touch 专心加工 Action Id:100225
[07:03:57.054 N] Action Name:Prudent Touch 俭约加工 Action Id:100233
[07:03:57.054 N] Action Name:Focused Synthesis 注视制作 Action Id:100241
[07:03:57.054 N] Action Name:Focused Touch 注视加工 Action Id:100249
[07:03:57.054 N] Action Name:Trained Eye 工匠的神速技巧 Action Id:100289
[07:03:57.054 N] Action Name:Preparatory Touch 坯料加工 Action Id:100305
[07:03:57.054 N] Action Name:Intensive Synthesis 集中制作 Action Id:100321
[07:03:57.054 N] Action NameDelicate Synthesis 精密制作 Action Id:100329
[07:03:57.054 N] Action Name:Brand of the Elements 元素之印记 Action Id:100337
[07:03:57.054 N] Action Name:Byregot's Blessing 比尔格的祝福 Action Id:100345
[07:03:57.054 N] Action Name:Hasty Touch 仓促 Action Id:100361
[07:03:57.054 N] Action Name:Rapid Synthesis 高速制作 Action Id:100369
[07:03:57.054 N] Action Name:Tricks of the Trade 秘诀 Action Id:100377
[07:03:57.054 N] Action Name:Muscle Memory 坚信 Action Id:100385
[07:03:57.054 N] Action Name:Reflect 闲静 Action Id:100393
[07:03:57.054 N] Action Name:Careful Observation 设计变动 Action Id:100401
[07:03:57.054 N] Action Name:Careful Synthesis II 模范制作II Action Id:100069
[07:03:57.054 N] Action Name:Ingenuity II 新颖II Action Id:283
[07:03:57.054 N] Action Name:Piece by Piece 渐进 Action Id:100039
[07:03:57.054 N] Action Name:Muscle Memory 坚信 Action Id:100136
[07:03:57.054 N] Action Name:Ingenuity 新颖 Action Id:277
[07:03:57.054 N] Action Name:Innovation 改革 Action Id:284
[07:03:57.054 N] Action Name:Waste Not 俭约 Action Id:279
自动确认收藏品代码(这是RB插件中):
在RebornConsole插件里面添加代码运行,勾了这个插件就可以自动点确认了/rebornconsole里点run 最好延迟设小一些,否则lisbeth就超时停掉,可能设置小了会卡,如果没问题就默认
代码:
bool stopTask = false;
var task = System.Threading.Tasks.Task.Run(async () => {
while (!stopTask) {
if (ff14bot.RemoteWindows.SelectYesNoItem.IsOpen)
{
ff14bot.RemoteWindows.SelectYesNoItem.Yes();
await System.Threading.Tasks.Task.Delay(5000);
}
}
});
以上是临时解决办法,如果有更新再补充
生产需要自己写宏,技能对照表可以参考profile文件夹里面对照表.或者灰机网站查看
类似这种宏格式:
Name: mojiang
Type: Craft
Enabled: True
Conditions: (MaxDurability == 80 && MaxProgress == 2542 && Craftsmanship >= 2617 && Control >= 1763 && Cp >= 482 && Specialized == False)
Cost: 0
S1:
- Reflect
- Delicate Synthesis
- Delicate Synthesis
- Delicate Synthesis
- Delicate Synthesis
- Great Strides
- Byregot's Blessing
- Careful Synthesis
写好后 导入到lisebth中.
E:\RB\RebornbuddyCN V383\Settings\Lisbeth\Macros 宏的保存位置.
直接在lisebth里面宏里添加宏,重载或者添加.在订单里面填物品后.在循环里面选择你写的宏.
技能:5.2删除了Ingenuity 新颖,所以RB识别不到,请写宏的时候注意.
[07:03:57.054 N] Action Name:Sprint 冲刺 Action Id:3
[07:03:57.054 N] Action Name:Teleport 传送 Action Id:5
[07:03:57.054 N] Action Name:Return 返回 Action Id:6
[07:03:57.054 N] Action Name:Inner Quiet 内静 Action Id:258
[07:03:57.054 N] Action Name:Great Strides 阔步 Action Id:266
[07:03:57.054 N] Action Name:Collectable Synthesis 收藏品制作 Action Id:4566
[07:03:57.054 N] Action Name:Manipulation 掌握 Action Id:4580
[07:03:57.054 N] Action Name:Reuse 再利用 Action Id:4603
[07:03:57.054 N] Action Name:Name of the Elements 元素之美名 Action Id:4621
[07:03:57.054 N] Action Name:Ingenuity 新颖 Action Id:4629
[07:03:57.054 N] Action Name:Waste Not 俭约 Action Id:4637
[07:03:57.054 N] Action Name:Waste Not II 长期俭约 Action Id:19002
[07:03:57.054 N] Action Name:Innovation 改革 Action Id:19010
[07:03:57.054 N] Action Name:Final Appraisal 最终确认 Action Id:19018
[07:03:57.054 N] Action Name:Basic Synthesis 制作 Action Id:100090
[07:03:57.054 N] Action Name:Basic Touch 加工 Action Id:100091
[07:03:57.054 N] Action Name:Master's Mend 精修 Action Id:100092
[07:03:57.054 N] Action Name:Standard Touch 中级加工 Action Id:100093
[07:03:57.054 N] Action Name:Observe 观察 Action Id:100099
[07:03:57.054 N] Action Name:Precise Touch 集中加工 Action Id:100134
[07:03:57.054 N] Action Name:Careful Synthesis 模范制作 Action Id:100209
[07:03:57.054 N] Action Name:Patient Touch 专心加工 Action Id:100225
[07:03:57.054 N] Action Name:Prudent Touch 俭约加工 Action Id:100233
[07:03:57.054 N] Action Name:Focused Synthesis 注视制作 Action Id:100241
[07:03:57.054 N] Action Name:Focused Touch 注视加工 Action Id:100249
[07:03:57.054 N] Action Name:Trained Eye 工匠的神速技巧 Action Id:100289
[07:03:57.054 N] Action Name:Preparatory Touch 坯料加工 Action Id:100305
[07:03:57.054 N] Action Name:Intensive Synthesis 集中制作 Action Id:100321
[07:03:57.054 N] Action NameDelicate Synthesis 精密制作 Action Id:100329
[07:03:57.054 N] Action Name:Brand of the Elements 元素之印记 Action Id:100337
[07:03:57.054 N] Action Name:Byregot's Blessing 比尔格的祝福 Action Id:100345
[07:03:57.054 N] Action Name:Hasty Touch 仓促 Action Id:100361
[07:03:57.054 N] Action Name:Rapid Synthesis 高速制作 Action Id:100369
[07:03:57.054 N] Action Name:Tricks of the Trade 秘诀 Action Id:100377
[07:03:57.054 N] Action Name:Muscle Memory 坚信 Action Id:100385
[07:03:57.054 N] Action Name:Reflect 闲静 Action Id:100393
[07:03:57.054 N] Action Name:Careful Observation 设计变动 Action Id:100401
[07:03:57.054 N] Action Name:Careful Synthesis II 模范制作II Action Id:100069
[07:03:57.054 N] Action Name:Ingenuity II 新颖II Action Id:283
[07:03:57.054 N] Action Name:Piece by Piece 渐进 Action Id:100039
[07:03:57.054 N] Action Name:Muscle Memory 坚信 Action Id:100136
[07:03:57.054 N] Action Name:Ingenuity 新颖 Action Id:277
[07:03:57.054 N] Action Name:Innovation 改革 Action Id:284
[07:03:57.054 N] Action Name:Waste Not 俭约 Action Id:279
自动确认收藏品代码(这是RB插件中):
在RebornConsole插件里面添加代码运行,勾了这个插件就可以自动点确认了/rebornconsole里点run 最好延迟设小一些,否则lisbeth就超时停掉,可能设置小了会卡,如果没问题就默认
代码:
bool stopTask = false;
var task = System.Threading.Tasks.Task.Run(async () => {
while (!stopTask) {
if (ff14bot.RemoteWindows.SelectYesNoItem.IsOpen)
{
ff14bot.RemoteWindows.SelectYesNoItem.Yes();
await System.Threading.Tasks.Task.Delay(5000);
}
}
});
以上是临时解决办法,如果有更新再补充
评论