-
Posts
1215 -
Joined
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by TheSmokie
-
You should of gotten a invoice with renew.
-
Hi, ive been using this copy for a few weeks that was given to my by the Creator to test his Horde quest, so far it learns and does everything its intending to do, i was able to get skinning to 300 with in a day or two and it lets me go to work and come back to REAL progress. i would recommend this Plugin for anyone that is wanting to train and do you're proffs without needing to baby sit you're computer. ?flight code also works better then wrobot flying code (no disrespect to wrobot) it runs without question but i did find a small problem with buying amo a long time ago but was fix fast without me needing to tell the DEV. and on his discord i see a lot of bug fixes over time. i do recommend this plugin to all, Thanks for a great product. ?
-
using System; using System.Collections.Generic; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { private bool isLaunched; private static WoWLocalPlayer Me = ObjectManager.Me; public void Initialize() { isLaunched = true; while (isLaunched && Products.IsStarted) { try { foreach (WoWItem item in Bag.GetBagItem()) { if (!Products.InPause && Products.IsStarted && !ObjectManager.Me.InCombat && !ObjectManager.Me.IsCast && !ObjectManager.Me.IsDead) { if (wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(14156) >= 1) { ItemsManager.UseItem(14156); Logging.Write("UBag name"); } } } } catch { } Thread.Sleep(1000 * 3); // Wait 3 sec } } public void Dispose() { isLaunched = false; } public void Settings() { MessageBox.Show("No settings for this plugin."); } } edit to you're needs.
-
need som help, wont mount. [VANILLA]
TheSmokie replied to Attam's topic in WRobot for Wow Legion - Help and support
using System.Windows.Forms; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using wManager.Plugin; using System.Threading; public class Main : IPlugin { bool run; public void Initialize() { run = true; while(run) { try { if (!ObjectManager.Me.HaveBuff("Mount name") && MovementManager.InMovementLoop) { MovementManager.StopMove(); SpellManager.CastSpellByNameLUA("Mount Name"); Usefuls.WaitIsCasting(); return; } } catch { } Thread.Sleep(10); } } public void Dispose() { run = false; } public void Settings() { MessageBox.Show("No Settings"); } } Simple plugin for mount, Edit the buff & spellname, If you need edit conditions, there is a lot that can be found Here! Hope it helps (Untested.) -
Party healing problem
TheSmokie replied to maukor's topic in WRobot for Wow Vanilla - Help and support
if need anymore help, join my discord server https://discord.gg/ppm8Ufc -
Party healing problem
TheSmokie replied to maukor's topic in WRobot for Wow Vanilla - Help and support
try { //Checking if: not dead, in Group, inGame then looping the party members if (!ObjectManager.Me.IsDead && Party.IsInGroup() && !Usefuls.IsLoadingOrConnecting && Usefuls.InGame) { //looping all party members foreach (var playerGuid in Party.GetPartyGUID()) { if (playerGuid > 0) { var p = new WoWPlayer(0); var obj = ObjectManager.GetObjectByGuid(playerGuid); if (obj.IsValid && obj.Type == WoWObjectType.Player) { p = new WoWPlayer(obj.GetBaseAddress); } if (p.IsValid && !p.IsDead) { if (p.HealthPercent <= 90 && !p.HaveBuff("Rejuvenation") && Rejuvenation.KnownSpell) { if (p.HealthPercent >= 1) { SpellManager.CastSpellByNameOn("Rejuvenation", p.Name); Usefuls.WaitIsCasting(); } } } } } Hope it helps -
Hello everyone, @Matenia Gave me the pleasure of testing his Warlock fightclass for my quester profile, and i gotta say. it is by far one of the best fightclasses for wrath around. it handles muti hostle units like a boss. from 1 - 60 i barely seen much death on my toon. but there was a problem that he fix with in a single hour, it was regen crash but over all it was very good. im glad he let me test with it, and would recommend it to anyone who wants to level on wrath. Good Job. update : there was a problem with the LUA deleteing shards script in the profile causing DC, matenia was able to fix it under a hour (once we’ve found the problem that we search for for a week or two.) very nice work.
-
Avvi's C# Tips & Tricks with Helpful Code Snippets
TheSmokie replied to Avvi's topic in Developers assistance
if you ever need to find out what state the bot is in, use this code to detect figure what state you are in to help make products, robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { Logging.WriteError("state = " + state.DisplayName.ToString()); }; -
I mean no disrespect for this but i gotta say it. stop FUCKING bitching, i mean there is no info on this thread post that is helping anyone, if people dont like the bot? Guess what do it by hand. This is a way to fix lower time with leveling but i see no one stepping up to the plate other then DEVS to do shit about it. Yes grinders are COMPLETE crap because the ban rate is high but if you are gonna bitch about it, make you're self you're own "quester profile." you're self, this thread has become a bitching dick contest and it find it retarded. Can people just be happy with what they got instead of bitching about what they want! Yes the the Wrobot commuity has gotten smaller to the point people dont give but EVERYONE wanna take. @Droidz Has A REAL LIFE and GIVEN people the TOOLS TO MAKE THERE OWN SHIT without NEEDING HIM. @Matenia IS one of the Most Nice, Respectable, HELPING Devs out there, when i have a problem or need help with something he takes his time to give some advice even tho my questions seem silly to him, HE STILL takes the time to respect me and give advice. Hes kinda like a mentor To me , and to Everyone WHO ask him for advice or help. so please do not bash him. He given a lot of free products away to help people who do not have money or wanna test. He supports almost all projects with quester by giving a free copy of HMP or fightclasses to help DEV make there product. I gotta give him mad respect. HES awesome !
-
Shittttt ? fucking made me laugh hard.
-
List<WoWUnit> attackers = ObjectManager.GetUnitAttackPlayer(); FightEvents.OnFightLoop += (unit, cancelable) => { if (attackers.Count > 1 && Polymorph.KnownSpell && Polymorph.IsSpellUsable && ObjectManager.Target.GetDistance <= 25 && presence.KnownSpell && presence.IsSpellUsable) { WoWUnit mainTarget = attackers.Where(u => u.HealthPercent == attackers.Min(x => x.HealthPercent)).FirstOrDefault(); WoWUnit polyTarget = attackers.Where(u => u.HealthPercent == attackers.Max(x => x.HealthPercent)).FirstOrDefault(); if (!polyTarget.HaveBuff("Polymorph") && polyTarget != mainTarget) { SpellManager.CastSpellByNameOn("Polymorph", polyTarget.Name); Usefuls.WaitIsCasting(); return; } } }; (non tested)
- 21 replies
-
- multiple
- multiple enemies
-
(and 2 more)
Tagged with:
-
Rogue Poisons/Item usage
TheSmokie replied to Marsbar's topic in WRobot for Wow Wrath of the Lich King - Help and support
if (!ObjectManager.Me.HaveBuff(Rogue.CurrentSetting.p1) && ItemsManager.GetItemCountByNameLUA(Rogue.CurrentSetting.p1) < 1 && !(Rogue.CurrentSetting.p1 == string.Empty)) { ItemsManager.UseItem(Rogue.CurrentSetting.p1); Thread.Sleep(10); Lua.LuaDoString("/click PickupInventoryItem(16)"); Thread.Sleep(5000); return; } if (!ObjectManager.Me.HaveBuff(Rogue.CurrentSetting.p2) && ItemsManager.GetItemCountByNameLUA(Rogue.CurrentSetting.p2) < 1 && !(Rogue.CurrentSetting.p2 == string.Empty)) { ItemsManager.UseItem(Rogue.CurrentSetting.p2); Thread.Sleep(10); Lua.LuaDoString("/click PickupInventoryItem(17)"); Thread.Sleep(5000); return; } -
Please do, but wait til tomorrow night so I can watch it drunk for the laugh.
-
Sorry, you aren't permitted to download this file.
TheSmokie replied to maitokannu's topic in General assistance
I was right ! -
Sorry, you aren't permitted to download this file.
TheSmokie replied to maitokannu's topic in General assistance
Bullshit, we all know you’re posting because you’re out of weed and beer lol ? jk -
Sorry, you aren't permitted to download this file.
TheSmokie replied to maitokannu's topic in General assistance
Only crap @BetterSisteron the furms posting -
-
I think this fourm post is kinda getting out of hand, (no disrespect to anyone.) @Droidz or @BetterSister can we have this thread locked?
-
Honestly, I do not believe any Quester Dev has the the time or the knowledge to make a fully afk profile, there is always something wrong that people don’t input into the profile like training for spells n out land or northern etc, there is so many quarters that say there afk but are not. I don’t think any dev or premium seller have the time or even know how everything (reasonable stuff ofc) to make a quester fully afk. It’s not something that can be done in a few hours then gg, you first need to build a base say 1-60 quests , then make sure it runs on all classes, then fix or use custom code on parts that case problems for other classes then they need to input custom paths, training code etc. it’s a lot of work. 500hour mim
-
You are looking for a custom fightclass that I do not think the normal fightclass editer can do. You need to build it in VS. you
-
Horde 1-60 quester, Human plug in, now what class?
TheSmokie replied to fatboy89's topic in General discussion
Warlock -
I mean @Droidzcould charge more if the price is the problem. I’m sure he could do 50-75 $ per year with no problems
-
@dannyboi yes, it does but most files that are PUBLIC warmane has. I would suggest make you’re own files.
-
if (p.HealthPercent <= 90 && !p.HaveBuff("Wild Growth") && Wild.KnownSpell && Wild.IsSpellUsable) { if (p.HealthPercent >= 1) { SpellManager.CastSpellByNameOn("Wild Growth", p.Name); Usefuls.WaitIsCasting(); } } Updated code that i made for someone.