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!

副本死亡后,不能捡尸体。

flyingyan

Member
Joined
Sep 28, 2012
Messages
95
版主大大,在魔古山这个副本死亡后,是飞行坐骑的状态。进副本的时候会卡在门口。需要手动才能进门。原因是外挂往天上飞,不是从地面跑进门。手头上有个脚本,每次都卡在这里。希望能够解决。
 
你可以试下
Code:
<CustomBehavior File="Hooks\DoWhen" ActivityName="DeathRun" AllowUseDuringCombat="True" UseWhen="Me.IsGhost" > 
                <DisableBehavior Name="Death" /> 
                <CustomBehavior File="WaitTimer" WaitTime="1500" />  
                <CustomBehavior File="Message" Text="角色死亡! 控制跑尸路径." LogColor="Red" /> 
                <CustomBehavior File="FlyTo" X="" Y="" Z="" /> 
                 
                <EnableBehavior Name="Death" /> 
</CustomBehavior>
 
Last edited:
你可以试下
Code:
<custombehavior file="hooks\dowhen" activityname="deathrun" allowuseduringcombat="true" usewhen="me.isghost" > 
                <disablebehavior name="death" /> 
                <custombehavior file="waittimer" waittime="1500" />  
                <custombehavior file="message" text="角色死亡! 控制跑尸路径." logcolor="red" /> 
                <custombehavior file="flyto" x="" y="" z="" /> 
                 
                <enablebehavior name="death" /> 
</custombehavior>
试了一下,结果显示在灵魂状态时,不执任务脚本,hb默认优先捡尸体。
 
Back
Top