Everything posted by Droidz
-
(possibly bug) Auctioner not deleting Sale Pending messages from mailbox
Hello, are you sure that this problem was not caused by your addon or server (or an wow settings)? Message is deleted for moi.
-
Force to start at the first position seems broken
Hello, At the last step, can you try to replace "GoToStep" by "LoadProfile" (put in parameter your profile name [Dungeon] Mana Tomb.xml)
-
Getting party members to follow into instances
Hello, for the moment is not possible, I'll add it (but I ignore when). I comeback here when is done
-
Drag and Drop feature in quests order editor
Hello, Sorry, current quest creator interface cannot support it, but if one day I change the interface I would.
- Don't kill the fat one!
-
cant figure out plugins
Hello, do you use the lastest WRobot version? For install plugin: - Download it. - Move downloaded file in folder "WRobot\Plugins\". - If downloaded file is zipped unzip it (in folder plugins). - (Re)Launch WRobot. - Go to tab "Plugins" and activate plugin (you need to reactivate plugin when you change character).
-
BG join
Can you try to use this plugin: Auto Accept BG.cs (move downloaded file in folder "WRobot\Plugins\", (re)launch WRobot, go to tab "Plugins" and activate it. ps: Your problem is probably caused because you play on private server, I'll not edit WRobot code.
-
BG join
Can you try to use this plugin please: http://wrobot.eu/files/file/411-auto-accept-wow-popup-window/ Can you send me screenshot of the popup.
-
Quester EndIf and EndWhile parameters
Hello, I am not sure to understand. But, "EndIf" and "EndWhile" does not use condition (condition is in "If" and "While"). And the "End..." return to the "While" or "If" of the same color. While While If EndIf EndWhile EndWhile
-
Telling bot to start using different food/drinks
Hello, No feature for it. But, with quester profile you can force it. Add step type runcode with this c# code: wManagerSetting.CurrentSetting.FoodName = "New food name"; for water use: wManagerSetting.CurrentSetting.DrinkName = "New water name";
-
6.2.3 bot does not work in the battle pet
Hello, can you send me the used profiles please (and tell me where is start).
-
Any chance for TBC support?
Hello, sorry but I don't think release WRobot for The Burning Crusade (too many change)
-
Profiles for Cata
Hello, you can try to use Wotlk or MoP profiles (and some WoD profiles).
- Draenor Arch crashing immediately, or after a few
-
WoD Archaeology
http://wrobot.eu/forums/topic/2825-draenor-arch-crashing-immediately-or-after-a-few/
-
Problème au démarrage de WRobot
Si vous voulez pouvoir lancer WRobot normalement, vous devez installer SlimDX, si le problème n'ai pas résolu, vous pouvez essayer de changer de version de directx (dans les options de wow, sélectionner la version 9). Mais utiliser "Wrobot No DX" ne pose pas de problème.
-
[Gatherer] Advanced profile, how to change zone after level/time
No sorry, for it you can use "Relogger" program.
-
Problème au démarrage de WRobot
Bonjour, Avez-vous essayer de lancer WRobot avec le raccourci "WRobot No DX"? Avez vous essayer de désactiver votre antivirus et vos addon wow?
-
Increase max users in chatbox
Support reply: Report me if you get this problem again.
-
Increase max users in chatbox
I have contacted https://www.invisionpower.com support, they will resolve problem. If the problem is not resolved tomorow, do not hesite to report me it again.
-
Gestion du focus ?
Pour lancer un sort sur les focus: // lua id: http://wow.gamepedia.com/UnitId var intimidatingShout = new Spell("Intimidating Shout"); if (intimidatingShout.KnownSpell && intimidatingShout.IsSpellUsable)//... { intimidatingShout.Launch(intimidatingShout.CastTime > 0, true, false, "focus"); // Si vous voulez gérer manuellement le lancement utiliser: SpellManager.CastSpellByNameOn(intimidatingShout.NameInGame, "focus"); } Pour obtenir le focus (en objet "WowUnit"), ajouter cette methode dans votre code: static WoWUnit GetFocus() { uint offsetFocus = 0xEAEF10; // offset wow 6.2.3.20886 var unit = new WoWUnit(0); try { var focusGuid = wManager.Wow.Memory.WowMemory.Memory.ReadInt128(wManager.Wow.Memory.WowMemory.Memory.RebaseAddress(offsetFocus)); if (focusGuid.IsNotZero()) { var obj = ObjectManager.GetObjectByGuid(focusGuid); if (obj.Type == WoWObjectType.Player || obj.Type == WoWObjectType.Unit) unit = new WoWUnit(obj.GetBaseAddress); } } catch (Exception e) { } return unit; } Et vous pouvez utiliser le code comme ca par exemple: var focus = GetFocus(); if (focus.IsValid) { var intimidatingShout = new Spell("Intimidating Shout"); if (intimidatingShout.KnownSpell && intimidatingShout.IsSpellUsable && focus.GetDistance < intimidatingShout.MaxRange + focus.CombatReach && !focus.HaveBuff("Intimidating Shout")) { intimidatingShout.Launch(intimidatingShout.CastTime > 0, true, false, "focus"); } } PS: Je vais rajouter le focus directement dans WRobot dans les prochaines maj.
-
Increase max users in chatbox
Hello, is done (now limit is 20)
- Complete meshes for Cata / MoP
-
Changelog for 1.5.7 ?
Hello, I have not yet updated, I do it as soon as possible.
-
Do i have to add buying mount at 20lvl on 13-60 profile?
Hello, sorry but I'll not add this feature (this require a lot of change).