Everything posted by eeny
-
Quest TurnIn Repeatable Quest
I did, I put it in the rep Download section I think.
-
[H] [Quest] 1-60 grinder
There are a bunch of other profiles in the random folder in the pack so you have 2-4 zone options at any level. STM is rough because every mob there is for a quest and people always want to group up. The mobs in ashenvale(there are a few locations there) are not quest mobs so it's a bit more quit. STM has less alliance.... But more horse who are equally likely to report.
- 162 comments
- 11 reviews
-
WoTLK fight classes healing party members.
Hey all, I'm working on a Ret pally party bot for W@rm@ne 3.3.5 and im looking to get "Art of War" procs to be a bit more smart. The Art of war is a proc where he net Flash of Light or Exorcism becomes instant cast. At the moment im just writing the tank name into the Fight class and running a macro to target the tank when the bot has Art of War and cast FoL. Its effective, however some boss fights are a bit more party damage heavy and im seeing a lot of wasted heals landing on the tank which could go to the party. Does anyone have code or methods to check the health of party members and target / heal them in a DPS fight class. Currently im running this to keep the tank up... if ( ObjectManager.Me.ManaPercentage > 10 && ObjectManager.Me.HaveBuff("The Art of War") && ObjectManager.Me.HealthPercent > 85) { wManager.Wow.Helpers.Lua.RunMacroText("/cast [@Tank_name] Flash of Light "); } FC Attached- thanks Paladin_Ret_party_bot.cs
-
[H] [Quest] 1-60 grinder
- 162 comments
- 11 reviews
-
1-300 mining?
I get reports of this all the time...
-
Custom Code Movement
Is there any reason you are using this method of movement over a followpath?? Personally I'm a fan of a followpath pulse if i know the bot is going to need something more than native navigation...
-
auto accept blood of sargeras
Have you tried using this addon from droidz? You may need to modify the timing / button selection but it should work Auto Accept.cs
-
Combine-Vanilla plugin is not opening clams
Has the ode also I use the code in a quest file Soutridge Beach Azshara.xml And it works a damn charm- just need to change the itemID in the runcode pulse so its opening the correct items and looting all.
-
Loot Items
Not a fix to your problem exactly- more a way around it i found. Soutridge Beach Azshara.xml That's a quest file I use a lot with a run code to automatically open and loot clams while fighting. All you would have to do is change the location vectors and target NPC's and you should be good to go. If you link your grinder file i should be able to merge the two. The runcode looks like this: Thread t = new Thread(() => { while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(5524); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } } Thread.Sleep(10000); } }); t.Start();
- Wrobot crash
-
[PVP] Warrior Prot - charge not work
Charge- condition me in combat = true Remove this condition or set to false
-
WR is automatically closing.
[F] 03:29:09.115 - [Spell] Cast Heroic Strike (Heroic Strike)[F] 03:29:12.316 - [Spell] Cast Heroic Strike (Heroic Strike)03:29:12.524 - Trial finish, close bot.[E] 03:29:12.524 - System.Char[][F] 03:29:12.622 - [Spell] Cast Heroic Strike (Heroic Strike)
-
Wrobot acting stupid after update
Take a read through Will explain why they are shutting down as you open them.
-
Looting inventory item containing quest items
I use this "Run code" step on a quest file to open clams i find while fighting . You should be able to change the item ID and the IF conditions to suit your needs. Thread t = new Thread(() => { while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(7973); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } } Thread.Sleep(10000); } }); t.Start();
-
Crashing
[E] 23:47:29 - System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary. at System.Collections.Generic.Dictionary`2.get_Item(TKey key) at StatWeights.ForClass(WoWClass woWClass) at AutoEquip.EquipItems() at Main.DoBackgroundPulse(Object sender, DoWorkEventArgs args)[E] 23:47:29 - !Memory.IsProcessOpen Disable HMP / auto equip and see?
-
Certain Mobs immune to certain spells
in C# on my free druid FC i use this boolean to not cast the spell on certain mob types. private bool CanBleed(WoWUnit unit) { return unit.CreatureTypeTarget != "Elemental" && unit.CreatureTypeTarget != "Mechanical"; }
-
I cant download
https://github.com/droidzfr/WRobot_Packages/tree/master/vanilla/FightClass
-
[H] [Quest] 1-60 grinder
Profile hasnt changed much.... guess I'll pull down the latest version and check it, I take it your on Kronos?
- 162 comments
- 11 reviews
-
Melee Classes not able to hit Mobs
I still play on lightbringer, however i have seen melee (mainly warriors) bug out. Usually fixed by using a movement plugin. just my experience
-
Grinder “failed to start”
This is the error you get when you load a quest file in grinder mode. Can you please load it in quest mode and update the log? ] 14:13:27 - Grinder > Bot > Bot > Pulse(): System.NullReferenceException: Object reference not set to an instance of an object.at Grinder.Bot.Fuipuofokoelao.Efiuvoanuq()
- Grinder “failed to start”
-
Grinder “failed to start”
Most of the large "grinder" files here are actually written on the wrobot quest base, not grinder base. Make sure you are loading the profile with the correct product, the profile description in most cases tells you what you need to do. I sometimes get "failed to start" when loading file... usually i re-launch the client and it works second time around.
-
Cant load the bot correctly
Usually helps if you tell us what server / release you are playing.
- Disable / Turn off Random Jump
-
Wotlk 3.3.5 skinning bot
Load that other profile as a grinder- not gatherer Alternatively you can just make your own grinder in a few minutes and enable skinning