Profile: [Fly][H - Quest] LK 68-80 [Kick] Quest: The Runic Prophecies - Quest - World of Warcraft Description: Better landing Point Handling. Otherwise it sometime Stucks. Replace: Code: <If Condition="HasQuest(12058) && !IsQuestCompleted(12058)"> <CustomBehavior File="FlyTo" X="4976.957" Y="-4709.781" Z="313.7059" /> <CustomBehavior File="FlyTo" X="4977.834" Y="-4744.346" Z="219.5058" /> <Objective QuestName="The Runic Prophecies" QuestId="12058" Type="UseObject" ObjectId="188289" UseCount="1" Nav="Fly" /> <Objective QuestName="The Runic Prophecies" QuestId="12058" Type="UseObject" ObjectId="188264" UseCount="1" Nav="Fly" /> <Objective QuestName="The Runic Prophecies" QuestId="12058" Type="UseObject" ObjectId="188288" UseCount="1" Nav="Fly" /> </If> With: Code: <If Condition="HasQuest(12058) && !IsQuestCompleted(12058)"> <If Condition="HasQuest(12058) && !IsObjectiveComplete(3,12058)"> <CustomBehavior File="FlyTo" DestName="3rd Plate" X="4952.656" Y="-4705.741" Z="219.8488" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <Objective QuestName="The Runic Prophecies" QuestId="12058" Type="UseObject" ObjectId="188289" UseCount="1" /> </If> <If Condition="HasQuest(12058) && !IsObjectiveComplete(1,12058)"> <CustomBehavior File="FlyTo" DestName="1st Plate" X="5007.675" Y="-4734.232" Z="219.4391" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <Objective QuestName="The Runic Prophecies" QuestId="12058" Type="UseObject" ObjectId="188264" UseCount="1" /> </If> <If Condition="HasQuest(12058) && !IsObjectiveComplete(2,12058)"> <CustomBehavior File="FlyTo" DestName="2rd Plate" X="5006.924" Y="-4790.667" Z="219.4593" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <Objective QuestName="The Runic Prophecies" QuestId="12058" Type="UseObject" ObjectId="188288" UseCount="1" /> </If> <CustomBehavior File="WaitTimer" WaitTime="3000" GoalText="Waiting for quest to complete {TimeRemaining}" /> </If>
Profile: [Fly][A - Quest] LK 68-80 [Kick] Quest: The Runic Prophecies - Quest - World of Warcraft Descirption: Remove Quest Override + Changed InteractWith to Objective Type="UseObject" Remove: Code: <Quest Id="11993" Name="The Runic Prophecies"> <Objective Type="UseObject" ObjectId="188289" UseCount="1"> <Hotspots> <Hotspot X="4950.799" Y="-4707.088" Z="219.6121" /> </Hotspots> </Objective> <Objective Type="UseObject" ObjectId="188264" UseCount="1"> <Hotspots> <Hotspot X="5005.357" Y="-4792.208" Z="219.4075" /> </Hotspots> </Objective> <Objective Type="UseObject" ObjectId="188288" UseCount="1"> <Hotspots> <Hotspot X="5007.446" Y="-4734.298" Z="219.4404" /> </Hotspots> </Objective> </Quest> Replace: Code: <While Condition="HasQuest(11993) && !IsQuestCompleted(11993)"> <CustomBehavior File="FlyTo" DestName="3rd Plate" X="4952.656" Y="-4705.741" Z="219.8488" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <CustomBehavior File="InteractWith" QuestId="11993" MobId="188289" CollectionDistance="10" X="4952.656" Y="-4705.741" Z="219.8488" /> <CustomBehavior File="FlyTo" DestName="1st Plate" X="5007.675" Y="-4734.232" Z="219.4391" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <CustomBehavior File="InteractWith" QuestId="11993" MobId="188264" CollectionDistance="10" X="5007.675" Y="-4734.232" Z="219.4391" /> <CustomBehavior File="FlyTo" DestName="Objective" X="5006.924" Y="-4790.667" Z="219.4593" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <CustomBehavior File="InteractWith" QuestId="11993" MobId="188288" CollectionDistance="10" X="5006.924" Y="-4790.667" Z="219.4593" /> <CustomBehavior File="WaitTimer" WaitTime="3000" GoalText="Waiting for quest to complete {TimeRemaining}" /> </While> With: Code: <If Condition="HasQuest(11993) && !IsQuestCompleted(11993)"> <If Condition="HasQuest(11993) && !IsObjectiveComplete(3,11993)"> <CustomBehavior File="FlyTo" DestName="3rd Plate" X="4952.656" Y="-4705.741" Z="219.8488" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <Objective QuestName="The Runic Prophecies" QuestId="11993" Type="UseObject" ObjectId="188289" UseCount="1" /> </If> <If Condition="HasQuest(11993) && !IsObjectiveComplete(1,11993)"> <CustomBehavior File="FlyTo" DestName="1st Plate" X="5007.675" Y="-4734.232" Z="219.4391" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <Objective QuestName="The Runic Prophecies" QuestId="11993" Type="UseObject" ObjectId="188264" UseCount="1" /> </If> <If Condition="HasQuest(11993) && !IsObjectiveComplete(2,11993)"> <CustomBehavior File="FlyTo" DestName="2rd Plate" X="5006.924" Y="-4790.667" Z="219.4593" /> <CustomBehavior File="ForcedDismount" /> <CustomBehavior File="WaitTimer" WaitTime="2000" GoalText="Waiting for agro to clear {TimeRemaining}" /> <Objective QuestName="The Runic Prophecies" QuestId="11993" Type="UseObject" ObjectId="188288" UseCount="1" /> </If> <CustomBehavior File="WaitTimer" WaitTime="3000" GoalText="Waiting for quest to complete {TimeRemaining}" /> </If>
There is still problem in a quest what I fixed. Someone repaired it bad. Check the screen Screenshot by Lightshot
<Vendor Name="Ikuti" Entry="18008" Type="Repair" X="1024.031" Y="7366.399" Z="36.33611" /> , keeps clicking on and off
Profile: [Fly][H - Quest] BC 58-70 [Kick] Quest: The Umbrafen Tribe - Quest - World of Warcraft Description: Better landing Point, because sometimes the Char lands on the roof. Replace: Code: <CustomBehavior File="FlyTo" DestName="Umbrafen Village" X="-1085.448" Y="5189.556" Z="57.19121" /> With: Code: <CustomBehavior File="FlyTo" DestName="Umbrafen Village" X="-1071.011" Y="5216.606" Z="22.86616" />
Hello! I have a problem. My bot makes quests in strange way - attacks any creature it encounters, goes in strange places when it has completed quests (instead of turning them in)... Attaching log of this behaviour.
Profile: [Fly][N - Quest] Uldum 83-85 [Kick] Quest: Just the Tip - Quest - World of Warcraft Description: Fixed a Bug where the Char Fly Between the Hotspots and not Dismount to Kill the Required Mob. Replace: Code: <Quest Id="27176" Name="Just the Tip"> <Objective Type="CollectItem" ItemId="60865" CollectCount="1"> <Hotspots> <Hotspot X="-9300.257" Y="-1779.043" Z="69.69764" /> <Hotspot X="-9346.56" Y="-1782.159" Z="70.30051" /> <Hotspot X="-9391.146" Y="-1782.919" Z="70.18357" /> </Hotspots> </Objective> </Quest> With: Code: <Quest Id="27176" Name="Just the Tip"> <Objective Type="CollectItem" ItemId="60865" CollectCount="1"> <CollectFrom> <Mob Name="Sultan Oogah" Id="45205" /> </CollectFrom> <Hotspots> <Hotspot X="-9300.257" Y="-1779.043" Z="69.69764" /> <Hotspot X="-9346.56" Y="-1782.159" Z="70.30051" /> <Hotspot X="-9391.146" Y="-1782.919" Z="70.18357" /> </Hotspots> </Objective> </Quest> Replace: Code: <Objective Nav="Fly" QuestName="Just the Tip" QuestId="27176" Type="CollectItem" ItemId="60865" CollectCount="1" /> With: Code: <If Condition="HasQuest(27176) && !IsQuestCompleted(27176)"> <CustomBehavior File="FlyTo" X="-9277.324" Y="-1760.133" Z="67.87192" /> <CustomBehavior File="ForcedDismount" /> <Objective QuestName="Just the Tip" QuestId="27176" Type="CollectItem" ItemId="60865" CollectCount="1" /> </If>
I am sorry, but this answer does not make any sense. I was watching it, and it was not stopping before aggro'ing mobs.
What is the the matter with you Chinajade? Your answers are usually much better that that. This quest has been showing the same problem since the first time i played it. It has nothing to do with the beta version.
Profile broken/needs repair View attachment 6484 2014-01-05 15.12.txt Got this while questing in Mudsprocket, says it's broken and needs to be repaired.
Profile: [A - Quest] EK 12-58 [Kick] Quest: In A Dark Corner - Quest - World of Warcraft Description: The Toons stands at the Pile of Scraps in the Rotting Orchard but doesn't interact with it. I clicked on in myself.
Kicks questing names on the scripts are not correct. When running kun lai summit 87-88 It says it's grinding to 87.5 why is this Thank you.
View attachment 865692 2014-01-05 22.55.txt Ok First want to start with what a great profile I have been leveling my monk since level 1 and am 82. I am now having a problem. At level 80 as soon as I got to the Cata content it has stopped working just stays on Hold. I have tried deleting the cache's and reinstalling also I am up to date with the lates Kick profile. Please help!!! I am attaching my log.
In the quest, Prophet Khar'zul, the toon keeps stepping off the table, and trying to get back on it, and keeps getting killed. Sorry for the very long log.
URGENT! The quest Thunder Stones is seriously bugged. The toon keeps going back and forth in the same place. I finished each phase of the quest (sealing different parts like the armory, the inn...), and restarted the HB, only to see the toon start its psychotic behavior. This is really a danger for anyone not attending his bot. This problem is new since the update of the deepholme profile.
Profile: [N - Quest] 86-87 Valley of the Four Winds [Kick].xml Quest: The Great Water Hunt - Quest - World of Warcraft Description: Toon talks to Mudmug, heads out to collect water, when it has collected 20, it heads back to the starting point and stands there. "Moving to hunting ground waypoint 'hunting ground center'"
Hi, MaxMuster, Your changes have been incorporated into v3045. We replaced the RunLua behavior with a UseItem element. We also aligned the Alliance-side profile with the changes you recommended for Horde-side. If the edits were botched, we'll probably find out promptly. cheers & thanks again! chinajade [size=-2]Ref: MaxMuster's problem report w/recommended repair[/size]
Hi, Stickan, This article should also prove helpful in your endeavor: HelpDesk: Questing profiles and the Loremaster achievement cheers, chinajade