Hello, I need a Allagan chimera (Azys Lla) farm profile, if someone can make it ? please I tried to create the profile but it don't work, I maked Hotspots, using the "add curent target" for the Allagan Chimera but my character don't move and only attack the mob if it's really close to me and only kill this chimera :'( If someone have a tutorial can help me too^^
There is my profile and now i have a new problem, when i start the bot, he load the previous profile & go farm for this proflie. View attachment Chimera2.Xml the log :
I'm not sure if the Profile Creator is up-to-date on the current tag usage. Feel free to open up one of the grinding profiles in my signature and use it as a template if you'd like, replacing the relevant details to fit your needs. If one of my profiles still has this in it, make sure you remove it, as it's basically for equpping gear while leveling: Code: <BotSettings AutoEquip="1" />
I Modify your profile : "[O] Hippogryph Skin - Hippogryphs" like this: View attachment ChimeraTest.Xml And The bot crash, I really don't know how to do a profile^^ help me please.
Try this: Code: <Profile> <Name>[O] Chimera Farm</Name> <KillRadius>130</KillRadius> <GrindAreas> <GrindArea name="Allagan_Chimera"> <Hotspots> <Hotspot Radius="130" XYZ="412.4578, -54.11706, -773.5139" name="Allagan Chimera" /> </Hotspots> <TargetMobs> <TargetMob Id="3540" /> </TargetMobs> <MinLevel>1</MinLevel> <MaxLevel>61</MaxLevel> </GrindArea> </GrindAreas> <Order> <Grind grindRef="Allagan_Chimera" while="Core.Player.ClassLevel < 61" /> </Order> </Profile>
Oh thank you for that! Also, would you happen to know where I can get the aetheryte IDs for heavensward? thank you
Run this in the Console: Code: ClearLog(); foreach(var item in DataManager.AetheryteCache) { Log("ID: {0} | Location: {1}",item.Key,item.Value); }
Oh Very nice! thank you for that. So lastly, how do i get the map number to fill in IsOnMap(____). Thank for all your help and sorry for all the noob questions =)
What I use: Code: ClearLog(); Log("Zone Id: {0} | Raw Zone Id: {1} | Subzone Id: {2}",WorldManager.ZoneId,WorldManager.RawZoneId,WorldManager.SubZoneId);