Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, add "Repair" in your NPC DB (tab 'tools').
  2. I'll fix it in next update
  3. Hello, Use "csharp" conditon ObjectManager.Me.InsanityPercentage >= 10 (replace 10 by insanity required) In the next WRobot update, use conditon "Insanity" (for the moment this conditon is bugged).
  4. Droidz

    Fight Class

    Bonjour, il faut déplacer les fightclasses télécharger dans le dossier "WRobot\FightClass\".
  5. In CastSpellByNameOn you need to put Lua Unit ID (http://wow.gamepedia.com/UnitId ) SpellManager.CastSpellByNameOn(spellName, luaUnitId)
  6. Hello, Try to run wow, apply your settings and exit wow by normal way (game menu > exit game). Normally now wow settings is saved when you relaunch wow. ("reloger" kill wow process, and wow seem save settings when you click on game menu > exit game)
  7. Other same (not tested): public enum GroupRoles { NONE, TANK, HEALER, DAMAGER } public static List<WoWPlayer> GetMembersByRoles(GroupRoles role) { var r = new List<WoWPlayer>(); var lua = @"local retMembers = ''; for groupindex = 1,GetNumGroupMembers() do if IsInRaid() then local role = UnitGroupRolesAssigned('raid' .. groupindex); if role == '"+ role + @"' then local guid = UnitGUID('raid' .. groupindex); retMembers = retMembers .. guid .. ';'; end elseif IsInGroup() then local role = UnitGroupRolesAssigned('party' .. groupindex) if role == '" + role + @"' then local guid = UnitGUID('party' .. groupindex); retMembers = retMembers .. guid .. ';'; end end end return retMembers; "; var val = Lua.LuaDoString<string>(lua); if (string.IsNullOrWhiteSpace(val)) return r; // no tank var membersGUID = val.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries); if (membersGUID.Length <= 0) return r; foreach (var p in Party.GetPartyHomeAndInstance()) { if (!p.IsValid) continue; foreach (var guid in membersGUID) { if (string.IsNullOrWhiteSpace(guid)) continue; if (p.Guid128.ToString().ToLower() == guid.Trim().ToLower()) r.Add(new WoWPlayer(p.GetBaseAddress)); } } return r; }
  8. I have added WowUnit.Guid128 , you can compare it with http://wow.gamepedia.com/API_UnitGUID. Sample (not tested) (work in wrobot for wod and legion): public static List<WoWPlayer> GetTanks() { var r = new List<WoWPlayer>(); var lua = @"local partyTanks = ''; for groupindex = 1,GetNumGroupMembers() do if IsInRaid() then local role = UnitGroupRolesAssigned('raid' .. groupindex); if role == 'TANK' then local guid = UnitGUID('raid' .. groupindex); partyTanks = partyTanks .. guid .. ';'; end elseif IsInGroup() then local role = UnitGroupRolesAssigned('party' .. groupindex) if role == 'TANK' then local guid = UnitGUID('party' .. groupindex); partyTanks = partyTanks .. guid .. ';'; end end end return partyTanks; "; var val = Lua.LuaDoString<string>(lua); if (string.IsNullOrWhiteSpace(val)) return r; // no tank var tanksGUID = val.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries); if (tanksGUID.Length <= 0) return r; foreach (var p in Party.GetPartyHomeAndInstance()) { if (!p.IsValid) continue; foreach (var guid in tanksGUID) { if (string.IsNullOrWhiteSpace(guid)) continue; if (p.Guid128.ToString().ToLower() == guid.Trim().ToLower()) r.Add(new WoWPlayer(p.GetBaseAddress)); } } return r; }
  9. Hello, you get this problem since legion prepatch or before?
  10. Wrobot is now updated :)
  11. WRobot support now wow 7.0.3.22289 (launch WRobot and accept update)
  12. It is very small update, WRobot was updated itself. Try to use spell id: http://wrobot.eu/bugtracker/feral-casting-healing-touch-even-when-predatory-swiftness-is-not-present-r468/#comment-3141
  13. Try to close TeamViewer (process and service), and try to change directx version in game (don't forget to restart wow).
  14. Hello, do you keep wrobot window in background (or foreground, but not minimized)? Do you get this problem without fightclass?
  15. Hello, only on WRobot for private server, not trial version for WRobot for official wow server.
  16. Hello, for gatherer and grinder profiles, I cannot make more easy to use creator. For create the quests and fightclasses, if you don't like creator you can use c# or vb.net ps: I recommand also to use radar3d (tab "Map")
  17. De rien, dans la nouvel mise à jour j'ai rajouté la condition "Astral Power" pour éviter les confusions.
  18. Bonjour, utiliser "Eclipse"
  19. WRobot seem detect this passive buff http://www.wowhead.com/spell=16974/predatory-swiftness, but you want check this spell: http://www.wowhead.com/spell=69369/predatory-swiftness Try this condition: If this don't works, try to add "C Sharp Code" condition with value: wManager.Wow.ObjectManager.ObjectManager.Me.HaveBuff(69369)
  20. Hello, are you sure that this problem is not caused by wow update (classes change)?
  21. Hello, thank you. Problem resolved, if you can wait next update.
  22. Hello, I'll update WRobot for the wow hotfix. EDIT: Build 22267 is now supported by WRobot (launch WRobot and accept update).
  23. Hello, http://wrobot.eu/articles/news/wrobot-for-wow-legion-pre-expansion-patch-available-r102/
  24. Hello, WRobot support now Wow Legion pre-expansion patch (7.0.3.22248). To get more info about Wow Legion pre-patch: Go here To get more info about WRobot update: Go here You can reports bug here. If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can comeback to WRobot for WoD, for this launch "Updater.exe" (in your WRobot folder), in "Product" select "WRobot for ... Warlords of Draenor" and click on "Install or Upgrade") (if you cannot found WoD product, download again WRobot). Best regards, Droidz.
  25. Hello, Reports here all hot bugs appear with WRobot for Wow 7.0.3 (for others bugs/suggestion please use bug tracker). (Don't forget to share log file here) More info about update here.
×
×
  • Create New...