-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
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)
-
J'ai rajouté dans la prochaine mise à jours deux fonctions: var timeLeftMs = wManager.Wow.Helpers.Usefuls.TotemTimeLeft(wManager.Wow.Enums.TotemType.Water); bool totemExist = wManager.Wow.Helpers.Usefuls.TotemExist(wManager.Wow.Enums.TotemType.Earth); Je vais également rajouter des conditions dans l'éditeur de fightclasses. PS J’ai fait beaucoup de changement, et beaucoup de changement sont à venir dans le code avant la prochaine mise à jour, donc elle ne sera pas dispo avant la fin de la semaine prochaine, et probablement en version bêta.
-
Possibilité de "cueillir" les cadavres d'arbres
Droidz replied to PierreDeRosette's topic in Français
Je viens de jeter un coup d'oeil, il suffit d'activer l'option de WRobot "Skin Mobs" (les PNJ depecables/minables/cueillables ont le même flag, le problème et que cette option peut faire perdre un peu de temps vu que le bot va essayer de dépecer un PNJ dépeucable, de miner un PNJ minable et cueillir un npc cueillable même s’il n'a pas les compétences) (je vais renommer cette option). -
Possibilité de "cueillir" les cadavres d'arbres
Droidz replied to PierreDeRosette's topic in Français
Salut, Je ne connais pas ces bestioles, peux-tu me donner les liens wowhead (ou leurs id) d'une ou deux bestioles cueillables. -
Je viens d'essayer une vingtaine de fois (de toutes les façons possible) et je n'ai pas pu reproduire ce problème. Si tu pouvais vérifier dans le gestionnaire de tâche que tu n'as pas deux processus WRobot de lancer quand tu as "in use", je n'ai aucune idée d'où peut venir le problème. Si jamais ça m'arrive et que je parviens à trouver l'origine, je reviendrais sur ce poste.
-
Hello, Mmorobot's huge discount subscription promotion is going on now, but only for a limited time! Get 20% off all new subscriptions with the coupon code 2015DISCOUNT (ends May 10th, 2015). To get 20% off your subscription: Got to our store.Select the subscription you want and click the "Add to cart" button.Click the "Checkout" button.Click on "I have a coupon to use", enter 2015DISCOUNT and then click the "Apply" button.Click the "Confirm My Order" button.Don't miss out, your 20% off discount code will only work for a short time! Get your bot started and have a great day! Droidz
-
Hello, Mmorobot's huge discount subscription promotion is going on now, but only for a limited time! Get 20% off all new subscriptions with the coupon code 2015DISCOUNT (ends May 10th, 2015). To get 20% off your subscription: Got to our store. Select the subscription you want and click the "Add to cart" button. Click the "Checkout" button. Click on "I have a coupon to use", enter 2015DISCOUNT and then click the "Apply" button. Click the "Confirm My Order" button. Don't miss out, your 20% off discount code will only work for a short time! Get your bot started and have a great day! Droidz
-
Hello, Can you share full log file please. Can you try to lower multipull range.