What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[H - Grind] Artifact Fragments - ~250/hr

Status
Not open for further replies.

Mac

New Member
Joined
Jul 14, 2012
Messages
51
Reaction score
1
Made this a few days ago to farm rep for Voljin's Spear. Pulls around 200-250 fragments per hour while looping Warspear.
Since you'll be underwater, I also made a plugin that will auto drink Draenic Water Breathing Elixirs so you don't die and included that too.
d6fceb1040dbfccadb7067ca7938a51a.png

Its almost 100% AFKable
Set "Pull Distance" to 100 and check "Pull Between Hotspots" for maximum performance!

View attachment Artifact Fragments [H][G].xml
View attachment DWBE.zip

Report any Issues you have below!

 
Last edited:
Hey thanks man


I test this at the same time and enroll dan again
 
does this profile grind voljin rep as well?
or do you need any else for that?

am i seeing this right that 1 mob gives 1 artifact wich equals 1 rep?
so you have to kill 30k mobs?!?
 
Last edited:
does this profile grind voljin rep as well?
or do you need any else for that?

am i seeing this right that 1 mob gives 1 artifact wich equals 1 rep?
so you have to kill 30k mobs?!?
crabs give 1 artifact, carps give 2. You can turn them in for 1:1 Rep per Artifact or turn them in to the Mage Portal person and its 250 rep for every 100 when you're completing the repeatable quest.
 
ok thats better
but the profile stucks at some points when it wants to reach crabs behind big rocks

View attachment 155766
yeah pathing issue with honorbuddy. I had my toon get stuck on one occasion. I've ran it for around 40 hours with only 3 stucks and all were from pathing issues that I fixed by installing a plugin to jump every 10-120 seconds
 
Thanks for this! Is pull distance == loot distance now? Doesn't seem to be a line for it anymore in the Settings & Tools
 
And any suggestions which plugin to use for random jumping to help with the behind-a-rock pathing?
 
Thanks for this! Is pull distance == loot distance now? Doesn't seem to be a line for it anymore in the Settings & Tools
yup, I set it to 100 for maximum randomness
And any suggestions which plugin to use for random jumping to help with the behind-a-rock pathing?
I got a version I found working a while back, should jump every 60 seconds at a random time. I threw it together pretty quickly so I wouldnt 100% trust it to not look botty.
using System;

using Styx.Common;
using Styx.Plugins;
using System.Collections.Generic;
using Styx.WoWInternals;
using Styx.WoWInternals.WoWObjects;
using Styx.CommonBot;
using System.Linq;

namespace Styx
{
public class ShittyJump : HBPlugin
{
public override string Name{get{return "Jump";}}
public override string Author{get{return"WiNiFiX";}}
public override Version Version { get { return new System.Version(1, 0); } }

public override void Pulse()
{
var me = StyxWoW.Me;

if(!me.IsAlive || me.IsOnTransport || me.OnTaxi || me.Stunned || (me.Mounted && me.IsFlying) || me.Looting || me.IsCasting)
{
return;
}

Random r = new Random (DateTime.Now.Second);
int rnd = r.Next(1,59);
if(me.IsAlive && DateTime.Now.Second == rnd)
{
WoWMovement.Move(WoWMovement.MovementDirection.JumpAscend, TimeSpan.FromMilliseconds(5000));
}
}
}
}
 
Ok so i realise when the bot wants to repair he went to Gorgrond, why is that? i mean warspear is full of vendors?

Another question for you guys in here:
I have 968 fragments in my currency and cant loot the crabs when i kill them? is there some kind of bug? have someone realise this before?
 
Last edited:
Ok so i realise when the bot wants to repair he went to Gorgrond, why is that? i mean warspear is full of vendors?

Another question for you guys in here:
I have 968 fragments in my currency and cant loot the crabs when i kill them? is there some kind of bug? have someone realise this before?
turn in the fragments, there might be a cap. I turned them in once a day around 750 each time. Also, I never coded a place to repair because I never really needed to. My Warrior ran it fine but I'll add one anyway :D

EDIT: Blizzard hotfixed this. No longer works :(
 
Last edited:
turn in the fragments, there might be a cap. I turned them in once a day around 750 each time. Also, I never coded a place to repair because I never really needed to. My Warrior ran it fine but I'll add one anyway :D

EDIT: Blizzard hotfixed this. No longer works :(


Yeah i realize that. so basicly we cant farm the mobs outside the ashran anymore :(.. is there a way to maybe make a profile inside the Ashran? would love that mate if you can! :D
 
Yeah i realize that. so basicly we cant farm the mobs outside the ashran anymore :(.. is there a way to maybe make a profile inside the Ashran? would love that mate if you can! :D
You'd have to start it inside ashran since Queues for it are so fucked but I'll give it a shot. I'll update with more info and see if its worth it
 
You'd have to start it inside ashran since Queues for it are so fucked but I'll give it a shot. I'll update with more info and see if its worth it


Great buddy! hope to see some soon than, GL!
 
Archiving this thread at Mac's implied request. His comment was:

"Blizzard Patched this, it no longer works"

cj
 
Status
Not open for further replies.
Back
Top