Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Everything posted by TheSmokie

  1. He’s using a cracked copy.
  2. TheSmokie

    Happy New Year 2021

    Happy new year my friend
  3. From me to you. Marry Christmas and have a awesome holidays !
  4. You can make a addon or quester profile with code looking like this (Untested.) while(Conditions.InGameAndConnectedAndAlive) { List<string> ProsSpectList() { return new List<string> { "Item 1", "item 2", //etc }; } if (!ObjectManager.Me.IsCast) { foreach (string prop in ProsSpectList()) { string spellName = ""; if(ItemsManager.GetItemCountByNameLUA(prop) > 0) { Lua.LuaDoString("CastSpellByName(\"" + spellName + "\")"); Thread.Sleep(50); List<int> bagAndSlot = Bag.GetItemContainerBagIdAndSlot(prop); Lua.LuaDoString("UseContainerItem(" + bagAndSlot[0] + "," + bagAndSlot[1] + ")"); Usefuls.WaitIsCastingAndLooting(); } } } Thread.Sleep(1000); }
  5. That isn’t custom script, that’s fullcsharp
  6. Custom script is a area where you can have code stored then able to call it via run code or have code ran on another thread. Custom script is so powerful. If you want, dm me and a few hours and I’ll help you.
  7. Hello, is there a way to make a plugin load before hitting start on a product? and have it keep running while product has stopped?
  8. My bad, forgot to provide the right offsets, 0xB6AA40
  9. Try this, var accountName = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0x10D7914); Logging.Write(accountName.ToString());
  10. What patch you using? These offset is for worlk
  11. Hello, no there is no way to import but you can remake them using C#. or use the undetected pqr i released.
  12. Hey @pudge, While i was looking to help you, I've looking into offsets that does what you asking, this works, I tested it on my account and it returned the name. enjoy. Note : i only ran in dev tools. var accountName = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0x10D7914); if(!string.IsNullOrEmpty(accountName)) { Logging.Write(accountName.ToString()); }
  13. the code @Droidz work for some achs, not all. this works for all achs public static bool Achievement(int achievementID, int index) { bool haveAchievement = Lua.LuaDoString<bool>("local achievementID = " + achievementID + "; local indexCriteria = " + index +"; local achievementInfo = {GetAchievementInfo(achievementID)}; if achievementInfo[4] then return achievementInfo[4] end local achCriteriaInfo = {GetAchievementCriteriaInfo(achievementID, indexCriteria)}; return achCriteriaInfo[3];"); return haveAchievement; }
  14. or if you know lua, you can write a simple search function using https://wowwiki.fandom.com/wiki/API_GetAuctionItemInfo
  15. @AndyMartinhey , be more respectful and maybe someone will help you, else your gonna get told to go f?&@ yourself
  16. Honestly cata lacks everything, I don’t know a single person who plays cats tbh
  17. Yes, use TRIAL key to see if you server detects wrobot. Happy Botting.
×
×
  • Create New...