Jump to content

Droidz

Administrators
  • Posts

    12590
  • Joined

  • Last visited

Everything posted by Droidz

  1. http://wrobot.eu/forums/topic/2825-draenor-arch-crashing-immediately-or-after-a-few/
  2. Si vous voulez pouvoir lancer WRobot normalement, vous devez installer SlimDX, si le problème n'ai pas résolu, vous pouvez essayer de changer de version de directx (dans les options de wow, sélectionner la version 9). Mais utiliser "Wrobot No DX" ne pose pas de problème.
  3. No sorry, for it you can use "Relogger" program.
  4. Bonjour, Avez-vous essayer de lancer WRobot avec le raccourci "WRobot No DX"? Avez vous essayer de désactiver votre antivirus et vos addon wow?
  5. Support reply: Report me if you get this problem again.
  6. I have contacted https://www.invisionpower.com support, they will resolve problem. If the problem is not resolved tomorow, do not hesite to report me it again.
  7. Pour lancer un sort sur les focus: // lua id: http://wow.gamepedia.com/UnitId var intimidatingShout = new Spell("Intimidating Shout"); if (intimidatingShout.KnownSpell && intimidatingShout.IsSpellUsable)//... { intimidatingShout.Launch(intimidatingShout.CastTime > 0, true, false, "focus"); // Si vous voulez gérer manuellement le lancement utiliser: SpellManager.CastSpellByNameOn(intimidatingShout.NameInGame, "focus"); } Pour obtenir le focus (en objet "WowUnit"), ajouter cette methode dans votre code: static WoWUnit GetFocus() { uint offsetFocus = 0xEAEF10; // offset wow 6.2.3.20886 var unit = new WoWUnit(0); try { var focusGuid = wManager.Wow.Memory.WowMemory.Memory.ReadInt128(wManager.Wow.Memory.WowMemory.Memory.RebaseAddress(offsetFocus)); if (focusGuid.IsNotZero()) { var obj = ObjectManager.GetObjectByGuid(focusGuid); if (obj.Type == WoWObjectType.Player || obj.Type == WoWObjectType.Unit) unit = new WoWUnit(obj.GetBaseAddress); } } catch (Exception e) { } return unit; } Et vous pouvez utiliser le code comme ca par exemple: var focus = GetFocus(); if (focus.IsValid) { var intimidatingShout = new Spell("Intimidating Shout"); if (intimidatingShout.KnownSpell && intimidatingShout.IsSpellUsable && focus.GetDistance < intimidatingShout.MaxRange + focus.CombatReach && !focus.HaveBuff("Intimidating Shout")) { intimidatingShout.Launch(intimidatingShout.CastTime > 0, true, false, "focus"); } } PS: Je vais rajouter le focus directement dans WRobot dans les prochaines maj.
  8. Hello, is done (now limit is 20)
  9. Hello, WoD (offical server): http://download.wrobot.eu/wrobot/wod/meshes.zip MoP: http://download.wrobot.eu/wrobotmop/meshes/meshes.zip Cata: http://download.wrobot.eu/wrobotcata/meshes/meshes.zip Wotlk: http://download.wrobot.eu/wrobotwotlk/meshes/meshes.zip
  10. Hello, I have not yet updated, I do it as soon as possible.
  11. Hello, sorry but I'll not add this feature (this require a lot of change).
  12. Hello, can you share your log file please.
  13. Edit with notepad and replace 109167 by the id of item, and 3000 by the cooldown in ms.
  14. Hello, what version of the game do you use? Do you use wow addon?(if yes try to disable it)
  15. Hi, Good config, you have the same CPU as me. And the SSD compared to the old HDD it is
  16. Hello, Fightclasses for WoD are here: http://wrobot.eu/files/category/10-death-knight/ (you can also found DK fightclasses in pack http://wrobot.eu/files/category/28-packs/)
  17. Reply by private message
  18. Hello, sorry no (you can use option stop bot if player near, but it is not same result).
  19. Hello, I am not sure to understand correclty your ask, but WRobot is updated when official wow server is updated, your current subscription (license key) will be compatible with the next version of wrobot.
  20. Hello, Do you get any error in you log files? (folder "Logs")?
  21. Ok, message sent at trendmicro ( http://www.trendmicro.com/us/about-us/detection-reevaluation/ )
  22. Try to update TrendMicro. If you play on official server try to download preinstalled version: http://download.wrobot.eu/wrobot/tmp/WRobotPack.zip Virus report: https://www.virustotal.com/en/url/b308269c71380ce9c6e14e6e894fe03888063f9fb7ec09fb1c3d8d4191e5e040/analysis/1457024133/ https://www.virustotal.com/en/file/d092f5233dc888e3df2c12e445566e7beda1d741b953b498c765160590c55b72/analysis/1457002028/ ps: link to robotManager.dll: http://download.wrobot.eu/wrobot/bin/Bin/robotManager.dll
  23. Hello, Do you have try launch "Update.exe" and try to update or reinstall wrobot?
  24. Droidz

    Some changes

    J'ai répondu a votre mail. Merci de m'y répondre avec les informations demandés
  25. Droidz

    Some changes

    Bonjour, les clés de licences sont automatiquement disponibles après achat à cette adresse: http://wrobot.eu/clients/purchases/
×
×
  • Create New...