Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Download profiles and fight classes for TBC
  2. I have added WRobot TBC: http://wrobot.eu/files/file/2-wrobot-official/ if someone can test it.
  3. I don't found how to get quests completed list (Wow 2.4.3 has not function similary at GetQuestsCompleted()), I'll release without quest support (I'll try to bypass this problem after, but without GetQuestsCompleted() , the quester product will be less easy to use). I'll start to work on Battleground bot.
  4. I continue to work on it, I need to finish to correct Quests and PVP API. I think release the beta version this weekend or during next week.
  5. I reported again the false positive at microsoft (you can report this here: https://www.microsoft.com/en-us/security/portal/submission/submit.aspx# )
  6. hello, http://wrobot.eu/bugtracker/profile-generators-possibility-to-override-min-range-of-45-example-useitemon-r411/?do=findComment&comment=2844
  7. Hello, I'll fix it, I comeback here when is fixed.
  8. Hello, if your problem is not resolved don't forget to share your log file .
  9. Hello, i'll fix it. I comeback here when is done
  10. Hello, to ignore fight, you can run this c# code before pulse quest: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088 To use item on hostile npc, you can also use this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12204 What version of Wow do you play?
  11. Hello, yes after farm WRobot add spot to blacklist for 120 secondes if you use flying mount, or 60 seconde if you use ground mount. You can use this plugin to clear automaticly blakclist (blacklist is clear all 2 sec by default, replace "2" by "60" line 16 if you want clear all 60 secondes): http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
  12. For the moment I have not found two WRobot features, "Aura.Owner" (I ignore if in BC npc can get several time the same buff casted by several player) and "WoWUnit.CastingCanInterrupt".
  13. Vous pouvez appuyer sur une touche avec ce code c#: robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Escape); (liste des touches: https://msdn.microsoft.com/fr-fr/library/system.windows.forms.keys(v=vs.110).aspx )
  14. Because I get many request, I will try to add TBC support at WRobot (I have not release date for the moment, but I progressing well)
  15. Pour la quête http://www.wowhead.com/quest=28812 rajoute dans quest order (juste après l'étape pickup) une step (etape) de type run lua code avec le code: RunMacroText("/reload") (c'est un bug de wow qui dure depuis un moment)
  16. Bonjour, votre code est faux (le "return true;" est en trop), voila un exemple simple pour cette quête (qui fonctionne): Corruption.xml Corruption.xml
  17. After "var msg = chat.ReadMsg();" (line 34) you can add this line: Logging.Write("Channel = " + ((int)msg.Channel) + " (message: " + msg.Msg + ")"); (this line writte in log tab the channel number, when you get channel number, you can remplace 49 in "(int)msg.Channel == 49" by your channel number)
  18. Hello, very good job.
  19. Hello, you want it in quester profile? If yes For the portals you can look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12213 (add c# code to cast mage portal) For taxi you can look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12205 But currently no way to take boat/zeppelin.
  20. Droidz

    Profil raid

    Hello, http://wrobot.eu/forums/topic/1925-sample-dungeon-profile/
  21. Hello, To disable detection when player is attacked, use this c# code: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/#comment-13088 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...".
  22. I have fixed code (I use ObjectManager.GetObjectWoWPlayer() instead Party.GetPartyHomeAndInstance() to be sure not to miss tank). Home is for normal group, Instance is for raid group (http://wow.gamepedia.com/API_GetNumPartyMembers and http://wow.gamepedia.com/API_GetNumRaidMembers ).
  23. Train spells This sample is for WoD, in this sample the profile train the spell http://www.wowhead.com/spell=2018/blacksmithing at http://www.wowhead.com/npc=514/smith-argus : TrainSpell.xml To adapt this profile at you, in "Is complete condition" quest option replace "2018" by your spell id, in "hotspots" put your trainer position and in "target entry" put your trainer entry id.
  24. On WOTLK "UnitGroupRolesAssigned" change, try this (not tested): public WoWPlayer GetPartyTank() { WoWPlayer tank = new WoWPlayer(0); var lua = @" for groupindex = 1,MAX_PARTY_MEMBERS do if (UnitInParty('party' .. groupindex)) then local isTank, isHealer, isDamage = UnitGroupRolesAssigned('party' .. groupindex); if isTank then local name = UnitName('party' .. groupindex); return name; end end end return ''; "; // Get tank name string tankName = Lua.LuaDoString<string>(lua); if (!string.IsNullOrEmpty(tankName)) { tankName = tankName.Trim().ToLower(); //foreach (var p in Party.GetPartyHomeAndInstance()) foreach (var p in ObjectManager.GetObjectWoWPlayer()) { if (p != null && p.IsValid && p.Name.Trim().ToLower() == tankName) { tank = new WoWPlayer(p.GetBaseAddress); break; } } } return tank; }
  25. Droidz

    bug quest bot

    Bonjour, ce profile data de 2013, il est possible que depuis des quêtes n'existe plus (du coup WRobot reste devant le PNJ et que la quête soit dispo (ce qui arrive jamais)). (vous pouvez désactiver le étapes ou WRobot reste bloqué avec le bouton "Profile settings (enable/di..." onglet "Product Settings").
×
×
  • Create New...