Jump to content

Talamin

Elite user
  • Posts

    329
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Talamin reacted to Droidz in TraceLine.TraceLineGo cache?   
    Hi, I added method TraceLine.ClearCache() (wait next update)
  2. Like
    Talamin reacted to Zer0 in Video tutorial - Create a plugin from scratch   
    Hi guys, I've created a video showing how to create a C# plugin from scratch. If you have questions or need more info, don't hesitate to ask.
     
     
  3. Like
    Talamin reacted to Droidz in 10-year anniversary   
    Happy New Year to all !

    I'm excited to start another year and look forward to continuing to serve you with WRobot.

    This year marks a special milestone for us as we celebrate the 10-year anniversary of WRobot. 
    I'm grateful for your support and look forward to many more years of success together. 

    Thank you for choosing WRobot, and I hope you have a happy, healthy, and prosperous new year!

    View full article
  4. Like
    Talamin reacted to MrCeeJ in [Free] Basic Plugin for handing in Damaged Necklaces for Jewelcrafter tokens (WOTLK) [Source Included]   
    I have refactored it a little, to suit my preferred 'functional' style. Not sure if it is everyone's cup of tea so I'll leave the original, but I do enjoy being able to chain functions with simple boolean return values, and it makes it very easy to compose and modify things like dps rotations that can form very complex decision trees.
    I am curious what other devs think, it is full of side-effects and empty statements, which are normally considered smells as they can make the code hard to understand and work with, but since the purpose of the refactoring is to make it easier to understand and work with I don't think they are necessarily valid objections here.
    Finally, I am sorry the capitalisation is all over the place, coming from a Java / Python / Prolog background the .net capitalisation always confuses me..
     
    using System; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.IO; using System.Linq; using System.Reflection; using System.Threading; using robotManager.Helpful; using robotManager.FiniteStateMachine; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.Bot.States; using wManager.Wow.Enums; using wManager.Wow.ObjectManager; using wManager.Wow.Class; public class Main : wManager.Plugin.IPlugin { public void Initialize() { Logging.Write("JCToken: Started."); int count = 0; while (TurnIn() || Repair() || GetQuest()){} Logging.Write("JCToken: Finished"); } private bool TurnIn() { return HaveRepairedItem() && CompleteQuest(); } private bool Repair() { return HaveQuest() && RepairItem(); } private bool GetQuest() { return HaveItems() && AcceptQuest(); } private bool HaveRepairedItem() { return HaveItemId(43298); } private void CompleteQuest() { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(ObjectManager.Me.Position, 28701); System.Threading.Thread.Sleep(128); Quest.SelectGossipActiveQuest(1); System.Threading.Thread.Sleep(128); Quest.CompleteQuest(); System.Threading.Thread.Sleep(256); return true; } private bool HaveQuest() { return HaveItemId(43299); } private bool RepairItem() { foreach (WoWItem item in Bag.GetBagItem()) { ItemInfo info = item.GetItemInfo; int itemId = GetId(info.ItemLink); if (itemId == 43299) { List<int> bagAndSlot = Bag.GetItemContainerBagIdAndSlot(info.ItemName); Lua.LuaDoString("UseContainerItem(" + bagAndSlot[0] + "," + bagAndSlot[1] + ")"); System.Threading.Thread.Sleep(12500); return true; } } return false; } private bool HaveItems() { return HaveItemId(43297) && HaveItemId(36923); } private bool AcceptQuest() { foreach (WoWItem item in Bag.GetBagItem()) { ItemInfo info = item.GetItemInfo; int itemId = GetId(info.ItemLink); if (itemId == 43297) { List<int> bagAndSlot = Bag.GetItemContainerBagIdAndSlot(info.ItemName); Lua.LuaDoString("UseContainerItem(" + bagAndSlot[0] + "," + bagAndSlot[1] + ")"); Lua.LuaDoString("AcceptQuest()"); return true; } } return false; } private bool HaveItemId(int Id) { foreach (WoWItem item in Bag.GetBagItem()) { ItemInfo info = item.GetItemInfo; int itemId = GetId(info.ItemLink); if (itemId == Id) { return true; } } return false; } private int GetId(String itemLink) { String pattern = "Hitem:"; int index = itemLink.IndexOf(pattern); return Int32.Parse(itemLink.Substring(index + 6).Split(':')[0]); } public void Settings(){} public void Dispose() { Logging.Write("JCToken: Stopped."); } }  
  5. Like
    Talamin reacted to MrCeeJ in [Free] Basic Plugin for handing in Damaged Necklaces for Jewelcrafter tokens (WOTLK) [Source Included]   
    So after grinding for a while in northrend you will probably have hundreds of these, if you actually want to turn them in yourself it can take a long time, so I wrote a little plugin to do it for you. You need the Damaged Necklaces and Gems in your inventory, and need to be near the Grand Master trainer in Dalaran in order to spam turn them in. To use the plugin just save it in your plugins folder, turn on WRotation and hit go. Some plugins can interfere with it (when they pause the bot) but it should be ok, you can always turn them off while running it.
     
    Finally here is the source code, feel free to give me suggestions to make it better, I just hacked away using the API until it worked, so I am sure there are better ways of doing things, so happy to take suggestions and improve it (which is really why I'm posting it here).
     
    The source is also attached for easy downloading.
     
    Have fun 🙂
     
    using System; using robotManager.Helpful; using wManager.Wow.Helpers; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.IO; using System.Linq; using System.Reflection; using System.Threading; using robotManager.FiniteStateMachine; using robotManager.Products; using Timer = robotManager.Helpful.Timer; using wManager.Plugin; using wManager.Wow.Bot.States; using wManager.Wow.Enums; using wManager.Wow.ObjectManager; using wManager.Wow.Class; public class Main : wManager.Plugin.IPlugin { public void Initialize() { Logging.Write("JCTokenTurnIn: Started."); MakeAllTokens(); } private void MakeAllTokens(){ bool crafting = true; int count = 0; while(crafting) { if (HaveRepairedItem()) { TurnIn(); count++; } else if (HaveQuest()){ RepairItem(); } else if (HaveItems()) { AcceptQuest(); } else { crafting = false; } } Logging.Write("JCTokenTurnIn: Finished, tokens made: "+count); } private bool HaveRepairedItem() { return HaveItemId(43298); } private void TurnIn() { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(wManager.Wow.ObjectManager.ObjectManager.Me.Position, 28701); System.Threading.Thread.Sleep(128); Quest.SelectGossipActiveQuest(1); System.Threading.Thread.Sleep(128); Quest.CompleteQuest(); System.Threading.Thread.Sleep(256); } private bool HaveQuest() { return HaveItemId(43299); } private void RepairItem() { foreach (WoWItem item in Bag.GetBagItem()) { ItemInfo info = item.GetItemInfo; int ItemId = getId(info.ItemLink); if (ItemId == 43299) { List<int> bagAndSlot = Bag.GetItemContainerBagIdAndSlot(info.ItemName); Lua.LuaDoString("UseContainerItem(" + bagAndSlot[0] + "," + bagAndSlot[1] + ")"); System.Threading.Thread.Sleep(12500); return; } } } private bool HaveItems() { return HaveItemId(43297) && HaveItemId(36923); } private void AcceptQuest() { foreach (WoWItem item in Bag.GetBagItem()) { ItemInfo info = item.GetItemInfo; int ItemId = getId(info.ItemLink); if (ItemId == 43297) { List<int> bagAndSlot = Bag.GetItemContainerBagIdAndSlot(info.ItemName); Lua.LuaDoString("UseContainerItem(" + bagAndSlot[0] + "," + bagAndSlot[1] + ")"); Lua.LuaDoString("AcceptQuest()"); } } } private bool HaveItemId(int Id) { foreach (WoWItem item in Bag.GetBagItem()) { ItemInfo info = item.GetItemInfo; int ItemId = getId(info.ItemLink); if (ItemId == Id) { return true; } } return false; } private int getId(String itemLink){ String pattern = "Hitem:"; int index = itemLink.IndexOf(pattern); return Int32.Parse(itemLink.Substring(index+6).Split(':')[0]); } public void Settings() {} public void Dispose() { Logging.Write("JCTokenTurnIn: Stopped."); } }  
    JCTokenTurnIn.cs
  6. Like
    Talamin reacted to Zalacar in [RELEASE] Force Mail / DoNotSell List + Harvesting Herbs   
    Hey guys as i had the problem with the things mentioned in the Title and did them after that i decided to release them now 😉
     
    Do Not Sell:
    <string>Hearthstone</string> <string>Pickaxe</string> <string>Linen Cloth</string> <string>Wool Cloth</string> <string>Spider's Silk</string> <string>Silk Cloth</string> <string>Bolt of Silk Cloth</string> <string>Bolt of Embersilk Cloth</string> <string>Thick Spider's Silk</string> <string>Mageweave Cloth</string> <string>Shadow Silk</string> <string>Felcloth</string> <string>Ironweb Spider Silk</string> <string>Runecloth</string> <string>Mooncloth</string> <string>Netherweave Cloth</string> <string>Netherweb Spider Silk</string> <string>Primal Mooncloth</string> <string>Frostweave Cloth</string> <string>Shadowcloth</string> <string>Spellcloth</string> <string>Iceweb Spider Silk</string> <string>Ebonweave</string> <string>Moonshroud</string> <string>Spellweave</string> <string>Embersilk Cloth</string> <string>Dreamcloth</string> <string>Windwool Cloth</string> <string>Bolt of Windwool Cloth</string> <string>Imperial Silk</string> <string>Elemental Air</string> <string>Elemental Earth</string> <string>Elemental Fire</string> <string>Elemental Water</string> <string>Breath of Wind</string> <string>Core of Earth</string> <string>Globe of Water</string> <string>Heart of Fire</string> <string>Heart of the Wild</string> <string>Ichor of Undeath</string> <string>Essence of Air</string> <string>Essence of Earth</string> <string>Essence of Fire</string> <string>Essence of Undeath</string> <string>Essence of Water</string> <string>Essence of Hatred</string> <string>Living Essence</string> <string>Mote of Air</string> <string>Mote of Earth</string> <string>Mote of Fire</string> <string>Mote of Life</string> <string>Mote of Mana</string> <string>Mote of Shadow</string> <string>Mote of Water</string> <string>Mote of Harmony</string> <string>Primal Air</string> <string>Primal Earth</string> <string>Primal Fire</string> <string>Primal Life</string> <string>Primal Mana</string> <string>Primal Shadow</string> <string>Primal Water</string> <string>Crystallized Air</string> <string>Crystallized Earth</string> <string>Crystallized Fire</string> <string>Crystallized Life</string> <string>Crystallized Shadow</string> <string>Crystallized Water</string> <string>Eternal Air</string> <string>Eternal Earth</string> <string>Eternal Fire</string> <string>Eternal Life</string> <string>Eternal Might</string> <string>Eternal Shadow</string> <string>Eternal Water</string> <string>Primal Might</string> <string>Chaos Orb</string> <string>Volatile Air</string> <string>Volatile Earth</string> <string>Volatile Fire</string> <string>Volatile Life</string> <string>Volatile Water</string> <string>Spirit of Autumn</string> <string>Spirit of Harmony</string> <string>Spirit of the Season</string> <string>Spirit of Spring</string> <string>Spirit of Summer</string> <string>Spirit of Winter</string> <string>Splinter of Hate</string> <string>Sorcerous Air </string> <string>Sorcerous Earth </string> <string>Sorcerous Fire </string> <string>Sorcerous Water</string> <string>Blood Shard</string> <string>Malachite</string> <string>Tigerseye</string> <string>Shadowgem</string> <string>Moss Agate</string> <string>Lesser Moonstone</string> <string>Jade</string> <string>Citrine</string> <string>Aquamarine</string> <string>Black Diamond</string> <string>Blood of the Mountain</string> <string>Souldarite</string> <string>Star Ruby</string> <string>Blue Sapphire</string> <string>Large Opal</string> <string>Arcane Crystal</string> <string>Azerothian Diamond</string> <string>Huge Emerald</string> <string>Azure Moonstone</string> <string>Blood Garnet</string> <string>Deep Peridot</string> <string>Flame Spessarite</string> <string>Golden Draenite</string> <string>Shadow Draenite</string> <string>Dawnstone</string> <string>Living Ruby</string> <string>Netherwing Egg</string> <string>Nightseye</string> <string>Noble Topaz</string> <string>Star of Elune</string> <string>Talasite</string> <string>Bloodstone</string> <string>Chalcedony</string> <string>Dark Jade</string> <string>Huge Citrine</string> <string>Shadow Crystal</string> <string>Sun Crystal</string> <string>Autumn's Glow</string> <string>Forest Emerald</string> <string>Monarch Topaz</string> <string>Scarlet Ruby</string> <string>Sky Sapphire</string> <string>Twilight Opal</string> <string>Ametrine</string> <string>Cardinal Ruby</string> <string>Dreadstone</string> <string>Eye of Zul</string> <string>King's Amber</string> <string>Majestic Zircon</string> <string>Alicite</string> <string>Carnelian</string> <string>Hessonite</string> <string>Jasper</string> <string>Nightstone</string> <string>Zephyrite</string> <string>Amberjewel</string> <string>Demonseye</string> <string>Dream Emerald</string> <string>Ember Topaz</string> <string>Inferno Ruby</string> <string>Ocean Sapphire</string> <string>Chimera's Eye</string> <string>Primordial Ruby</string> <string>River's Heart</string> <string>Wild Jade</string> <string>Vermilion Onyx</string> <string>Imperial Amethyst</string> <string>Tiger Opal</string> <string>Lapis Lazuli</string> <string>Sunstone</string> <string>Roguestone</string> <string>Alexandrite</string> <string>Pandarian Garnet</string> <string>Stamina Taladite</string> <string>Greater Stamina Taladite</string> <string>Multistrike Taladite</string> <string>Greater Multistrike Taladite</string> <string>Critical Strike Taladite</string> <string>Greater Critical Strike Taladite</string> <string>Mastery Taladite</string> <string>Greater Mastery Taladite</string> <string>Versatility Taladite</string> <string>Greater Versatility Taladite</string> <string>Haste Taladite</string> <string>Greater Haste Taladite</string> <string>Bloodthistle</string> <string>Bloodthistle Petal</string> <string>Peacebloom</string> <string>Silverleaf</string> <string>Earthroot</string> <string>Earthroot Stem</string> <string>Mageroyal</string> <string>Mageroyal Petal</string> <string>Briarthorn</string> <string>Briarthorn Bramble</string> <string>Swiftthistle</string> <string>Swiftthistle Leaf</string> <string>Bruiseweed</string> <string>Bruiseweed Stem</string> <string>Stranglekelp</string> <string>Stranglekelp Blade</string> <string>Grave Moss</string> <string>Grave Moss Leaf</string> <string>Wild Steelbloom</string> <string>Wild Steelbloom Petal</string> <string>Kingsblood</string> <string>Kingsblood Petal</string> <string>Liferoot</string> <string>Liferoot Stem</string> <string>Fadeleaf</string> <string>Fadeleaf Petal</string> <string>Goldthorn</string> <string>Goldthorn Bramble</string> <string>Khadgar's Whisker</string> <string>Khadgar's Whisker Stem</string> <string>Wintersbite</string> <string>Wildvine</string> <string>Firebloom</string> <string>Firebloom Petal</string> <string>Purple Lotus</string> <string>Purple Lotus Petal</string> <string>Arthas' Tears</string> <string>Arthas' Tears Petal</string> <string>Sungrass</string> <string>Sungrass Stalk</string> <string>Blindweed</string> <string>Blindweed Stem</string> <string>Ghost Mushroom</string> <string>Ghost Mushroom Cap</string> <string>Gromsblood</string> <string>Gromsblood Leaf</string> <string>Golden Sansam</string> <string>Golden Sansam Leaf</string> <string>Dreamfoil</string> <string>Dreamfoil Blade</string> <string>Flame Cap</string> <string>Mountain Silversage</string> <string>Mountain Silversage Stalk</string> <string>Plaguebloom</string> <string>Icecap</string> <string>Icecap Petal</string> <string>Black Lotus</string> <string>Dreaming Glory</string> <string>Dreaming Glory Petal</string> <string>Felweed</string> <string>Felweed Stalk</string> <string>Nightmare Seed</string> <string>Ragveil</string> <string>Ragveil Cap</string> <string>Terocone</string> <string>Terocone Leaf</string> <string>Ancient Lichen</string> <string>Ancient Lichen Petal</string> <string>Fel Lotus</string> <string>Mana Thistle</string> <string>Mana Thistle Leaf</string> <string>Netherbloom</string> <string>Netherbloom Leaf</string> <string>Nightmare Vine</string> <string>Nightmare Vine Stem</string> <string>Deadnettle</string> <string>Deadnettle Bramble</string> <string>Goldclover</string> <string>Goldclover Leaf</string> <string>Talandra's Rose</string> <string>Talandra's Rose Petal</string> <string>Tiger Lily</string> <string>Tiger Lily Petal</string> <string>Adder's Tongue</string> <string>Adder's Tongue Stem</string> <string>Fire Leaf</string> <string>Fire Leaf Bramble</string> <string>Stormvine</string> <string>Stormvine Stalk</string> <string>Lichbloom</string> <string>Lichbloom Stalk</string> <string>Cinderbloom</string> <string>Cinderbloom Petal</string> <string>Azshara's Veil</string> <string>Azshara's Veil Stem</string> <string>Icethorn</string> <string>Icethorn Bramble</string> <string>Frost Lotus</string> <string>Heartblossom</string> <string>Heartblossom Petal</string> <string>Whiptail</string> <string>Whiptail Stem</string> <string>Twilight Jasmine</string> <string>Twilight Jasmine Petal</string> <string>Green Tea Leaf</string> <string>Torn Green Tea Leaf</string> <string>Rain Poppy</string> <string>Rain Poppy Petal</string> <string>Silkweed</string> <string>Silkweed Stem</string> <string>Golden Lotus</string> <string>Snow Lily</string> <string>Snow Lily Petal</string> <string>Fool's Cap</string> <string>Fool's Cap Spores</string> <string>Desecrated Herb</string> <string>Desecrated Herb Pod</string> <string>Frostweed</string> <string>Broken Frostweed Stem</string> <string>Fireweed </string> <string>Broken Fireweed Stem</string> <string>Gorgrond Flytrap</string> <string>Gorgrond Flytrap Ichor</string> <string>Starflower</string> <string>Starflower Petal</string> <string>Nagrand Arrowbloom</string> <string>Nagrand Arrowbloom Petal</string> <string>Talador Orchid</string> <string>Talador Orchid Petal</string> <string>Chameleon Lotus</string> <string>Draenic Seeds</string> <string>Ruined Leather Scraps</string> <string>Light Hide</string> <string>Light Leather</string> <string>Medium Hide</string> <string>Medium Leather</string> <string>Heavy Hide</string> <string>Heavy Leather</string> <string>Deeprock Salt</string> <string>Thick Hide</string> <string>Thick Leather</string> <string>Rugged Hide</string> <string>Rugged Leather</string> <string>Enchanted Leather</string> <string>Crystal Infused Leather</string> <string>Patch of Crystal Infused Leather</string> <string>Knothide Leather</string> <string>Knothide Leather Scraps</string> <string>Thick Clefthoof Leather</string> <string>Patch of Thick Clefthoof Leather</string> <string>Heavy Knothide Leather</string> <string>Borean Leather</string> <string>Borean Leather Scraps</string> <string>Arctic Fur</string> <string>Heavy Borean Leather</string> <string>Savage Leather</string> <string>Savage Leather Scraps</string> <string>Heavy Savage Leather</string> <string>Pristine Hide</string> <string>Heavy Exotic Leather</string> <string>Sha-Touched Leather</string> <string>Exotic Leather</string> <string>Magnificent Hide</string> <string>Hardened Magnificent Hide</string> <string>Raw Beast Hide</string> <string>Raw Beast Hide</string> <string>Raw Beast Hide Scraps</string> <string>Raw Beast Hide Scraps</string> <string>Burnished Leather</string> <string>Sumptuous Fur</string> <string>Black Whelp Scale</string> <string>Deviate Scale</string> <string>Green Whelp Scale</string> <string>Perfect Deviate Scale</string> <string>Thin Kodo Leather</string> <string>Slimy Murloc Scale</string> <string>Raptor Hide</string> <string>Thick Murloc Scale</string> <string>Turtle Scale</string> <string>Scorpid Scale</string> <string>Worn Dragonscale</string> <string>Blue Dragonscale</string> <string>Devilsaur Leather</string> <string>Green Dragonscale</string> <string>Warbear Leather</string> <string>Black Dragonscale</string> <string>Heavy Scorpid Scale</string> <string>Heavy Silithid Carapace</string> <string>Light Silithid Carapace</string> <string>Silithid Chitin</string> <string>Refined Scale of Onyxia</string> <string>Scale of Onyxia</string> <string>Cobra Scales</string> <string>Core Leather</string> <string>Fel Scales</string> <string>Nether Dragonscales</string> <string>Primal Bat Leather</string> <string>Primal Tiger Leather</string> <string>Red Dragonscale</string> <string>Wind Scales</string> <string>Dreamscale</string> <string>Fel Hide</string> <string>Nerubian Chitin</string> <string>Icy Dragonscale</string> <string>Jormungar Scale</string> <string>Blackened Dragonscale</string> <string>Deepsea Scale</string> <string>Prismatic Scale</string> <string>Draenic Dust</string> <string>Temporal Crystal</string> <string>Fractured Temporal Crystal</string> <string>Felblight </string> <string>Copper Ore</string> <string>Tin Ore</string> <string>Tin Ore Nugget</string> <string>Silver Ore</string> <string>Silver Ore Nugget</string> <string>Iron Ore</string> <string>Iron Ore Nugget</string> <string>Gold Ore</string> <string>Gold Ore Nugget</string> <string>Mithril Ore</string> <string>Mithril Ore Nugget</string> <string>Truesilver Ore</string> <string>Truesilver Ore Nugget</string> <string>Thorium Ore</string> <string>Thorium Ore Nugget</string> <string>Dark Iron Ore</string> <string>Elementium Ingot</string> <string>Fel Iron Ore</string> <string>Fel Iron Ore Nugget</string> <string>Adamantite Ore</string> <string>Adamantite Ore Nugget</string> <string>Eternium Ore</string> <string>Eternium Ore Nugget</string> <string>Cobalt Ore</string> <string>Cobalt Ore Nugget</string> <string>Khorium Ore</string> <string>Khorium Ore Nugget</string> <string>Saronite Ore</string> <string>Saronite Ore Nugget</string> <string>Titanium Ore</string> <string>Titanium Ore Nugget</string> <string>Obsidium Ore</string> <string>Obsidium Ore Nugget</string> <string>Elementium Ore</string> <string>Elementium Ore Nugget</string> <string>Pyrite Ore</string> <string>Pyrite Ore Nugget</string> <string>Ghost Iron Ore</string> <string>Ghost Iron Nugget</string> <string>Black Trillium Ore</string> <string>White Trillium Ore</string> <string>Kyparite</string> <string>Kyparite Fragment</string> <string>True Iron Ore</string> <string>True Iron Nugget</string> <string>Blackrock Ore</string> <string>Blackrock Fragment</string> <string>Copper Bar</string> <string>Tin Bar</string> <string>Bronze Bar</string> <string>Silver Bar</string> <string>Iron Bar</string> <string>Gold Bar</string> <string>Steel Bar</string> <string>Mithril Bar</string> <string>Truesilver Bar</string> <string>Thorium Bar</string> <string>Dark Iron Bar</string> <string>Enchanted Thorium Bar</string> <string>Fel Iron Bar</string> <string>Enchanted Elementium Bar</string> <string>Adamantite Bar</string> <string>Felsteel Bar</string> <string>Cobalt Bar</string> <string>Khorium Bar</string> <string>Hardened Khorium Bar</string> <string>Hardened Adamantite Bar</string> <string>Saronite Bar</string> <string>Obsidium Bar</string> <string>Titanium Bar</string> <string>Titansteel Bar</string> <string>Elementium Bar</string> <string>Hardened Elementium Bar</string> <string>Pyrium Bar</string> <string>Trillium Bar</string> <string>Ghost Iron Bar</string> <string>Heavy Ghost Iron Bar</string> <string>Incendite Ore</string> <string>Lesser Bloodstone Ore</string> <string>Nethercite Ore</string> <string>Rathban Ore</string> <string>Rough Stone</string> <string>Coarse Stone</string> <string>Heavy Stone</string> <string>Solid Stone</string> <string>Dense Stone</string> <string>Miniaturization Residue</string> <string>Water Elemental Core</string> <string>Nesingwary Lackey Ear</string> <string>Uncatalogued Species</string> <string>Unidentified Plant Parts</string> <string>Wastewander Water Pouch</string> <string>Arakkoa Feather</string> <string>Obsidian Warbeads</string> <string>Fel Gland</string> <string>Netherwing Crystal</string> <string>Netherwing Egg</string> <string>Netherwing Relic</string> <string>Nethermine Cargo</string> <string>Nethermine Flayer Hide</string> <string>Nethercite Ore</string> <string>Netherdust Pollen</string> <string>Energized Polished Crystal</string> <string>Shiny Treasures</string> <string>Onyx Egg</string> <string>Heavy Junkbox</string> <string>Syndicate Emblem</string> <string>Everfrost Chip</string> <string>Everfrost Chip</string> <string>Frozen Iron Scrap</string> <string>Relic of Ulduar</string> <string>Viscous Oil</string> <string>Bog Lord Tendril</string> <string>Fertile Spores</string> <string>Glowcap</string> <string>Mature Spore Sac</string> <string>Sanguine Hibiscus</string> <string>Dreadfang Venom Sac</string> <string>Fel Armament</string> <string>Mark of Kil'jaeden</string> <string>Mark of Sargeras</string> <string>Ethereum Prison Key</string> <string>Ethereum Prisoner I.D. Tag</string> <string>Oshu'gun Crystal Fragment</string> <string>Pair of Ivory Tusks</string> <string>Zaxxis Insignia</string> <string>Arcane Tome</string> <string>Dampscale Basilisk Eye</string> <string>Firewing Signet</string> <string>Sunfury Signet</string> <string>Blood of the Mountain</string> <string>Core Leather</string> <string>Dark Iron Ore</string> <string>Fiery Core</string> <string>Incendosaur Scale</string> <string>Lava Core</string> <string>Deadwood Headdress Feather</string> <string>Winterfall Spirit Beads</string> <string>Arcanum of Focus</string> <string>Arcanum of Protection</string> <string>Arcanum of Rapidity</string> <string>Bloodscalp Coin</string> <string>Gurubashi Coin</string> <string>Hakkari Coin</string> <string>Primal Hakkari Idol</string> <string>Razzashi Coin</string> <string>Sandfury Coin</string> <string>Skullsplitter Coin</string> <string>Vilebranch Coin</string> <string>Witherbark Coin</string> <string>Zandalar Honor Token</string> <string>Zulian Coin</string> <string>Shardtooth Meat</string> <string>Chillwind Meat</string> <string>Azure Whelpling</string> <string>Captured Firefly</string> <string>Cat Carrier (Black Tabby)</string> <string>Cat Carrier (Siamese)</string> <string>Cat Carrier (White Kitten)</string> <string>Cracked Egg</string> <string>Dark Whelpling</string> <string>Darting Hatchling</string> <string>Deviate Hatchling</string> <string>Disgusting Oozeling</string> <string>Leaping Hatchling</string> <string>Mysterious Egg</string> <string>Parrot Cage (Green Wing Macaw)</string> <string>Parrot Cage (Hyacinth Macaw)</string> <string>Ravasaur Hatchling</string> <string>Razormaw Hatchling</string> <string>Razzashi Hatchling</string> <string>Tiny Crimson Whelpling</string> <string>Thundering Serpent Hatchling</string> <string>Fox Kit</string> <string>Fox Kit</string> <string>Mechanical Pandaren Dragonling</string> <string>Jade Crane Chick</string> <string>Terrible Turnip</string> <string>Red Cricket</string> <string>Tiny Goldfish</string> <string>Feral Vermling</string> <string>Lucky Quilen Cub</string> <string>Porcupette</string> <string>Jade Tentacle</string> <string>Venus</string> <string>Pandaren Water Spirit</string> <string>Baneling</string> <string>Darkmoon Rabbit</string> <string>Sapphire Cub</string> <string>Fishy</string> <string>Yu'lon Kite</string> <string>Chi-ji Kite</string> <string>Jade Owl</string> <string>Hopling</string> <string>Hollow Reed</string> <string>Imbued Jade Fragment</string> <string>Singing Cricket Cage</string> <string>Spectral Tiger Cub</string> <string>Abyssal Gulper Eel Flesh</string> <string>Albino Cavefish</string> <string>Algaefin Rockfish</string> <string>Ashen Pigment</string> <string>Barbed Gill Trout</string> <string>Barrelhead Goby</string> <string>Blackbelly Mudfish</string> <string>Blackwater Whiptail Flesh</string> <string>Blind Lake Sturgeon Flesh</string> <string>Bloodfin Catfish</string> <string>Bonescale Snapper</string> <string>Borean Man O' War</string> <string>Crescent Saberfish Flesh</string> <string>Crescent-Tail Skullfish</string> <string>Crocolisk Meat</string> <string>Darkclaw Lobster</string> <string>Deep Sea Monsterbelly</string> <string>Deepsea Sagefish</string> <string>Deviate Fish</string> <string>Dragonfin Angelfish</string> <string>Emperor Salmon</string> <string>Enormous Barbed Gill Trout</string> <string>Fangtooth Herring</string> <string>Fat Sleeper Flesh</string> <string>Fathom Eel</string> <string>Figluster's Mudfish</string> <string>Fire Ammonite Tentacle</string> <string>Firefin Snapper</string> <string>Furious Crawdad</string> <string>Giant Mantis Shrimp</string> <string>Glacial Salmon</string> <string>Glassfin Minnow</string> <string>Golden Carp</string> <string>Golden Darter</string> <string>Highland Guppy</string> <string>Huge Spotted Feltail</string> <string>Icefin Bluefish</string> <string>Imperial Manta Ray</string> <string>Jade Lungfish</string> <string>Jawless Skulker Flesh</string> <string>Jewel Danio</string> <string>Krasarang Paddlefish</string> <string>Large Raw Mightfish</string> <string>Lavascale Catfish</string> <string>Lightning Eel</string> <string>Moonglow Cuttlefish</string> <string>Moongraze Stag Tenderloin</string> <string>Mountain Trout</string> <string>Murglesnout</string> <string>Musselback Sculpin</string> <string>Nettlefish</string> <string>Oily Blackmouth</string> <string>Pygmy Suckerfish</string> <string>Raw Brilliant Smallfish</string> <string>Raw Bristle Whisker Catfish</string> <string>Raw Glossy Mightfish</string> <string>Raw Greater Sagefish</string> <string>Raw Loch Frenzy</string> <string>Raw Longjaw Mud Snapper</string> <string>Raw Mithril Head Trout</string> <string>Raw Nightfin Snapper</string> <string>Raw Rainbow Fin Albacore</string> <string>Raw Redgill</string> <string>Raw Rockscale Cod</string> <string>Raw Sagefish</string> <string>Raw Slitherskin Mackerel</string> <string>Raw Spotted Yellowtail</string> <string>Raw Summer Bass</string> <string>Raw Sunscale Salmon</string> <string>Raw Whitescale Salmon</string> <string>Redbelly Mandarin</string> <string>Reef Octopus</string> <string>Rockfin Grouper</string> <string>Sea Scorpion Segment</string> <string>Sharptooth</string> <string>Spinefish</string> <string>Spotted Feltail</string> <string>Stonescale Eel</string> <string>Striped Lurker</string> <string>Tiger Gourami</string> <string>Winter Squid</string> <string>Zangarian Sporefish</string> <string>Ornate Bronze Lockbox</string> <string>Heavy Bronze Lockbox</string> <string>Iron Lockbox</string> <string>Strong Iron Lockbox</string> <string>Steel Lockbox</string> <string>Reinforced Steel Lockbox</string> <string>Mithril Lockbox</string> <string>Thorium Lockbox</string> <string>Eternium Lockbox</string> <string>Khorium Lockbox</string> <string>Froststeel Lockbox</string> <string>Titanium Lockbox</string> <string>Tiny Titanium Lockbox</string> <string>Elementium Lockbox</string> <string>Ghost Iron Lockbox</string> <string>True Steel Lockbox</string> <string>Mysterious Shining Lockbox</string> <string>Highmaul Lockbox</string> ForceMail:
     
    <string>Linen Cloth</string> <string>Wool Cloth</string> <string>Spider's Silk</string> <string>Silk Cloth</string> <string>Bolt of Silk Cloth</string> <string>Bolt of Embersilk Cloth</string> <string>Thick Spider's Silk</string> <string>Mageweave Cloth</string> <string>Shadow Silk</string> <string>Felcloth</string> <string>Ironweb Spider Silk</string> <string>Runecloth</string> <string>Mooncloth</string> <string>Netherweave Cloth</string> <string>Netherweb Spider Silk</string> <string>Primal Mooncloth</string> <string>Frostweave Cloth</string> <string>Shadowcloth</string> <string>Spellcloth</string> <string>Iceweb Spider Silk</string> <string>Ebonweave</string> <string>Moonshroud</string> <string>Spellweave</string> <string>Embersilk Cloth</string> <string>Dreamcloth</string> <string>Windwool Cloth</string> <string>Bolt of Windwool Cloth</string> <string>Imperial Silk</string> <string>Elemental Air</string> <string>Elemental Earth</string> <string>Elemental Fire</string> <string>Elemental Water</string> <string>Breath of Wind</string> <string>Core of Earth</string> <string>Globe of Water</string> <string>Heart of Fire</string> <string>Heart of the Wild</string> <string>Ichor of Undeath</string> <string>Essence of Air</string> <string>Essence of Earth</string> <string>Essence of Fire</string> <string>Essence of Undeath</string> <string>Essence of Water</string> <string>Essence of Hatred</string> <string>Living Essence</string> <string>Mote of Air</string> <string>Mote of Earth</string> <string>Mote of Fire</string> <string>Mote of Life</string> <string>Mote of Mana</string> <string>Mote of Shadow</string> <string>Mote of Water</string> <string>Mote of Harmony</string> <string>Primal Air</string> <string>Primal Earth</string> <string>Primal Fire</string> <string>Primal Life</string> <string>Primal Mana</string> <string>Primal Shadow</string> <string>Primal Water</string> <string>Crystallized Air</string> <string>Crystallized Earth</string> <string>Crystallized Fire</string> <string>Crystallized Life</string> <string>Crystallized Shadow</string> <string>Crystallized Water</string> <string>Eternal Air</string> <string>Eternal Earth</string> <string>Eternal Fire</string> <string>Eternal Life</string> <string>Eternal Might</string> <string>Eternal Shadow</string> <string>Eternal Water</string> <string>Primal Might</string> <string>Chaos Orb</string> <string>Volatile Air</string> <string>Volatile Earth</string> <string>Volatile Fire</string> <string>Volatile Life</string> <string>Volatile Water</string> <string>Spirit of Autumn</string> <string>Spirit of Harmony</string> <string>Spirit of the Season</string> <string>Spirit of Spring</string> <string>Spirit of Summer</string> <string>Spirit of Winter</string> <string>Splinter of Hate</string> <string>Sorcerous Air </string> <string>Sorcerous Earth </string> <string>Sorcerous Fire </string> <string>Sorcerous Water</string> <string>Blood Shard</string> <string>Malachite</string> <string>Tigerseye</string> <string>Shadowgem</string> <string>Moss Agate</string> <string>Lesser Moonstone</string> <string>Jade</string> <string>Citrine</string> <string>Aquamarine</string> <string>Black Diamond</string> <string>Blood of the Mountain</string> <string>Souldarite</string> <string>Star Ruby</string> <string>Blue Sapphire</string> <string>Large Opal</string> <string>Arcane Crystal</string> <string>Azerothian Diamond</string> <string>Huge Emerald</string> <string>Azure Moonstone</string> <string>Blood Garnet</string> <string>Deep Peridot</string> <string>Flame Spessarite</string> <string>Golden Draenite</string> <string>Shadow Draenite</string> <string>Dawnstone</string> <string>Living Ruby</string> <string>Netherwing Egg</string> <string>Nightseye</string> <string>Noble Topaz</string> <string>Star of Elune</string> <string>Talasite</string> <string>Bloodstone</string> <string>Chalcedony</string> <string>Dark Jade</string> <string>Huge Citrine</string> <string>Shadow Crystal</string> <string>Sun Crystal</string> <string>Autumn's Glow</string> <string>Forest Emerald</string> <string>Monarch Topaz</string> <string>Scarlet Ruby</string> <string>Sky Sapphire</string> <string>Twilight Opal</string> <string>Ametrine</string> <string>Cardinal Ruby</string> <string>Dreadstone</string> <string>Eye of Zul</string> <string>King's Amber</string> <string>Majestic Zircon</string> <string>Alicite</string> <string>Carnelian</string> <string>Hessonite</string> <string>Jasper</string> <string>Nightstone</string> <string>Zephyrite</string> <string>Amberjewel</string> <string>Demonseye</string> <string>Dream Emerald</string> <string>Ember Topaz</string> <string>Inferno Ruby</string> <string>Ocean Sapphire</string> <string>Chimera's Eye</string> <string>Primordial Ruby</string> <string>River's Heart</string> <string>Wild Jade</string> <string>Vermilion Onyx</string> <string>Imperial Amethyst</string> <string>Tiger Opal</string> <string>Lapis Lazuli</string> <string>Sunstone</string> <string>Roguestone</string> <string>Alexandrite</string> <string>Pandarian Garnet</string> <string>Stamina Taladite</string> <string>Greater Stamina Taladite</string> <string>Multistrike Taladite</string> <string>Greater Multistrike Taladite</string> <string>Critical Strike Taladite</string> <string>Greater Critical Strike Taladite</string> <string>Mastery Taladite</string> <string>Greater Mastery Taladite</string> <string>Versatility Taladite</string> <string>Greater Versatility Taladite</string> <string>Haste Taladite</string> <string>Greater Haste Taladite</string> <string>Bloodthistle</string> <string>Bloodthistle Petal</string> <string>Peacebloom</string> <string>Silverleaf</string> <string>Earthroot</string> <string>Earthroot Stem</string> <string>Mageroyal</string> <string>Mageroyal Petal</string> <string>Briarthorn</string> <string>Briarthorn Bramble</string> <string>Swiftthistle</string> <string>Swiftthistle Leaf</string> <string>Bruiseweed</string> <string>Bruiseweed Stem</string> <string>Stranglekelp</string> <string>Stranglekelp Blade</string> <string>Grave Moss</string> <string>Grave Moss Leaf</string> <string>Wild Steelbloom</string> <string>Wild Steelbloom Petal</string> <string>Kingsblood</string> <string>Kingsblood Petal</string> <string>Liferoot</string> <string>Liferoot Stem</string> <string>Fadeleaf</string> <string>Fadeleaf Petal</string> <string>Goldthorn</string> <string>Goldthorn Bramble</string> <string>Khadgar's Whisker</string> <string>Khadgar's Whisker Stem</string> <string>Wintersbite</string> <string>Wildvine</string> <string>Firebloom</string> <string>Firebloom Petal</string> <string>Purple Lotus</string> <string>Purple Lotus Petal</string> <string>Arthas' Tears</string> <string>Arthas' Tears Petal</string> <string>Sungrass</string> <string>Sungrass Stalk</string> <string>Blindweed</string> <string>Blindweed Stem</string> <string>Ghost Mushroom</string> <string>Ghost Mushroom Cap</string> <string>Gromsblood</string> <string>Gromsblood Leaf</string> <string>Golden Sansam</string> <string>Golden Sansam Leaf</string> <string>Dreamfoil</string> <string>Dreamfoil Blade</string> <string>Flame Cap</string> <string>Mountain Silversage</string> <string>Mountain Silversage Stalk</string> <string>Plaguebloom</string> <string>Icecap</string> <string>Icecap Petal</string> <string>Black Lotus</string> <string>Dreaming Glory</string> <string>Dreaming Glory Petal</string> <string>Felweed</string> <string>Felweed Stalk</string> <string>Nightmare Seed</string> <string>Ragveil</string> <string>Ragveil Cap</string> <string>Terocone</string> <string>Terocone Leaf</string> <string>Ancient Lichen</string> <string>Ancient Lichen Petal</string> <string>Fel Lotus</string> <string>Mana Thistle</string> <string>Mana Thistle Leaf</string> <string>Netherbloom</string> <string>Netherbloom Leaf</string> <string>Nightmare Vine</string> <string>Nightmare Vine Stem</string> <string>Deadnettle</string> <string>Deadnettle Bramble</string> <string>Goldclover</string> <string>Goldclover Leaf</string> <string>Talandra's Rose</string> <string>Talandra's Rose Petal</string> <string>Tiger Lily</string> <string>Tiger Lily Petal</string> <string>Adder's Tongue</string> <string>Adder's Tongue Stem</string> <string>Fire Leaf</string> <string>Fire Leaf Bramble</string> <string>Stormvine</string> <string>Stormvine Stalk</string> <string>Lichbloom</string> <string>Lichbloom Stalk</string> <string>Cinderbloom</string> <string>Cinderbloom Petal</string> <string>Azshara's Veil</string> <string>Azshara's Veil Stem</string> <string>Icethorn</string> <string>Icethorn Bramble</string> <string>Frost Lotus</string> <string>Heartblossom</string> <string>Heartblossom Petal</string> <string>Whiptail</string> <string>Whiptail Stem</string> <string>Twilight Jasmine</string> <string>Twilight Jasmine Petal</string> <string>Green Tea Leaf</string> <string>Torn Green Tea Leaf</string> <string>Rain Poppy</string> <string>Rain Poppy Petal</string> <string>Silkweed</string> <string>Silkweed Stem</string> <string>Golden Lotus</string> <string>Snow Lily</string> <string>Snow Lily Petal</string> <string>Fool's Cap</string> <string>Fool's Cap Spores</string> <string>Desecrated Herb</string> <string>Desecrated Herb Pod</string> <string>Frostweed</string> <string>Broken Frostweed Stem</string> <string>Fireweed </string> <string>Broken Fireweed Stem</string> <string>Gorgrond Flytrap</string> <string>Gorgrond Flytrap Ichor</string> <string>Starflower</string> <string>Starflower Petal</string> <string>Nagrand Arrowbloom</string> <string>Nagrand Arrowbloom Petal</string> <string>Talador Orchid</string> <string>Talador Orchid Petal</string> <string>Chameleon Lotus</string> <string>Draenic Seeds</string> <string>Ruined Leather Scraps</string> <string>Light Hide</string> <string>Light Leather</string> <string>Medium Hide</string> <string>Medium Leather</string> <string>Heavy Hide</string> <string>Heavy Leather</string> <string>Deeprock Salt</string> <string>Thick Hide</string> <string>Thick Leather</string> <string>Rugged Hide</string> <string>Rugged Leather</string> <string>Enchanted Leather</string> <string>Crystal Infused Leather</string> <string>Patch of Crystal Infused Leather</string> <string>Knothide Leather</string> <string>Knothide Leather Scraps</string> <string>Thick Clefthoof Leather</string> <string>Patch of Thick Clefthoof Leather</string> <string>Heavy Knothide Leather</string> <string>Borean Leather</string> <string>Borean Leather Scraps</string> <string>Arctic Fur</string> <string>Heavy Borean Leather</string> <string>Savage Leather</string> <string>Savage Leather Scraps</string> <string>Heavy Savage Leather</string> <string>Pristine Hide</string> <string>Heavy Exotic Leather</string> <string>Sha-Touched Leather</string> <string>Exotic Leather</string> <string>Magnificent Hide</string> <string>Hardened Magnificent Hide</string> <string>Raw Beast Hide</string> <string>Raw Beast Hide</string> <string>Raw Beast Hide Scraps</string> <string>Raw Beast Hide Scraps</string> <string>Burnished Leather</string> <string>Sumptuous Fur</string> <string>Black Whelp Scale</string> <string>Deviate Scale</string> <string>Green Whelp Scale</string> <string>Perfect Deviate Scale</string> <string>Thin Kodo Leather</string> <string>Slimy Murloc Scale</string> <string>Raptor Hide</string> <string>Thick Murloc Scale</string> <string>Turtle Scale</string> <string>Scorpid Scale</string> <string>Worn Dragonscale</string> <string>Blue Dragonscale</string> <string>Devilsaur Leather</string> <string>Green Dragonscale</string> <string>Warbear Leather</string> <string>Black Dragonscale</string> <string>Heavy Scorpid Scale</string> <string>Heavy Silithid Carapace</string> <string>Light Silithid Carapace</string> <string>Silithid Chitin</string> <string>Refined Scale of Onyxia</string> <string>Scale of Onyxia</string> <string>Cobra Scales</string> <string>Core Leather</string> <string>Fel Scales</string> <string>Nether Dragonscales</string> <string>Primal Bat Leather</string> <string>Primal Tiger Leather</string> <string>Red Dragonscale</string> <string>Wind Scales</string> <string>Dreamscale</string> <string>Fel Hide</string> <string>Nerubian Chitin</string> <string>Icy Dragonscale</string> <string>Jormungar Scale</string> <string>Blackened Dragonscale</string> <string>Deepsea Scale</string> <string>Prismatic Scale</string> <string>Draenic Dust</string> <string>Temporal Crystal</string> <string>Fractured Temporal Crystal</string> <string>Felblight </string> <string>Copper Ore</string> <string>Tin Ore</string> <string>Tin Ore Nugget</string> <string>Silver Ore</string> <string>Silver Ore Nugget</string> <string>Iron Ore</string> <string>Iron Ore Nugget</string> <string>Gold Ore</string> <string>Gold Ore Nugget</string> <string>Mithril Ore</string> <string>Mithril Ore Nugget</string> <string>Truesilver Ore</string> <string>Truesilver Ore Nugget</string> <string>Thorium Ore</string> <string>Thorium Ore Nugget</string> <string>Dark Iron Ore</string> <string>Elementium Ingot</string> <string>Fel Iron Ore</string> <string>Fel Iron Ore Nugget</string> <string>Adamantite Ore</string> <string>Adamantite Ore Nugget</string> <string>Eternium Ore</string> <string>Eternium Ore Nugget</string> <string>Cobalt Ore</string> <string>Cobalt Ore Nugget</string> <string>Khorium Ore</string> <string>Khorium Ore Nugget</string> <string>Saronite Ore</string> <string>Saronite Ore Nugget</string> <string>Titanium Ore</string> <string>Titanium Ore Nugget</string> <string>Obsidium Ore</string> <string>Obsidium Ore Nugget</string> <string>Elementium Ore</string> <string>Elementium Ore Nugget</string> <string>Pyrite Ore</string> <string>Pyrite Ore Nugget</string> <string>Ghost Iron Ore</string> <string>Ghost Iron Nugget</string> <string>Black Trillium Ore</string> <string>White Trillium Ore</string> <string>Kyparite</string> <string>Kyparite Fragment</string> <string>True Iron Ore</string> <string>True Iron Nugget</string> <string>Blackrock Ore</string> <string>Blackrock Fragment</string> <string>Copper Bar</string> <string>Tin Bar</string> <string>Bronze Bar</string> <string>Silver Bar</string> <string>Iron Bar</string> <string>Gold Bar</string> <string>Steel Bar</string> <string>Mithril Bar</string> <string>Truesilver Bar</string> <string>Thorium Bar</string> <string>Dark Iron Bar</string> <string>Enchanted Thorium Bar</string> <string>Fel Iron Bar</string> <string>Enchanted Elementium Bar</string> <string>Adamantite Bar</string> <string>Felsteel Bar</string> <string>Cobalt Bar</string> <string>Khorium Bar</string> <string>Hardened Khorium Bar</string> <string>Hardened Adamantite Bar</string> <string>Saronite Bar</string> <string>Obsidium Bar</string> <string>Titanium Bar</string> <string>Titansteel Bar</string> <string>Elementium Bar</string> <string>Hardened Elementium Bar</string> <string>Pyrium Bar</string> <string>Trillium Bar</string> <string>Ghost Iron Bar</string> <string>Heavy Ghost Iron Bar</string> <string>Incendite Ore</string> <string>Lesser Bloodstone Ore</string> <string>Nethercite Ore</string> <string>Rathban Ore</string> <string>Rough Stone</string> <string>Coarse Stone</string> <string>Heavy Stone</string> <string>Solid Stone</string> <string>Dense Stone</string> <string>Miniaturization Residue</string> <string>Water Elemental Core</string> <string>Nesingwary Lackey Ear</string> <string>Uncatalogued Species</string> <string>Unidentified Plant Parts</string> <string>Wastewander Water Pouch</string> <string>Arakkoa Feather</string> <string>Obsidian Warbeads</string> <string>Fel Gland</string> <string>Netherwing Crystal</string> <string>Netherwing Egg</string> <string>Netherwing Relic</string> <string>Nethermine Cargo</string> <string>Nethermine Flayer Hide</string> <string>Nethercite Ore</string> <string>Netherdust Pollen</string> <string>Energized Polished Crystal</string> <string>Shiny Treasures</string> <string>Onyx Egg</string> <string>Heavy Junkbox</string> <string>Syndicate Emblem</string> <string>Everfrost Chip</string> <string>Everfrost Chip</string> <string>Frozen Iron Scrap</string> <string>Relic of Ulduar</string> <string>Viscous Oil</string> <string>Bog Lord Tendril</string> <string>Fertile Spores</string> <string>Glowcap</string> <string>Mature Spore Sac</string> <string>Sanguine Hibiscus</string> <string>Dreadfang Venom Sac</string> <string>Fel Armament</string> <string>Mark of Kil'jaeden</string> <string>Mark of Sargeras</string> <string>Ethereum Prison Key</string> <string>Ethereum Prisoner I.D. Tag</string> <string>Oshu'gun Crystal Fragment</string> <string>Pair of Ivory Tusks</string> <string>Zaxxis Insignia</string> <string>Arcane Tome</string> <string>Dampscale Basilisk Eye</string> <string>Firewing Signet</string> <string>Sunfury Signet</string> <string>Blood of the Mountain</string> <string>Core Leather</string> <string>Dark Iron Ore</string> <string>Fiery Core</string> <string>Incendosaur Scale</string> <string>Lava Core</string> <string>Deadwood Headdress Feather</string> <string>Winterfall Spirit Beads</string> <string>Arcanum of Focus</string> <string>Arcanum of Protection</string> <string>Arcanum of Rapidity</string> <string>Bloodscalp Coin</string> <string>Gurubashi Coin</string> <string>Hakkari Coin</string> <string>Primal Hakkari Idol</string> <string>Razzashi Coin</string> <string>Sandfury Coin</string> <string>Skullsplitter Coin</string> <string>Vilebranch Coin</string> <string>Witherbark Coin</string> <string>Zandalar Honor Token</string> <string>Zulian Coin</string> <string>Shardtooth Meat</string> <string>Chillwind Meat</string> <string>Azure Whelpling</string> <string>Captured Firefly</string> <string>Cat Carrier (Black Tabby)</string> <string>Cat Carrier (Siamese)</string> <string>Cat Carrier (White Kitten)</string> <string>Cracked Egg</string> <string>Dark Whelpling</string> <string>Darting Hatchling</string> <string>Deviate Hatchling</string> <string>Disgusting Oozeling</string> <string>Leaping Hatchling</string> <string>Mysterious Egg</string> <string>Parrot Cage (Green Wing Macaw)</string> <string>Parrot Cage (Hyacinth Macaw)</string> <string>Ravasaur Hatchling</string> <string>Razormaw Hatchling</string> <string>Razzashi Hatchling</string> <string>Tiny Crimson Whelpling</string> <string>Thundering Serpent Hatchling</string> <string>Fox Kit</string> <string>Fox Kit</string> <string>Mechanical Pandaren Dragonling</string> <string>Jade Crane Chick</string> <string>Terrible Turnip</string> <string>Red Cricket</string> <string>Tiny Goldfish</string> <string>Feral Vermling</string> <string>Lucky Quilen Cub</string> <string>Porcupette</string> <string>Jade Tentacle</string> <string>Venus</string> <string>Pandaren Water Spirit</string> <string>Baneling</string> <string>Darkmoon Rabbit</string> <string>Sapphire Cub</string> <string>Fishy</string> <string>Yu'lon Kite</string> <string>Chi-ji Kite</string> <string>Jade Owl</string> <string>Hopling</string> <string>Hollow Reed</string> <string>Imbued Jade Fragment</string> <string>Singing Cricket Cage</string> <string>Spectral Tiger Cub</string> <string>Abyssal Gulper Eel Flesh</string> <string>Albino Cavefish</string> <string>Algaefin Rockfish</string> <string>Ashen Pigment</string> <string>Barbed Gill Trout</string> <string>Barrelhead Goby</string> <string>Blackbelly Mudfish</string> <string>Blackwater Whiptail Flesh</string> <string>Blind Lake Sturgeon Flesh</string> <string>Bloodfin Catfish</string> <string>Bonescale Snapper</string> <string>Borean Man O' War</string> <string>Crescent Saberfish Flesh</string> <string>Crescent-Tail Skullfish</string> <string>Crocolisk Meat</string> <string>Darkclaw Lobster</string> <string>Deep Sea Monsterbelly</string> <string>Deepsea Sagefish</string> <string>Deviate Fish</string> <string>Dragonfin Angelfish</string> <string>Emperor Salmon</string> <string>Enormous Barbed Gill Trout</string> <string>Fangtooth Herring</string> <string>Fat Sleeper Flesh</string> <string>Fathom Eel</string> <string>Figluster's Mudfish</string> <string>Fire Ammonite Tentacle</string> <string>Firefin Snapper</string> <string>Furious Crawdad</string> <string>Giant Mantis Shrimp</string> <string>Glacial Salmon</string> <string>Glassfin Minnow</string> <string>Golden Carp</string> <string>Golden Darter</string> <string>Highland Guppy</string> <string>Huge Spotted Feltail</string> <string>Icefin Bluefish</string> <string>Imperial Manta Ray</string> <string>Jade Lungfish</string> <string>Jawless Skulker Flesh</string> <string>Jewel Danio</string> <string>Krasarang Paddlefish</string> <string>Large Raw Mightfish</string> <string>Lavascale Catfish</string> <string>Lightning Eel</string> <string>Moonglow Cuttlefish</string> <string>Moongraze Stag Tenderloin</string> <string>Mountain Trout</string> <string>Murglesnout</string> <string>Musselback Sculpin</string> <string>Nettlefish</string> <string>Oily Blackmouth</string> <string>Pygmy Suckerfish</string> <string>Raw Brilliant Smallfish</string> <string>Raw Bristle Whisker Catfish</string> <string>Raw Glossy Mightfish</string> <string>Raw Greater Sagefish</string> <string>Raw Loch Frenzy</string> <string>Raw Longjaw Mud Snapper</string> <string>Raw Mithril Head Trout</string> <string>Raw Nightfin Snapper</string> <string>Raw Rainbow Fin Albacore</string> <string>Raw Redgill</string> <string>Raw Rockscale Cod</string> <string>Raw Sagefish</string> <string>Raw Slitherskin Mackerel</string> <string>Raw Spotted Yellowtail</string> <string>Raw Summer Bass</string> <string>Raw Sunscale Salmon</string> <string>Raw Whitescale Salmon</string> <string>Redbelly Mandarin</string> <string>Reef Octopus</string> <string>Rockfin Grouper</string> <string>Sea Scorpion Segment</string> <string>Sharptooth</string> <string>Spinefish</string> <string>Spotted Feltail</string> <string>Stonescale Eel</string> <string>Striped Lurker</string> <string>Tiger Gourami</string> <string>Winter Squid</string> <string>Zangarian Sporefish</string> <string>Ornate Bronze Lockbox</string> <string>Heavy Bronze Lockbox</string> <string>Iron Lockbox</string> <string>Strong Iron Lockbox</string> <string>Steel Lockbox</string> <string>Reinforced Steel Lockbox</string> <string>Mithril Lockbox</string> <string>Thorium Lockbox</string> <string>Eternium Lockbox</string> <string>Khorium Lockbox</string> <string>Froststeel Lockbox</string> <string>Titanium Lockbox</string> <string>Tiny Titanium Lockbox</string> <string>Elementium Lockbox</string> <string>Ghost Iron Lockbox</string> <string>True Steel Lockbox</string> <string>Mysterious Shining Lockbox</string> <string>Highmaul Lockbox</string> Harvest Herbs:
     
    <ListHarvestByName> <string>Peacebloom</string> <string>Silverleaf</string> <string>Earthroot</string> <string>Mageroyal</string> <string>Swiftthistle</string> <string>Briarthorn</string> <string>Stranglekelp</string> <string>Bruiseweed</string> <string>Wild Steelbloom</string> <string>Grave Moss</string> <string>Kingsblood</string> <string>Liferoot</string> <string>Fadeleaf</string> <string>Goldthorn</string> <string>Khadgar's Whisker</string> <string>Wintersbite</string> <string>Firebloom</string> <string>Purple Lotus</string> <string>Wildvine</string> <string>Arthas' Tears</string> <string>Sungrass</string> <string>Blindweed</string> <string>Ghost Mushroom</string> <string>Gromsblood</string> <string>Golden Sansam</string> <string>Dreamfoil</string> <string>Mountain Silversage</string> <string>Plaguebloom</string> <string>Icecap</string> <string>Black Lotus</string> <string>Goldclover</string> <string>Fire Leaf</string> <string>Tiger Lily</string> <string>Talandra's Rose</string> <string>Frozen Herb</string> <string>Adder's Tongue</string> <string>Deadnettle</string> <string>Lichbloom</string> <string>Icethorn</string> <string>Frost Lotus</string> <string>Cinderbloom</string> <string>Azshara's Veil</string> <string>Stormvine</string> <string>Heartblossom</string> <string>Whitpail</string> <string>Twilight Jasmine</string> <string>Green Tea Leaf</string> <string>Rain Poppy</string> <string>Silkweed</string> <string>Snow Lily</string> <string>Fool's Cap</string> <string>Golden Lotus</string> <string>Sha-Touched Herb</string> </ListHarvestByName>  
    i Realy hope it helps!!
    Thanks in Advance!!
  7. Like
    Talamin reacted to Matenia in Just got banned instantly   
    I don't think you understand how detection works. Detection means the client tells the server the bot is injected.
    If you use patterns, grind for hours on end, don't do quests, use non-human behavior etc they can track that statistically. It doesn't mean the bot is detected.

    I've it for years on Warmane and it's been safe except when I got caught. It was only ever detected on an old version, but that was fixed. So if you are using the old cracked WRobot... go figure.
  8. Like
    Talamin reacted to Droidz in Mobiyo (AlloPass) payment gateway has been added   
    Hello,
    I added a new payment gateway that not require a credit card, info here : https://wrobot.eu/allopass/

    View full article
  9. Like
    Talamin reacted to Apexx in Looking for assistance with a method idea   
    Looking back at this thread today and here is a rough method that I came up with:
    public float TargetTimeToDie; private double damagePerSecond; private double targetPreviousHealth; private Timer timerDPS = new robotManager.Helpful.Timer(1000);  
    private void FightEvents_OnFightLoop(WoWUnit unit, System.ComponentModel.CancelEventArgs cancelable) { if (timerDPS.IsReady) { if (ObjectManager.Target.Health < targetPreviousHealth) { //How much damage was done since the last second //Helpers.LogDebug($"targetCurrentHealth({ObjectManager.Target.Health}) - previousHealth({previousHealth})"); damagePerSecond = System.Math.Abs(targetPreviousHealth - ObjectManager.Target.Health); TargetTimeToDie = (float)System.Math.Round(ObjectManager.Target.Health/ damagePerSecond, 1); Helpers.LogDebug($"Target will die in ~{TargetTimeToDie} second(s)."); } targetPreviousHealth = ObjectManager.Target.Health; } }  
    Usage (Maybe you do not want to use large cooldowns on the target if they will die in such time. Or do not place totems, etc..):
    if (TargetTimeToDie < 10.0f) return;
  10. Like
    Talamin got a reaction from Apexx in Looking for assistance with a method idea   
    hmm, your Spells have a Base Damage per Tick. 
    I would take the Basedamage and compare it to the actual health. Let´s say you have a Target with 1000 Health, but the Basedamage of your ShadowWord: Pain is 300 per Tick (total of 5 Ticks) it´s not worth to cast it. On the other side, when you "wand" the target down like every SPriest does while leveling, a DoT comes in Hand. So in General, there are different Ways to Achieve what you want:
    1. Read the dmg Output out of Combatlog of the Spell you desire and compare this against the enemy health
    2. Calculate the Base Damage of the Spell you want to see and compare this against the enemy health
    3. Limit your Dot´s, compared to the Health again, flat to the kind of Mob you are Facing (Normal Grind, Trash in Dungeon, Bossfight in Dungeon)
    4. Maybe some more...
    Actually i try to understand the Point of the Addon above. In the AIO we did Point 3. We checked for the kind of Target we have actually and this is the Trigger for the Rotation. Like in ShadowWord:Pain (Bossfight: Ignore Health, Trashmobs in Dungeon: 5%, Grindmobs outside Dungeon 30% <-- Because we Wand them down). 
    Hope i could give you a rough idea what i am talking about. If you need something more specific, let me know.
  11. Like
    Talamin reacted to srazdokunebil in Draw Vector3 Path on WRobot map from a plugin   
    I am developing a WRobot plugin that assists in making granular edits to Vector3 paths while in-game.  Right now I can add nodes, delete nodes, reposition existing nodes, and display the complete Vector3 path overlay in the client using Radar3D.DrawLine() and Radar3D.DrawCircle():

     
    I would like to draw my path to the WRobot map the same way that the Gatherer Profile Editor does.

    Is this possible to do from within a plugin?
  12. Like
    Talamin got a reaction from jiraiyasm in correct code for debuff   
    Add something like this, but you should think about moving all the casting checks into one Function and do the Checks only once.
     
    if (Corruption.IsSpellUsable && Corruption.KnownSpell && Corruption.IsDistanceGood && SpellManager.GlobalCooldownTimeLeft() == 0 && !ObjectManager.Target.Rooted && ObjectManager.Me.HaveBuff("Life Tap")) { if(!DebuffCheckOwner("Corruption") { Corruption.Launch(); return; } } public static bool DebuffCheckOwner(Spell spell, bool owner = true) { List<Aura> DebuffList = ObjectManager.Target.GetAllBuff(); Aura aura = null; if (owner) { aura = DebuffList.FirstOrDefault(s => s.GetSpell.Name == spell.Name && s.Owner == ObjectManager.Me.Guid); if (aura != null) { return true; } } return false; }  
  13. Confused
    Talamin got a reaction from Apexx in WRotation is stuck in icecrown gunship battle raid   
    This is fixed in our WOTLK AIO and can be achieved by taking a closer look into RelativePosition.
  14. Like
    Talamin got a reaction from Apexx in Looking for assistance with a method idea   
    could you be more specific what the point is behind this? You want to estimate if it´s worth to reapply your Dots on a Target? 
  15. Like
    Talamin reacted to Droidz in Payment options   
    I just put PayPal on this site again.
  16. Like
    Talamin reacted to Droidz in How to use WRobot on remote desktop   
    I tested with teamviewer problem is resolved: 

     
    Try to install required programs (framework, ...)
  17. Like
    Talamin reacted to Droidz in How to use WRobot on remote desktop   
    Hello, redownload updater, I fixed problem
  18. Thanks
    Talamin reacted to fucktbc in Ip Adresse   
    Das ist nicht ganz richtig. Der WebRTC muss manuell auf disable gestellt werden weil sonst jedes Script das den WebRTC ansteuert automatisch deine richtige IP sehen kann und loggen kann.. Ich würde dir ausserdem eine kaskadierung empfehlen , jeh nach dem was du vor hast und was der Schutz abhalten soll.
     
    Thread Necro ;< aber hey vllt interessiert es noch wen ...
     
    lg
  19. Thanks
    Talamin got a reaction from randomorc in How do you go about creating big profiles?   
    Sure, you can create your own server. That´s what most of us do when we build something until it is in a testing state for private servers.
    .modify speed 5
    .tel Orgrimmar
    .modify money 100000
    .die
    .gm fly on
    ... and many more helpers will help you to build Profiles/Plugin/Products.
     
  20. Like
    Talamin reacted to Zer0 in Calling for developers and testers   
    Bump for visibility.
    New people have joined and we are working on different future releases.
  21. Like
    Talamin got a reaction from reeze597 in Probleme mit den Settings   
    Hi,
    Bezüglich  Essen uns sonstigen Dingen gibt es Plugins welche kostenlos zur Verfügung stehen, oder auch Paid Plugins wie das HMP von Matenia.
    Profile können Settings verändern, meist aber nur Allgemeine  Settings, Essen und Trinken sollte ein  Plugin für dich übernehmen.
    Als Beispiel:
     
  22. Like
    Talamin got a reaction from TheSmokie in bot attacking high levels   
    Don´t think that dynamic Levelranges are possible with Grinder. I  Recommend you to switch over to the  Quester and build yourself a profile there, this can cover a lot more conditions then the Grinder. On another node, Attackrange from 10-15 should be the Mob range, but when you are attacked by hostile mobs, he will attack them for sure, regardless the Level the Mob has.
    If you insist on using the Grinder, try to rebuild your profile and grind green Mobs in Areas where only Greens or yellow are available.
  23. Like
    Talamin reacted to Energia in Various questions to avoid ban.   
    Hey man,
    It's very hard to answer your question because it really depends on a lot of things. From my experience most of bans I got was from the other players reports (if not all of them). To decrease a chance that someone will report you try to follow this steps:
    1) Find or create a good Fight Class for yourself
    2) Same for the profiles you are using, quality matters here
    3) Some plugins are very helpful, others are not. You need to really understand what they are doing before enabling them in too much numbers
    4) It's important to take a look at bot security tab in your options (example: if you are using a gatherer product you can set to avoid other players in 300yd range. In many cases it will prevent you from meeting other players near the nodes which means less PvP and ganking.
    5) Maybe this will be controversial but you need to at least keep your one eye on your bot (especially in the beginnings)
    6) To test stuff you can set your own private server so you dont need to be stressed while waiting for your results.

    Be sure that there are a lot more factors more or less important. It's just my tips.
    Remember that even most careful and paying attention person can be and will be banned sooner or later. You can't eliminate the risk in 100% but you can greatly decrease it.
  24. Like
    Talamin got a reaction from Banethemane in bots stopped working using AIO fightclass   
    You are doomed!
  25. Like
    Talamin got a reaction from Banethemane in bots stopped working using AIO fightclass   
    Just kidding, download it from the DL Section, don´t know why the  Autoupdater is sometimes broken.
×
×
  • Create New...