-
Content Count
1173 -
Joined
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by TheSmokie
-
I do sometimes
-
He’s using a cracked copy.
-
Happy new year my friend
-
From me to you. Marry Christmas and have a awesome holidays !
-
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.GetItemCo
-
Only @Droidz can do what your asking.
-
That isn’t custom script, that’s fullcsharp
-
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.
-
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?
-
My bad, forgot to provide the right offsets, 0xB6AA40
-
Try this, var accountName = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0x10D7914); Logging.Write(accountName.ToString());
-
What patch you using? These offset is for worlk
-
Hello, no there is no way to import but you can remake them using C#. or use the undetected pqr i released.
-
Your Welcome,
-
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()); }
-
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
TheSmokie replied to maukor's topic in WRobot for Wow The Burning Crusade - Help and support
or if you know lua, you can write a simple search function using https://wowwiki.fandom.com/wiki/API_GetAuctionItemInfo -
@AndyMartinhey , be more respectful and maybe someone will help you, else your gonna get told to go f?&@ yourself
-
Honestly cata lacks everything, I don’t know a single person who plays cats tbh
-
Yes, use TRIAL key to see if you server detects wrobot. Happy Botting.
-
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Add your conditions -
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Did you turn on quest not needed in settings -
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
or use @Droidz method - -
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
using frames like that one is everything SINGLE TIME you try go to vender it will run, which can cause problems. use this instead, use overridepulse to go buy stuff from venders. if(wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(1,1,1), 55 , 1)) // vectors of the npc, npc ID, Gossip { Tool.BuyItem("itemName", Amount); } return true; -
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Message me your discord and i can sit down with you and help you learn,
