Jump to content

Droidz

Administrators
  • Posts

    12579
  • Joined

  • Last visited

Everything posted by Droidz

  1. Try with this plugin Ressurection on Spirit Healer.cs (move downloaded file in folder "WRobot\Plugins\", (re)launch WRobot, go to tab "Plugins" and activate it. ).
  2. If you can wait next update and tell me if problem is resolved.
  3. In xml fightclass, you can use "C Sharp Code" condtion, in value put: If you want check if buff casted by your character is in target: wManager.Wow.ObjectManager.ObjectManager.Target.GetAllBuff().Any(b => b.IsValid() && b.Owner == wManager.Wow.ObjectManager.ObjectManager.Me.Guid && b.SpellId == 123456) (replace 123456 by your spell id).
  4. Bonjour, pouvez vous me donner le nom du bouton (ou il y a écrit "Envoyer moi au bastion...") ( http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447 Coller le code dans le chat wow, mettre le curseur de la souri sur le bouton et appuyer sur la touche entrer, le nom du bouton devrait s'afficher dans le chat wow).
  5. If you use c# code look this: http://wrobot.eu/forums/topic/2874-bug-in-currenttargethavebuff84617/?do=findComment&comment=13224
  6. Hello, like here: http://wrobot.eu/forums/topic/2866-targetbuffcastedbyme-335-servers-anyone-who-uses-this-please-look-at/#comment-13188 WRobot (and lua) retrun the first buff in the list. In C# code you can fix this problem with this code: if (wManager.Wow.ObjectManager.ObjectManager.Target.IsValid) { var buffs = wManager.Wow.ObjectManager.ObjectManager.Target.GetAllBuff(); var guidPlayer = wManager.Wow.ObjectManager.ObjectManager.Me.Guid; foreach (var buff in buffs) { if (buff.Owner == guidPlayer && buff.SpellId == 84617) { var buffTimeLeft = buff.TimeLeft; // work here... } } }
  7. reply here: http://wrobot.eu/forums/topic/2866-targetbuffcastedbyme-335-servers-anyone-who-uses-this-please-look-at/#comment-13188
  8. Hello, can you send me screenshot of your current regen settings please. Do you use last WRobot version?
  9. Hello, can you give me the name of the button (Return me to life): http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
  10. Do you have try to use lua ( http://wow.gamepedia.com/World_of_Warcraft_API )?
  11. Do you get errors (or debug message about flightmaster) in your log?
  12. Droidz

    bug Version

    Bonjour, Vous utilisez la dernière version de WRobot?
  13. Hello, sorry I don't accept "WebMoney".
  14. Hello, I tried and seem works fine, the problem is probably caused by your server. You can get list of taget buffs in tab tools > dev... tools > memory info... (this contain owner buff). EDIT: I think I have found problem, i'll fix it in next updates.
  15. Can you try again with this file please: GroupLoot Wotlk.cs
  16. Droidz

    Crash

    Hello, try to remove folder "WRobot\Data\Meshes\"
  17. Hello, try to remove folder "WRobot\Data\Meshes"
  18. Hello, you need to use http://wow.gamepedia.com/API_RunMacroText like this: RunMacroText('/cast !shoot')
  19. Hello, like this: var r = Lua.LuaDoString<List<string>>( string.Format(@"local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, canStealOrPurge, shouldConsolidate, spellId, canApplyAura, isBossDebuff, isCastByPlayer = UnitAura('player', 'BUFF_NAME'); return name .. '{0}' .. rank .. '{0}' .. icon;", Lua.ListSeparator)); if (r != null && r.Count == 3) { var name = r[0]; var rank = r[1]; var icon = r[2]; }
  20. Hello, what product do you use?
  21. Hello, do you have try to use spell condition "Is Spell Overlayed"?
  22. Hello, Yes you can edit file "WRobot\Settings\TaxiNodes.xml" or use "Taxi database" in tab "Tools". But it is hard, the best way if you want add flightmaster is to start bot near flightmaster.
  23. Hello, try to launch WRobot with the shortcut "WRobot No DX". If this don't works, read all this steps: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (if problem is not resolved, please share your log file please).
  24. Hello private Spell killingSpree; //... var timeLeftMs = wManager.Wow.Helpers.SpellManager.GetSpellCooldownTimeLeftBySpellName(killingSpree.Name); or private Spell killingSpree; //... var timeLeftMs = wManager.Wow.Helpers.SpellManager.GetSpellCooldownTimeLeft(killingSpree.NameInGame); (method "ObjectManager.Me.CooldownTimeLeft(string spellName, bool isSpellNameInGame = false);" bug in this wrobot version)
×
×
  • Create New...