-
Posts
1215 -
Joined
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by TheSmokie
-
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Update : Added - FlightPathChecker -
wrobot on atlantiss karazhan (2.4.3)
TheSmokie replied to 100konmywrist's topic in General discussion
Hell no, this dude disrespect @Droidz bot and acting like a cunt, droidz should ban the person not give a refund -
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Update : Added - Flight Master Code. Added - Flights from Orgrimmar To Thunderbluff and Thunderbluff to Orgrimmar. -
Many Useful Functions (Vanilla - WOTLK) RunCode (Action): - Tool.LearningSpells("Name Of spell"); // Put in name of the spell you wish to buy. - Tool.Craft("profession", "RecipeName", 1); // This code will only work for Wrath of the lich king - Tool.RemoveItem(55); // Removes item by ID - Tool.UseItem(55); // Uses item by ID - Tool.AbandonQuest("Quest Name"); //Abandon Quest by Name - Tool.Sellitem("Item Name"); // sell item by name - Tool.Fish(new Vector3(1, 1, 1), new Vector3(1, 1, 1), 0, 75, 6562, 111); - Tool.CheckUpdate(); // updates quester profiles from github.raw - Tool.SendItems("name", "note", new List<string> { "Super Healing Potion", }); // mail itemlist to another player If statements : - Tool.RecipeIsKnown("profession", "RecipeName") == true // check if you have this Recipe! If statement! - Tool.HasItem("itemname") <= 0 - Tool.Faction("Name of the faction", 5) == true // add name of faction, and amount of rep you want to check aganst. 42999 is max rep. - Tool.haveKey(KeyID) // checks if you have a key Travel Functions added(Vanilla - WOTLK) Flight : - Travel.Flight.ThunderBluffToOrgrimmar(); - Travel.Flight.OrgrimmarToThunderBluff(); Full code here: https://wrobot.eu/forums/topic/12034-toolboxvanilla-wotlk-many-useful-functions-custom-script/
-
-
go here : https://wrobot.eu/profile/27746-camelot10/ , click on message and thats how you message someone
-
you can message him on here,
-
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Update : Added - Tool.Fish Added - Tool.Sendmail Added - Tool.CheckUpdate Added - Tool.Havekey -
@Droidz how do i check if a flightmaster was discovered by name? (i am taking a few hours and gonna update @nudl flightmaster profiles but i need a check if the flightmaster is discovered for a complete condition.
-
PathFinder.ReportArea missing ContintentId parameter
TheSmokie commented on Matenia's bug report in Bug Tracker
@Matenia i was wondering if you mind sharing how you was able to detect water ? i am making a fishing profile and only need a way to detect water as a vector -
i do not think Camelot is around anymore (i've message him a few times, no reply.) if you message me the files, i can see whats causing these errors and fix them for it. please note : i am only fixing them for you and only you! @alzaem121, Message me the files here or on discord : Sye | Smokie#1651
-
See if the skinning option is on.
-
Lol ?
-
There a private way to make wrobot rum more smooth?
-
Decurse Group debuffs and switch target
TheSmokie replied to dripcommander's topic in Fight Classes assistance
You’re beat bet is to watch @Marsbar video and start making fightclasses using c# -
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
1: paid doesn’t always mean best, I’m pretty sure every server has at least a copy of every paid product on here, make your own. 2: i only bot max. 3-4 hours a day per account, think what a human would do, would a human farm for 19 hours a day? 3: always make dummy trading accounts, if your trying to move gold, make 10 dummy accounts and pass your gold threw each of them 3x toons each. Could just be me but this works. 4: don’t bot during peak it’s better to have less online. 5: always keep a eye on your bots -
Search the forums ,
-
You gotta pay someone or make one your own, I personally don’t know anyone who is working on that expansion
-
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
I’ve ran 4 bots on frostmourn and no ban yet -
Decurse Group debuffs and switch target
TheSmokie replied to dripcommander's topic in Fight Classes assistance
You can also do what @Talamin is saying with lua. -
WRobot is so bad
TheSmokie replied to blackrockspeculator's topic in WRobot for Wow The Burning Crusade - Help and support
i think it should be @blackrockspeculator is so bad, i have ran muti bots and not die, you need to make your own profile. if you dont want problems. Or pay someone like @Bambo or @Matenia for help doing what you want it to do. stop making stupid posts blaming the bot when you are the one who doesnt know how to config the bot or make your own shit. Note Matenia charges 30$ per hour of his help. idk about bambo. -
[ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)
TheSmokie replied to TheSmokie's topic in Quester assistance
Updated : added sell specific item (string name) to vender Remove quest by name Code to sell items (you will need code above in your custom script.) if(wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(x, y, z), NpcID, 1)) { TB.Sellitem("Name of item"); } -
Manual selling
TheSmokie replied to zatvorgt's topic in WRobot for Wow Wrath of the Lich King - Help and support
I know this is a old thread but i came across it when trying to find a method to bender item by name, i was able to make a method that vender ALL item by the name, i thought I'd share. public static class Toolbox { public static void Sellitem(string ItemName) { Lua.LuaDoString(string.Format(@" local ItemToSell = '{0}' for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag, slot); if name and string.find(name, ItemToSell) then if (MerchantFrame:IsShown() ) then ShowMerchantSellCursor(1) UseContainerItem(bag, slot) end end end end", ItemName)); } } if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(x, y, z), NpcID, 1)) { Toolbox.Sellitem("Name of item"); }