-
Posts
12590 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Anyone else having issues with the WRobot shutting down
Droidz replied to drk607's topic in General assistance
Hello, Can you share your log file please: -
Hello, Sorry for the delay. Your problem is solved? I have moved mmorobot to a new server the day of your post, during transfert it is possible to get errors, but now all is done, if you problem is not resolved tell me.
-
Hello, Can you send me a log of an bugged WRobot session please: To launch wow in 32 bit: https://us.battle.net/support/en/article/how-to-toggle-32bit-mode-world-of-warcraft(but check if you use Windows administrator session and try to disable your antivirus).
-
Hello, Do you have make steps of this guide: (start to change wow directx version)
-
Hello, I have changed the MmoRobot server, I hope this has not caused inconveniences (I have tried to do the more quickly as possible). If you have a problem with the site, please let me know. Best regards, Droidz.
-
-
Sorry for the delay (I have completely forgot), I'll make sample this week.
-
use right click to start pet battle instead of left click
Droidz replied to saosaok's topic in Pet Battle assistance
Hello, Thank you for report, I'll try to fix it during next updates. -
Normally WRobot launch the spell when cooldown is up same if cooldown is reset (Do you have put 0 at "Spell Settings" > "Timer"?, spell priority is good ("spells list" order)?). And upping to the top of "spells list" the spell fire shock in your fightclass (and you can add the spell condition at frost shock "Target Buff" > "Fire Shock" > "False").
-
Pour grognement utilise ce code lua: TogglePetAutocast(7); Pour voir si il est activé/désactivé: local name, subtext, texture, isToken, isActive, autoCastAllowed, autoCastEnabled = GetPetActionInfo(7); if autoCastEnabled then print("sort actif"); else print("desactivé"); end Pour les stat du joueur regarde c'est fonction lua: http://wow.gamepedia.com/World_of_Warcraft_API#Character_Statistics_Functions
-
Oui c'est vrai je le rajouterais, il est possible de le faire avec des conditions C#: Test si il reste moins de 1000 points de vie: (wManager.Wow.ObjectManager.ObjectManager.Me.Health < 1000) Test si le nombre de points de vie perdu est supérieur à 1000: (wManager.Wow.ObjectManager.ObjectManager.Me.MaxHealth - wManager.Wow.ObjectManager.ObjectManager.Me.Health > 1000)
-
Hello, Publish your fightclass in download session to get over reports. Do not hesitate if you have more specific questions.
-
Bonjour, Rajoute la condition "Target Distance" type "Bigger" value "8".
-
Hello, try to use this lua code: RunMacroText("/targetenemy"); RunMacroText("/focus target"); RunMacroText("/stopmacro [target=focus,noexists] [noexists]"); RunMacroText("/use Devastação"); RunMacroText("/use Havoc"); RunMacroText("/focus target"); RunMacroText("/targetlasttarget");
-
Oui est non, si tu veux que WRotation gère à 100% (gestion des sorts et cibles) la heal le mieux et de créer une fightclass en c# (ou vb.net): Si tu veux créer un fightclass semi-auto (gestion des sorts uniquement) rajoute les sort de heal comme des sorts normal, désactive juste l'option des sort "Combat only" (comme condition tu mets par exemple "Target heal percent" smaller at "50", et des que tu sélectionnes un joueur en jeu le bot va lancer ce sort si la vie de la cible est inférieure à 50%).
-
Is strange, look if you haven't virus/malware on your computer (scan with your antivirus and for the malwares use program like https://www.malwarebytes.org/ )
-
In your log you get problems with pathfinder and you start on your garrison. Try to disable your antivirus/firewall (to avoid this error: [E] 20:50:46 - DownloadThread()#1: System.Net.WebException:...) and start bot out of your garrison. Reinstall also slimdx and vc++:
-
Hello, I use Chrome and no problem, do you have try to disable your antivirus?
-
Salut Pour voir si tu est en groupe dans une FightClass simple tu peux utiliser la condition "Me In Group" ou le code C#: wManager.Wow.Helpers.Party.IsInGroup() Essaye ce code (pas testé): var _killShot = new Spell("Kill Shot"); var _steadyShot = new Spell("Steady Shot"); // ... conditions pour lancer Steady Shot if (_steadyShot.KnownSpell && _steadyShot.IsSpellUsable && _steadyShot.IsDistanceGood) { _steadyShot.Launch(false, false); // stopMove = false, waitIsCast = false Thread.Sleep(700); while (ObjectManager.Me.IsCast) { if (_killShot.KnownSpell && _killShot.IsSpellUsable && _killShot.IsDistanceGood) { _killShot.Launch(false, true, true); // stopMove = false, waitIsCast = true, ignoreIfCast = true break; } Thread.Sleep(30); } } Tu as le racoursi ALT-X pour mettre en pause le bot (tu peux détecter si le bot est en pause avec ce code: robotManager.Products.Products.InPause dans ton code tu rajoute if (!Products.InPause)... Sinon tu peux utiliser lua un macro ingame
-
Hello, Do your start bot out of your fief? Can you share an bugged session please.
-
Can you send me of an bugged session please.
-
-
nothing showing up in custom profile, there is files there
Droidz replied to anemena's topic in General assistance
Hello, Do you have files in folder "WRobot\FightClass\" ? If no, try to reinstall WRobot or download fightclasses. -
Hello, Go to tab "Tools" > click on button "Create FightClass". New window appear, click on "Load Fightclass" in menu. Put in textbox (bottom/left) "Fire Nova" (without ") and click on button "Add spell...". Select "Fire Nova" in "Spells" list (normally automatically selected). In "Spell Settings" (top/right) put "True" at "AOE Spell". Now in "Spell Conditions" (bottom) select in list (above the button "Add Condition") "Unit Attack Player Near Target" and click on button "Add Condition". In condition settings (bottom/right) at "Number" put 2, at "Radius" put 10 and at "Type" select "BiggerOrEqual". Save your fightclass (button "Save Fightclass" in menu). ps: In "Spells" list (bottom/left) you can use button "up"/"down" to change spell priority.
-
Bonjour, Essaye d'utiliser comme nom de sort: Incarnation Si ça ne fonctionne pas peut tu m'envoyer le fichier log (d'une session WRobot ou tu lances la fightclass).