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!

[QUESTING] Moving while combat in dungeon

losthope0076

New Member
Joined
Sep 10, 2013
Messages
3
Hello, I'm writing a questprofile for a dungeon and in one part of this dungeon, I need to move and don't fight back while in combat. Is this possible in the Questorder? Hope somebody can help me.
 
Open the NoCombatMoveTo.cs within the Honorbuddy/Quest Behaviors subfolder for its syntax.
 
// ##Syntax##
// QuestId: Id of the quest.
// X,Y,Z: Where you want to go to.
but how can I use this? I tried
<CustomBehavior File="NoCombatMoveTo" X="XXXXX" Y="YYYYY" Z="ZZZZZ" /> , but there is no change. Am I doing something wrong?
 
u can disable the combat then re-enable it when u get to the spot u want to kill them at

<DisableBehavior Name="Combat" />

<EnableBehavior Name="Combat" />
 
PHP:
      <CustomBehavior File="RunLikeHell" AllowCombat="false" >
            <Hotspot X="-1326.865" Y="1660.201" Z="68.97437" />
</CustomBehavior>

use this and just add more hotspots, it will run from one to another and wont care about combat
 
Back
Top