Everything posted by Droidz
-
Add the use of Fishing Items to the Fishing Engine
Hello, This don't works if you put item name in fisher product settings option "Lure Name"?
- relogger problems
-
Request for Gear Buyer plugin
Hello, I'll add this feature soon.
-
Totem manager??
Hi, I cannot test but try this code I have correct some errors. if (GetUnitSpeed("player") == 0) and not (UnitCastingInfo("player")) and not (UnitChannelInfo("player")) and not (UnitAffectingCombat("player")) and not (IsMounted()) and not (IsFlying()) and not (IsFalling()) and not (IsResting()) and not (UnitIsAFK("player")) then local timeLeftToCastAgain = 10*60; --[[ Searing Totem ]] local idTotem={3599} for i=1,#idTotem do local spellname=GetSpellInfo(idTotem[i]) for totemIndex=1,4 do local haveTotem, totemName, startTime, duration = GetTotemInfo(totemIndex); if (haveTotem and spellname == totemName) then local timeLeft = startTime+duration-GetTime(); if (timeLeft < timeLeftToCastAgain) then if (IsUsableSpell(spellname)) then local start, duration, enable = GetSpellCooldown(spellname) if (duration==0) then CastSpellByName(spellname); end end end break; end end end end
-
[Macro] follow/assist party1
Do you have try to follow player by name (you can config it in "Product settings" of party bot).
-
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...".