Jump to content

kakimaki

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

623 profile views

kakimaki's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Hi, If i use Druid Swift Flight Form for gathering herbs and minerals there are a few problems 1. Herb: Sometimes after casting gathering the bot moves forward before loot is succesfully. Durids can gathering herbs at all shapeshift forms (Flight too) 2. Herb, Mining: Sometimes don't landing just almost at ground, but still flying(levitating). The bot does nothing. When it happends need interaction to fly down and click on resource to gathering, cos bot is just waiting forever. 3. Mine or Herb in water. Druid cant fly in flight form in water and can't switch to flight form in water. a. If already gathered(not deep water) bots just jumping in water, nothing else.(can't switch flightform) b. If water is deep bots try to dive but can't. These things totally kill the druid gathering boosts posibilities.
  2. kakimaki

    Battleground AI

    Hi, It would be nice an NPC blacklist for battlegrounder (If some npc is on the blacklist the bot shouldn't attack). The bot always attack minions, totems, lock's gates, ect. Its very detectable. In AV always targeting http://www.wowhead.c...-commander-guse and its not valid target, so my character is just stay and do nothing. Thanks
  3. Hi, It would be nice an NPC blacklist for battlegrounder (If some npc is on the blacklist the bot shouldn't attack). The bot always attack minions, totems, lock's gates, ect. Its very detectable. In AV always targeting http://www.wowhead.com/npc=13179/wing-commander-guse and its not valid target, so my character is just stay and do nothing. Thanks
  4. SOLVED! included 2 lines at begining of QuestList.cs file. using wManager.Wow.Class; using robotManager.Helpful; Hi, I try to make it work but it seems i cant. I would like to make one MOP Daily quest first. I get an error while try using profile: cant find "QuestGrinderClass" type or namespace. This was the original error but half haungarian. Compilator Error : c:\Users\Home\AppData\Local\Temp\d2rf4nhz.0.cs(1,39) : error CS0246: A következő típus- vagy névtérnév nem található: „QuestGrinderClass” (esetleg hiányzik egy „using” direktíva vagy egy szerelvényre mutató hivatkozás). QuestList.cs //including these two rows solved my problem using wManager.Wow.Class; using robotManager.Helpful; public sealed class TheEternalVigil : QuestGrinderClass { public TheEternalVigil() { // http://www.wowhead.com/quest=30307 Name = "The Eternal Vigil"; QuestId.AddRange(new[] { 30307 }); //kill 8 creatures Step.AddRange(new[] {8, 0, 0, 0 }); // Target NPC info results HotSpots.Add(new Vector3(1575.099f, 1387.266f, 444.9345f)); HotSpots.Add(new Vector3(1551.12f, 1381.316f, 443.8689f)); HotSpots.Add(new Vector3(1570f, 1436.109f, 441.7368f)); HotSpots.Add(new Vector3(1517.842f, 1418.363f, 442.5871f)); HotSpots.Add(new Vector3(1608.345f, 1461.799f, 442.3046f)); HotSpots.Add(new Vector3(1614.658f, 1415.385f, 446.3118f)); EntryTarget.Add(58412); // Shao-Tien Marauder : http://www.wowhead.com/npc=58412 EntryTarget.Add(65810); // Shao-Tien Soul-Render : http://www.wowhead.com/npc=65810 } } GoldenLotusDaily.xml <?xml version="1.0" encoding="utf-8"?> <QuesterProfile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <QuestFile>QuestList.cs</QuestFile> <QuestsSorted> <QuestsSorted Action="PickUp" NameClass="TheEternalVigil" /> <QuestsSorted Action="Pulse" NameClass="TheEternalVigil" /> <QuestsSorted Action="TurnIn" NameClass="TheEternalVigil" /> </QuestsSorted> <NpcQuest> <NPCQuest Id="58408" Name="Leven Dawnblade" GameObject="false"> <PickUpQuests> <int>30307</int> </PickUpQuests> <TurnInQuests> <int>30307</int> </TurnInQuests> <Position> <X>1212.302</X> <Y>1044.78</Y> <Z>425.9673</Z> <Type>None</Type> </Position> </NPCQuest> </NpcQuest> <Npc /> <Blackspots /> </QuesterProfile> I'd appreciate any advice. Thanks
×
×
  • Create New...