Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. On this image http://i.imgur.com/Xzlnjn7.png what is the button with the name "GroupLootFrame3RollButton"
  2. Hello, Right-click on WRobot.exe and then click Properties. On the Compatibility tab, select Disable Display Scaling On High DPI Settings, and then click OK: https://www.youtube.com/watch?v=0xS-UCuyq7s
  3. In advance generals settings tab "Looting and Farming options" put 999 at option "Max Units Near"
  4. Salut, dans la prochaine mise à jour: http://wrobot.eu/forums/topic/2804-gestion-du-focus/#comment-13076
  5. Hello, You can edit searches radius: in tab "General Settings" > "Advanced ..." > onglet "Looting and Farming options" > "Search Radius" To add objects at collect: Go to tab "General Settings", button advanced..., in new window go to tab "Looting and farming options" and add id of name of object in textbox "Harvest objects...".
  6. Ignore fighting back To disable detection when the character is attacked, use this c# code: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; To reactivate attack detection: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; (don't forget to reactivate it, or restart WRobot if you want use other profile/product) You can also ignore fighting back with specific mob: WoWUnit unit = new WoWUnit(0); if (unit.IsValid && !wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Contains(unit.Guid)) wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Add(unit.Guid, System.DateTime.Now + System.TimeSpan.FromMinutes(2));
  7. Wait next update, to disable detection when player is attacked, use this c# code: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; To reactive attack detection: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; (don't forget to reactive it, or restart WRobot if you want use other profile/product) To use this code, you have a lot of ways, the more easy ways is to add this on your profile like this: http://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ or you can run this code in tab "Tools" > "Dev... tools" > paste code in textbox and click on button "Run c# code...".
  8. Hello, If you want ignore when your character is attacked you cannot (or you need to create custom profile like bettersiter has said). If you want just not start attack, activate option in advanced general settings "Don't start fighting".
  9. Hello, these versions use normal WRobot license (private server license don't work). But all of these versions has not supported (it is possible that it no longer works, and if it works today it is possible that tomorrow it no longer works.
  10. Je viens de l'ajouter à l'API (attendre la prochaine mise à jour). var guid = wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid; var wowUnitObj = wManager.Wow.ObjectManager.ObjectManager.Me.FocusObj;
  11. Hello, if you can wait next update and tell me if this feature works correctly.
  12. Hello, When I'll update WRobot beta, I'll also remove trial version and free products (WRotation and Party). If you want play on Wow PTR servers, you can use WRobot stable version (currently support PTR servers). ps: If you want wrobot subscription and you do not pay, you can help the Community (sharing profiles, fightclasses, help users on the forum) and I would give you a free subscription.
  13. Salut, si ça peut t'aider regarde dans le dossier "WRobot\Profiles\Quester\Cache\", les profils XML sont convertis en c# (ça te donne des exemples). Pour ce que tu veux faire, reste dans avec un profil XML est utilise une quête de type "OverridePulseCSharpCode" (ou "FullCSharpCode" si elle est complexe) (regarde dans le dossier Cache après avoir lancé le profil pour comprendre ou est mis le code). Si tu veux je peux essayer de la coder, pour ça donne-moi le plus d'information possible.
  14. Wait few minutes I'll release update. Do not hesite to report problems with relogger (a lot of change on wow login system in this update).
  15. Hello,: http://wrobot.eu/articles/news/some-changes-r99/
  16. Salut, Pour le runcode avec wManager.wManagerSetting.CurrentSetting.ListHarvest.Ad... , le problème c'est qu'il est exécuté quand les taches de base du bot son terminé (par exemple, le bot teste si le perso est mort, s’il est mort il le fait revivre, puis il teste si y'a besoin d'aller à la ville, s’il y a quelque chose à farm, ... plus si tout est OK il exécute le profil). Tu ne peux pas changer ça, juste le contourner (par exemple si le perso va chercher les minerais avant de commencer le profil, désactiver l'option « Harvest minerals »... dans general settings et réactive l'option en c# dans le profil (dans le runcode): wManager.wManagerSetting.CurrentSetting.HarvestMinerals = true;). Dans la « Quest » "Collect Chache - Gatherer", dans "Is complete condition" met la même chose que tu as mise dans "Can condition".
  17. Droidz

    Quests in automation

    Too much information is missing in lua. To kill some mobs and pick up a few items that would work (if the areas are not far and does not contain too many caves, mountains...). But everything else would work poorly.
  18. Droidz

    Quests in automation

    Hello, Sorry but I'll not add this feature ( It will never work properly ).
  19. Can you give me button name please: http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
  20. Wait next update, selected position is now orange/red (not selected positions is orange)
×
×
  • Create New...