Everything posted by Droidz
-
Blacklist a zone/mob Until level
Hello, no feature for that, but you can do that with c#
-
Battlegrounder Vendor
Hello, do you have added vendor/repair in your grinder profile or in your "npc db" (tab tools)?
-
Cata/Mop window quests
Hello, you have check buttons name? https://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
-
Conditions
Hello, put bigger value in fightclass option "Frames Per Second" and increment max fps option in game (avoid lua conditions can also help).
-
Can i skip steps in the Profile?
Hello, you need to do that in the profile, if you use good conditions WRobot will start where you are
-
Macro to use the item by ID?
Hello, https://wrobot.eu/forums/topic/1688-lua-and-multi-language-support/?do=findComment&comment=11324
-
Bot on the way to flightmaster?
Hello, you can try to read log: robotManager.Events.LoggingEvents.OnAddLog += delegate(Logging.Log log) { if (!string.IsNullOrWhiteSpace(log.Text) && log.Text.StartsWith("[FlightMaster] Try to take taxi at ")) { // ... } };
-
Change time to release spirit
Hello, try plugin like: Main.cs public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += delegate (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable) { if (wManager.Wow.Helpers.Battleground.IsInBattleground() && state is wManager.Wow.Bot.States.ResurrectBG) { System.Threading.Thread.Sleep(1000); } }; } public void Dispose() { } public void Settings() { } } (replace 1000 by wait time in ms)
-
Automatic reconnecxion Doesnt Works
Bonjour, pouvez vous partager votre fichier journal( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
AV battlefield
try to disable all wow addons and clear wow cache. Try to re download and reinstall WRobot in new folder (and only intall and select fightclass)
-
64 bit
Hello, Yes of course I'll add 64 bit support (and I'm going to start working on it before release, it's a lot of change)
- Food/Drink amount more than 50
-
Vendor Problem
Hello, - Remove NPCs already in your list (in main wrobot window, go to tab "Tools" > "Npc DB" > select your npc and press key "Del" to remove it from the list (restart wrobot)). - In advanced general settings tab "Other..." disable all options in "Automatically add nearest NPCs to database". - Add your NPCs in 'NPC db' (or in your profile)
-
Grinder not skinning or herbing
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Wrobot on another pc of mine?
Hello, you don't need to buy another subscription
-
Bot Not Repairing
Hello, it is in vanilla? if yes wait next update. If it is not in vanilla you get this problem with all repair? do you have try to disable wow addons?
-
AV battlefield
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Check party class composition
Hello, you code is bad, it is more like: private bool _Partyclass_Druid; public void UpdatePartyComposition() { _Partyclass_Druid = false; var partyMembers = Party.GetPartyHomeAndInstance(); if (partyMembers.Any()) { foreach (var u in partyMembers) { if (u.WowClass == WoWClass.Druid) { _Partyclass_Druid = true; } // Repeat for other clases } } }
-
[Vanilla] Selling items at Innkeeper bug
If you can wait next update and tell me if problem is resolved
-
Help with which license(s) to purchase
Hello, normal "WRobot subscription" and "WRobot unlimited subscription" works with all WRobot version (but price is per month). "WRobot FOR PRIVATE SERVER" (price per year) subscription works only with WRobot for private server. For you the best choise is "WRobot FOR PRIVATE SERVER"
-
too close to target
Hello, target is attackable? You can try to put lower range value in your fightclass
-
After dieing bot goes on a vendetta hunt.. and often dies
Hello, in advanced general settings tab "regen..." put lower value a min hp%
-
7.1.5 dll Fight Class crashing
Hello, I think than you try to use encrypted dll, but this feature was not in old WRobot verison.
-
Radar errors
Hello, http://www.tomshardware.co.uk/faq/id-2066988/enable-window-transparency-aero-windows.html
-
Wrobot is not working at all
try to install framework 4.6 https://www.microsoft.com/fr-fr/download/details.aspx?id=53344