What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

rb升级后序列模式出错了 求救~!

sttianling

Member
Joined
Jan 31, 2015
Messages
59
rb升级后序列模式打怪就出错了 ,读取脚本没什么 一点开始就提示下面的东西。。然后 就自动停止了 在点开始 rb就没了。。



[13:52:01.676 D] Added new hook [Pull] b4120624-00aa-49f7-b629-cd428665f7a6
[13:52:01.676 D] Added new hook [RoutineCombat] 0960c4fc-857a-446a-ae03-ae9c16e454b1
[13:52:01.677 D] Added new hook [HotspotPoi] bc824088-f54c-45cf-b443-e275b9d8145e
[13:52:01.678 D] Added new hook [SetDeathPoi] 969b7eb5-67c2-48e3-9059-0a7ee35795b7
[13:52:01.678 D] Added new hook [SetCombatPoi] b33f0318-210a-436f-8499-49bd3aa6f867
[13:52:01.678 D] Added new hook [SetHotspotPoi] 8eec063e-e85c-47fd-ab2e-ae93f5a2f1a0
[13:52:01.678 D] Added new hook [SelectPoiType] 77f2d2d7-bacf-4aa7-844a-9e87bfddf007
[13:52:01.679 D] Replaced hook [SelectPoiType] aa5eddcf-73dc-450a-b509-ac4725c30fbf
[13:52:01.680 D] Inserted new hook [TreeStart @0] c909aec5-a9bd-47fe-a536-b27de52ad97b
[13:52:01.734 N] [Agil] Loaded settings.
[13:52:01.758 N] [Agil] Loaded data for 51 menders.
[13:52:01.779 N] [Agil] Loaded stat weights for 30 classes.
[13:52:01.784 D] Inserted new hook [TreeStart @0] 84ac79dc-802a-4b81-a10e-16b0606e5042
[13:52:01.784 N] [Agil] Hooked.
[13:52:01.873 N] [Ultima] Loading: Archer
[13:52:02.053 N] TargetMobs name field has been removed. Use the Id field instead.
[13:52:02.054 N] Stopping the bot. Reason:Invalid grind area, TargetMobs name field is no longer valid.
[13:52:02.054 D] CurrentBot.Stop()
[13:52:02.057 N] Connection closed! 23.88.178.194:31214
[13:52:02.059 D] TreeHooks.Instance.ClearAll()
[13:52:02.059 N] Clearing all hooks.
[13:52:02.059 D] Navigator.Clear()
[13:52:02.059 V] [Poi.Clear] Reason: Bot stopped
[13:52:02.059 D] OnStop event
[13:52:02.059 D] OnStop Event Invoking
[13:52:02.060 D] ProfileOrderManager.OnBotStop. Resetting caches.
[13:52:02.062 V] [Poi.Clear] Reason: Current behavior changed to GrindTag: GrindRef: 开始1, WhileCondition: Core.Player.ClassLevel < 51, IsDone: False, HighPriority: False, InCombat: False, QuestId: 0, StepId: 0, PostCombatDelay: 0, QuestName: null, IsDoneCache: False, Behavior: ff14bot.Behavior.HookExecutor, .
[13:52:02.062 D] Replaced hook [ProfileOrderBehavior_Hook] f68eb25c-fa48-4895-bc0f-c4ce43979379
[13:52:02.090 N] Bot Thread Ended. Was this requested?
 
RB最新版已经不识别怪物或物品名称了,统一识别数字ID,要么你改脚本,把怪物等名字改成数字ID,要么你用老版本RB,另外如果你英文可以直接去英文论坛问,这样答复的更快捷些,好像这里的版主并不玩ff14,或者不玩国服ff14.


寻找数字id代码: Log(Core.Target.NpcId);


[07:41:29.376 N] TargetMobs name field has been removed. Use the Id field instead.

You'll need to update your profile from

Code:
<GrindArea name="UnholierBoth">
<Hotspots>
....
</Hotspots>
<TargetMobs>
<TargetMob Name="somethingsomethingsomething" />
</TargetMobs>
<MinLevel>0</MinLevel>
<MaxLevel>50</MaxLevel>
</GrindArea>

to

Code:
<GrindArea name="UnholierBoth">
<Hotspots>
....
</Hotspots>
<TargetMobs>
<TargetMob Id="1231" />
</TargetMobs>
<MinLevel>0</MinLevel>
<MaxLevel>50</MaxLevel>
</GrindArea>
You can find the id by targeting the unit and running

Code:
Log(Core.Target.NpcId);
 
Last edited:
需要将你的脚本里的<TargetMob Name="somethingsomethingsomething" />
这里的name改成怪物的id
怪物id获取方法:游戏里选中怪物/NPC为目标,然后在插件里RebornConsole里粘贴下面代码Run[F5]运行即可获得对应信息
Code:
Log(Core.Target.NpcId);
 
谢谢ep大大 终于可以用了 不过就是出来一个新问题 ,当装备持久过低 回去修装备的时候 人物会一直在原地打转转。。。
 

Attachments

谢谢ep大大 我更新了 不过还是那个问题,不过只是那个诗人号 其他号又不会 我也晕了
 
Back
Top