Droidz
Administrators
-
Joined
-
Last visited
-
Currently
Viewing Topic: free trial
Everything posted by Droidz
-
Last Action per toon
Hello, Is done, wait next update.
-
[WarGuard] Warden Found. May / 20 / 2015 ( User found )
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.
- Need help for the Arena Wins Custom Profile.
-
import / converse Profil of Honorbuddy/tuanha
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)
-
[Job] Correct my grammatical and spelling mistakes.
Work done, closed
-
[FISHING REQUEST] Nat Pagle Anglers?
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.
-
Can't lauch Wrobot
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?
-
Error on profile, any ideas?
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.
-
Error on profile, any ideas?
Hello, Install Visual C + + 2010 (X86) and SlimDX (4.0 X86).
- Game version incorrect
-
Is Wrobot safe from banwave?
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
Hello, If you can wait next update and tell me if problem is resolved
-
Pokerotation
Hello, Reply here:
-
Use Battle Pet Bandages
Hello, I have added this, wait next update.
-
stuck on pet with Pet Battle area is obstructed
Hello, If you can wait next update and tell me if problem is resolved.
-
Nice to have (10 wishes to xmas...or faster)
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; } }
-
How to use frostwolf war wolf ?
Hello, Sorry for the delay, I have added support, please wait next update.
- WROTATION
-
AOE heal of Absorbtion Condition for
Hello, I have added conditions "PartyMemberNear" and "PartyMemberNearTarget". Please wait next update.
-
TOTEM Suggection
Hello, I have added this, wait next update
-
Bot wont find process
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.
-
Don't fight didn't work
Hello, Do you have disabled option "Attack before being attacked"?
-
[FISHING REQUEST] Nat Pagle Anglers?
Hello, Can you give me the wowhead link of the quest, npc and fishes item please.
-
Comment gerer les totems des chamansT
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)