-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, Is done, wait next update.
-
[WarGuard] Warden Found. May / 20 / 2015 ( User found )
Droidz replied to Networkz's topic in General discussion
Hello, "WarGuard" is feature to protect you, he check wow warden activity, and close wow if suspect action as found. "[WarGuard] Warden found, protection activated." that mean than WarGuard have found the Warden in memory, and start to check wow warden activity. ps: You can read this post: to get more info. -
Need help for the Arena Wins Custom Profile.
Droidz replied to da8ball's topic in General assistance
Try with the name StaticPopup1Button1 -
Need help for the Arena Wins Custom Profile.
Droidz replied to da8ball's topic in General assistance
Hello, Can you give me the name of the bouton please (to get butons names: ). ps: You can try to replace "TheButtonName" by the button name line 98 of this ArenaWinsForSecondCharacter.cs and use this profile on your second character. -
import / converse Profil of Honorbuddy/tuanha
Droidz replied to nicolas59118's topic in Developers assistance
Hello, Can you share profiles please (you can try to use "Profiles Converters" product, if this don't works, in "Quester" product, go to "easy quest editor", in the tools you can found hb quest profiles converters) -
Work done, closed
-
I'll make profile but I need Lvl 3 Fishing Shack (I need http://www.wowhead.com/achievement=9406/working-more-orders), and I have yet a lot of work to finish the next WRobot update. When next WRobot update is released I'll look it.
-
Hello, Your log file is empty, can you remove all log files, launch WRobot (wait the problem) and send me your log file again. Do you have try to disable your antivirus/firewall?
-
You can keep newer version and install older (the programs that uses visual c++ 2010 does not works with 2013), but general slimdx resolve your problem.
-
Hello, Install Visual C + + 2010 (X86) and SlimDX (4.0 X86).
-
Hello. Do you use windows administrator session ? Do you have installed required software ? wrobot.eu/topic/1381-repairinstall-wrobot/
-
Hello, I have reply here: 1. is ban process stepwise?(Is banwave finished?) I ignore, but it is possible that bliz takes several days to ban all flagged accounts. 2. IS WROBOT SAFE FROM BANWAVE? This ban wave does not affect the WRobot users.
-
use right click to start pet battle instead of left click
Droidz replied to saosaok's topic in Pet Battle assistance
Hello, If you can wait next update and tell me if problem is resolved -
Hello, Reply here:
-
Hello, I have added this, wait next update.
-
stuck on pet with Pet Battle area is obstructed
Droidz replied to wizardcho's topic in Pet Battle assistance
Hello, If you can wait next update and tell me if problem is resolved. -
Nice to have (10 wishes to xmas...or faster)
Droidz replied to Bugreporter's topic in Pet Battle assistance
Hello, In the next WRobot update I have added pet battle fightclass system (in C# or VB.net), with this you can customize how to WRobot manage pet. Sample of fightclass (default code): using System.Threading; using robotManager.Helpful; using wManager.Wow.Helpers; using Timer = robotManager.Helpful.Timer; public class Main : FightBattlePet.IFightClassPet { // Called every 1000 ms in combat public void PulseInCombat() { if (!PetBattles.ActionSelected() && !PetBattles.IsWaitingOnOpponent()) { if (!string.IsNullOrWhiteSpace(FightBattlePet.LuaCode)) { Lua.LuaDoString(FightBattlePet.LuaCode); Thread.Sleep(Usefuls.Latency + 300); if (PetBattles.ActionSelected() || PetBattles.IsWaitingOnOpponent()) return; } if (PetBattles.IsDeadPet(PetBattles.PetFaction.Ally, PetBattles.GetActivePet(PetBattles.PetFaction.Ally))) { PetBattles.ChangeToBestPet(); return; } if (TargetTypeIsWeaknesses()) PetBattles.ChangeToBestPet(); else if (PetBattles.GetNumberUsableAbility() <= 0) PetBattles.SkipTurn(); else if (PetBattles.GetNumberUsableAbility() <= 0 && !PetBattles.ActionSelected() && !PetBattles.IsWaitingOnOpponent()) PetBattles.ChangeToBestPet(); else if (TrapUsable()) PetBattles.UseTrap(); else if (!FightBattlePet.PetBattlesDontFight) PetBattles.UseBestAbility(); } } private Timer _timerAutoOrderPet = new Timer(-1); private Timer _timerSpellRevive = new Timer(-1); // Called every 200 ms out of combat public void PulseOutOfCombat() { if (PetBattles.ConditionResurrectBattlePets) { if (!PetBattles.ReviveBattlePets()) { if (PetBattles.AllPetDead()) { ItemsManager.UseItem(86143); // Battle Pet Bandage Usefuls.WaitIsCasting(); if (PetBattles.AllPetDead() && _timerSpellRevive.IsReady) { Logging.Write("[PetBattle] Revive Battle Pets spell not ready, wait"); _timerSpellRevive = new Timer(1000 * 20); // Wait revive: /*while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore) { if (_timerSpellRevive.IsReady) { PetBattles.ReviveBattlePets(); if (!PetBattles.AllPetDead()) break; AntiAfk.Pulse(); _timerSpellRevive.Reset(); } Thread.Sleep(50); }*/ } } } } if (FightBattlePet.AutoOrderPetByLevel && _timerAutoOrderPet.IsReady) { PetBattles.AutoOrderPetInJournalByLevel(); _timerAutoOrderPet = new Timer(1000 * 60); } } private bool TargetTypeIsWeaknesses() { if (FightBattlePet.AutoChooseBestPet) { var typeEffects = PetBattles.TypeEffects.Find(effects => effects.Type == PetBattles.GetPetType(PetBattles.PetFaction.Ally, PetBattles.GetActivePet(PetBattles.PetFaction.Ally))); if (typeEffects != null) { if (typeEffects.Weak == PetBattles.GetPetType(PetBattles.PetFaction.Enemy, PetBattles.GetActivePet(PetBattles.PetFaction.Enemy))) { return true; } } } return false; } private bool TrapUsable() { bool conditionsTrap = false; if (PetBattles.IsTrapAvailable()) { if (FightBattlePet.CaptureAllPets) { conditionsTrap = true; } else if (FightBattlePet.CaptureRarePets) { var quality = PetBattles.GetBreedQuality(PetBattles.PetFaction.Enemy, PetBattles.GetActivePet(PetBattles.PetFaction.Enemy)); if (quality == PetBattles.PetQuality.Rare || quality == PetBattles.PetQuality.Legendary || quality == PetBattles.PetQuality.Epic) conditionsTrap = true; } if (FightBattlePet.CaptureIDontHavePets && conditionsTrap && PetBattles.PetJournalHavePet(PetBattles.GetPetSpeciesID(PetBattles.PetFaction.Enemy, PetBattles.GetActivePet(PetBattles.PetFaction.Enemy)))) { conditionsTrap = false; } } return conditionsTrap; } } -
Hello, Sorry for the delay, I have added support, please wait next update.
-
Hello, I have added conditions "PartyMemberNear" and "PartyMemberNearTarget". Please wait next update.
-
Hello, I have added this, wait next update
-
Hello, Check if you use good WRobot version for your wow version: Rename "WoWCircle-32.exe" to "Wow.exe". Try to check if your antivirus don't remove WRobot.exe How has say Bugreporter, no user support for private server.
-
Hello, Do you have disabled option "Attack before being attacked"?
-
Hello, Can you give me the wowhead link of the quest, npc and fishes item please.
-
ps: rien à voir avec les totems, mais j'ai également ajouté "BuffTimeLeft(..)" et "List<Aura> GetAllBuff()" (et le support de BuffTimeLeft dans l'éditeur de fightclasses)