Jump to content

Recommended Posts

This bot has smelting/milling features, but no the same for crafting top matherials for leatherworking and tailoring. For example, it cant craft bolt of cloth from cloth stack. 

So, i found some lua scripts and wrote snippets for fight class. Add this snippet to the bottom of fight class profile (with lowest priority), and it alow grind more cloth/leather and keep your bags empty.

Grind Magnificent Hide (MOP):

  Reveal hidden contents

Grind Bolt of Windwool Cloth (MOP)

  Reveal hidden contents

If you want to grind other top crafted matherials, just change it name in lua script and item id and count in FightClassConditionItemNumber condition

  • 2 months later...

for last WoW versions LUA code should look like this:

CastSpellByName("Tailoring");
for i,r in ipairs(C_TradeSkillUI.GetAllRecipeIDs()) do
  local x=C_TradeSkillUI.GetRecipeInfo(r);
  if x.name=="Bolt of Windwool Cloth" then
    C_TradeSkillUI.CloseTradeSkill();
    C_TradeSkillUI.CraftRecipe(r,x.numAvailable);
    break;
  end;
end

 

  • 1 month later...

C# variant (universal)

public int craft(string profession, string matherial) {
  SpellManager.CastSpellByNameLUA(profession);
  Lua.LuaDoString("CloseTradeSkill()");
  string command = String.Format(
   "toCraft=0 local q,n,_,a=\"{0}\" "+
   "for i=1,GetNumTradeSkills() do n,_,a=GetTradeSkillInfo(i) if(n==q) then toCraft=a DoTradeSkill(i,a) break end end",
   matherial);
  int result = Lua.LuaDoString<int>(command,"toCraft");
  return result;
}

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...