Everything posted by TheSmokie
-
Creating a Gather profile doesn't work
Post the files maybe?
-
Creating a Gather profile doesn't work
Do you have a mining pick axe?
-
PQR Undetected
I do sometimes
-
Meshes
He’s using a cracked copy.
-
Happy New Year 2021
Happy new year my friend
-
Happy holidays
From me to you. Marry Christmas and have a awesome holidays !
-
smelt the ore
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); }
-
increase from 3 sessions to 4 sessions
Only @Droidz can do what your asking.
-
Quests in custom script
That isn’t custom script, that’s fullcsharp
-
Quests in custom script
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.
-
Question : Plugin help
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?
-
Get Account Name
My bad, forgot to provide the right offsets, 0xB6AA40
-
Get Account Name
Try this, var accountName = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0x10D7914); Logging.Write(accountName.ToString());
-
Get Account Name
What patch you using? These offset is for worlk
-
Import from pqr
Hello, no there is no way to import but you can remake them using C#. or use the undetected pqr i released.
- Get Account Name
-
Get Account Name
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()); }
-
Condition for achievement?
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; }
-
Auction Buy items by owner Name
or if you know lua, you can write a simple search function using https://wowwiki.fandom.com/wiki/API_GetAuctionItemInfo
-
Gatherer keeps getting stuck
@AndyMartinhey , be more respectful and maybe someone will help you, else your gonna get told to go f?&@ yourself
-
Cataclysm
Honestly cata lacks everything, I don’t know a single person who plays cats tbh
-
Cataclysm
Yes, use TRIAL key to see if you server detects wrobot. Happy Botting.
-
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
-
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
Did you turn on quest not needed in settings
-
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
or use @Droidz method -