Everything posted by Droidz
-
Keep flying into the sea and dying with no progress
In "Product Settings" check if location of "Ausgrabungsstätte von Sra'vess Ost" seem correct (not correct = 9.710005E+13 , correct = 897.980) If position is not correct, go to the dig site "Ausgrabungsstätte von Sra'vess Ost" in game, select line of this dig site in "Product Settings" and click on button "Selected dig site is at my current location". If problem is not resolved desactive this dig site.
-
Probleme Fisherbot tortue de mer
Bonjour, Je viens de répondre à votre message privé:
-
[Party] Will not follow in dungeon
Hello, Can you share your log please (of bugged session, you can found log file in "Logs" folder).
-
Auto quest.. how to validate?
3500 is in ms. Prefer make your quests profiles with profile delivered with the bot is created in C# it is not easy). My game also is in French, not problem. To change profile automatically use action "Load Profile" in "Quest order editor".
-
battleground + gatherer.
Hello, I have test to reproduce bug and not problem found. Can you send me screen shot of your battleground settings and your log please (of bugged wrobot session, you can found it in "Logs" folder)?
-
Fail Archeology Pandaria
Hello, I recommand to update your dig sites list: (or dig sites where WRobot bug to go there). If you can send me screen shot of your wow map where you have the problem. Thanks
-
Auto quest.. how to validate?
Hello, In "Quest order editor" add action "RunCode" after "pulse" with param: wManager.Wow.Helpers.Quest.CompleteQuest(); You can add wait time to wait then window appear: Thread.Sleep(3500); wManager.Wow.Helpers.Quest.CompleteQuest();
-
Profile Converters?
Hello, can you share an profile which doesn't works with converter.
-
Vendors
Hello, Check if your items is no in "Do not sell list" and add items name at sell in "Force sell list" (and don't forget to activate items quality at sell).
-
[Macro] follow/assist party1
Hello, Party product don't works for it? You can try to use WRotation and add in your fightclass this wow macro
-
Check wow unit or wow player for debuff
ps: If you want get group players you can use this code: List<WoWPlayer> playerList = Party.GetParty(); foreach (var player in playerList) { // ... }
-
Check wow unit or wow player for debuff
For get player role for the moment you can use lua: http://wowprogramming.com/docs/api/UnitGetAvailableRoles In the next version I have added "AvailableRoles" function, you can use it like: List<WoWPlayer> playerList = ObjectManager.GetObjectWoWPlayer(); bool canTank, canHealer, canDps; string debuffName = "SpellNameInEnglish"; foreach (var player in playerList) { if (player.IsValid && ObjectManager.Me.PlayerFaction == player.PlayerFaction) { player.AvailableRoles(out canTank, out canHealer, out canDps); Logging.Write("[MyPlugin] Player " + player.Name + " canTank: " + canTank + ", canHealer: " + canHealer + ", canDps: " + canDps); if (player.HaveBuff(debuffName)) Logging.Write("[MyPlugin] Player " + player.Name + " have debuff " + debuffName); } }
-
Thanks!
Hello, thank you, I'm glad you said that.
-
WRotation and moving
Hello, yes, in product settings (when "WRotation" is selected) desactivate the option "Manage character rotation, range and target".
-
food//drink
Hello, Go to tab "General Settings", to right/bottom click on "advanced...". In new window go to tab "Food/drink" and enter name of your food and drink.
-
Check wow unit or wow player for debuff
Hello, try this: List<WoWPlayer> playerList = ObjectManager.GetObjectWoWPlayer(); string debuffName = "SpellNameInEnglish"; foreach (var player in playerList) { if (player.IsValid && ObjectManager.Me.PlayerFaction == player.PlayerFaction) { if (player.HaveBuff(debuffName)) Logging.Write("[MyPlugin] Player " + player.Name + " have debuff " + debuffName); } }
-
Accidentally Bought 2 Subscriptions
Hello, Is done.
-
Check wow unit or wow player for debuff
-
Crash Matter
I have search on google and problem seem caused by avast. If you can try to deactivate/desinstaller avast.
-
Constant crashes
In bottom right of this page click on button "More Reply Options", in new page click on "Choose Files...".
-
PvP only?
For Pvp battle pets, in product settings of "Pet Battle" product activate option "Pvp mode".
-
bot constant crashing
Hello, I have reply here:
-
Constant crashes
Hello, Make all steps of this: If problem is not resolved send me your log file please (you can found it in "Logs" folder).
-
Bug: Swift Flight Form and Gathering
I'll add this feature, wait next update (for wait you can add healing spell in your fightclass).
-
New Error :(
Hello, I have try and no problem with tool NPC DB. Can you try to rename or delete file "WRobot\Data\NpcDB.xml" to clean database and check if problem is resolved (or send me this file, I'll check if is not corrempude).