Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, if your problem is not resolved don't forget to share your log file .
  2. Hello, i'll fix it. I comeback here when is done
  3. 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?
  4. 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
  5. 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".
  6. 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 )
  7. 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)
  8. 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)
  9. 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
  10. 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)
  11. Hello, very good job.
  12. 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.
  13. Droidz

    Profil raid

    Hello, http://wrobot.eu/forums/topic/1925-sample-dungeon-profile/
  14. 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...".
  15. 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 ).
  16. 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.
  17. 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; }
  18. 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").
  19. Bonjour, Je suis désolé mais je ne pourrais pas résoudre ce problème (vous n'utilisez pas la dernière version de WRobot). Sauf les messages d'erreurs que vous recevez (quand WRobot essaye de ce réinscrire dans un BG), quand le BG et dispo, WRobot l'accepte?
  20. Hello, please wait next update and tell me if problem is resolved.
  21. Hello, you speak about option "Wow window position and size:"? You use last version of WRobot?
  22. Salut // On supprime les anciens points (WRobot ne supprime pas les points automatiquement): wManager.Wow.Forms.UserControlMiniMap.LandmarksMiniMap.Remove("Nom de mes points de repère"); WoWUnit unitBoss = new WoWUnit(0); //... // On ajoute un boss wManager.Wow.Forms.UserControlMiniMap.LandmarksMiniMap.Add(unitBoss.Position, "Nom de mes points de repère", System.Drawing.Color.OrangeRed, 10);
  23. Hello, use "timer" option at your healers spells (your server have probably too much latency) (by sample, if your spell is cast in 2 secondes, put in "timer" option "2500" (=2.5 secondes))
  24. Hello, do you have special char in your character name? Do you have try to reinstall WRobot in new folder? Do you have files in folder "WRobot\WRobot\Settings\"? Do you get error in your log?
  25. Droidz

    Website upgrade

    Hello, sorry I did get some problems during website upgrade but now problem is resolved. Regards.
×
×
  • Create New...