thenrique87
Member
- Joined
- May 20, 2010
- Messages
- 143
- Reaction score
- 0
Hey... Here is the deal;
My intention there was for while the toon performs both quests, 14236 and 14303, it doesnt target and/or attack anything. Problem is it only ignores mobs on the way to turning in 14236, then it attacks mobs, and after 30 min when it has time to pick up 14303, it will then again ignore mobs and turn in 14303. In other words, something like this;
<If Condition= I have these two quest, then dont attack anything > like below
I know its kinda hard to undertand but I can answer any questions. Ty.
PHP:
<If Condition="HasQuest(14236) && IsQuestCompleted(14236)">
<CustomBehavior File="WaitTimer" WaitTime="5000"/>
<CustomBehavior File="RunLikeHell" NumOfTimes="1" AllowCombat="false">
<Hotspot X="600.8375" Y="2783.495" Z="88.83977" />
</CustomBehavior>
</If>
<TurnIn QuestName="Weed Whacker" QuestId="14236" TurnInName="Kilag Gorefang" TurnInId="35893" />
<PickUp QuestName="Back to Aggra" QuestId="14303" GiverName="Kilag Gorefang" GiverId="35893" />
<If Condition="HasQuest(14303) && IsQuestCompleted(14303)">
<CustomBehavior File="WaitTimer" WaitTime="5000"/>
<CustomBehavior File="RunLikeHell" NumOfTimes="1" AllowCombat="false">
<Hotspot X="536.2184" Y="2689.7" Z="106.5525" />
</CustomBehavior>
</If>
My intention there was for while the toon performs both quests, 14236 and 14303, it doesnt target and/or attack anything. Problem is it only ignores mobs on the way to turning in 14236, then it attacks mobs, and after 30 min when it has time to pick up 14303, it will then again ignore mobs and turn in 14303. In other words, something like this;
<If Condition= I have these two quest, then dont attack anything > like below
PHP:
<If Condition="HasQuest(14236) && HasQuest(14236) [B]AND IGNORE COMBAT[/B]">
<If Condition="HasQuest(14236) && IsQuestCompleted(14236)">
<CustomBehavior File="WaitTimer" WaitTime="5000"/>
<CustomBehavior File="RunLikeHell" NumOfTimes="1" AllowCombat="false">
<Hotspot X="600.8375" Y="2783.495" Z="88.83977" />
</CustomBehavior>
</If>
<TurnIn QuestName="Weed Whacker" QuestId="14236" TurnInName="Kilag Gorefang" TurnInId="35893" />
<PickUp QuestName="Back to Aggra" QuestId="14303" GiverName="Kilag Gorefang" GiverId="35893" />
<If Condition="HasQuest(14303) && IsQuestCompleted(14303)">
<CustomBehavior File="WaitTimer" WaitTime="5000"/>
<CustomBehavior File="RunLikeHell" NumOfTimes="1" AllowCombat="false">
<Hotspot X="536.2184" Y="2689.7" Z="106.5525" />
</CustomBehavior>
</If>
</If>
Last edited by a moderator: