-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, I have upgraded your subscription, you can now run old WRobot version.
-
Hello, use this plugin: using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.FarmingEvents.OnFarmSuccessful += delegate(WoWGameObject node) { Thread.Sleep(5000); }; Logging.Write("[PauseAfterGathering] Loadded."); } public void Dispose() { Logging.Write("[PauseAfterGathering] Disposed."); } public void Settings() { MessageBox.Show("[PauseAfterGathering] No settings for this plugin."); } } PauseAfterGathering.cs
-
Hello, wait next update and use code like: EventsLuaWithArgs.OnEventsLuaWithArgs += delegate(LuaEventsId id, List<string> args) { if (id == LuaEventsId.QUEST_ACCEPTED && args.Count == 2) // http://wow.gamepedia.com/Events/Q#QUEST_ACCEPTED { var title = Lua.LuaDoString<string>("local title = GetQuestLogTitle(" + args[0] + "); return title;"); Logging.WriteDebug("Quest accepted: '" + title + "' (id=" + args[1] + ")"); } else if (id == LuaEventsId.QUEST_REMOVED && args.Count == 1) // http://wow.gamepedia.com/Events/Q#QUEST_REMOVED { Logging.WriteDebug("Quest removed: id=" + args[0]); } // ... };
-
Hello, like this: bool isDead = Lua.LuaDoString<bool>("return UnitIsDead('target')"); string spellName = Lua.LuaDoString<string>("local name, rank, icon, castingTime, minRange, maxRange, spellID = GetSpellInfo(1); return name;"); // only in next wrobot version List<string> returnGetSpellInfo = Lua.LuaDoString<List<string>>("return GetSpellInfo(1);"); string spellName2 = returnGetSpellInfo[0];
-
Hello, use condition "C Sharp Code": wManager.Wow.ObjectManager.ObjectManager.Target.Name != "Slagmaw" or to avoid to use spell on all elites: !wManager.Wow.ObjectManager.ObjectManager.Target.IsElite
-
Hello, please post your suggestion here http://wrobot.eu/bugtracker/, if you can give more informations.
-
Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
Problem with fly masters
Droidz replied to avesatan's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, try to remove folder "WRobot\Data\Meshes\Kalimdor" and file "WRobot\Settings\TaxiNodes.xml" For skinning problem, in advanced general setting try to increment min/max latency -
quester Legion quester manual profile programming
Droidz replied to Xolem's topic in Profiles and Requests
Hello, Add wait time after cast, and try to turnin manually the quest with runcode step: if (wManager.Wow.Helpers.Quest.HasQuest(40643) && wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(8001, -2680, 512), 101064)) { wManager.Wow.Helpers.Quest.CompleteQuest(); } -
Changed Status to Not a Bug
-
Sur le screenshot l'on peut voir que vous avez un addon "TradeSkillMaster" activé.
-
How can I disable ALL movement from the bot?
Droidz replied to Brian's topic in Developers assistance
Hello, Use WRobot events: wManager.Events.MovementEvents.OnMovementPulse += (points, cancelable) => { cancelable.Cancel = true; }; wManager.Events.MovementEvents.OnMoveToPulse += (point, cancelable) => { cancelable.Cancel = true; }; (run this code one time by session) -
Hello, you can use c# code: wManager.Wow.Helpers.Usefuls.SelectGossipOption(int gossipOption); wManager.Wow.Helpers.Usefuls.SelectGossipOption(GossipOptionsType gossipOption); For you second question try this code: var unit = wManager.Wow.ObjectManager.ObjectManager.Target; if (unit.UnitNPCFlags.HasFlag(wManager.Wow.Enums.UnitNPCFlags.Gossip)) { // ... }
-
Bonjour, Vous obtenez ce problème uniquement avec ce vendeur? Avez vous essayé de désactiver vos addons wow?
-
You can create your own healer fightclass with few spells quicly http://wrobot.eu/forums/topic/853-monk-heals/?do=findComment&comment=4726
-
Hello, like this: http://wrobot.eu/forums/topic/853-monk-heals/?do=findComment&comment=4726 and you need to put party leader the character with grinder bot attached.
-
Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (install required software) If you problem is not resolved, can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
How can I get processID of attached wow.exe ?
Droidz replied to Brian's topic in Developers assistance
Hello, Run this code wManager.DevelopmentTools.OutPutCSharp = wManager.Wow.Memory.WowMemory.Memory.ProcessId.ToString(); In tab "Tools" > "Development Tools" > past code and click on button "C# (ret value in wManager.DevelopmentTools.OutPutCSharp)" -
Hello, you can found old legion verison here: http://wrobot.eu/forums/topic/2018-wrobot-old-versions/
-
Hello, if you get information in "NPC quest giver editor" window, it is in-game info (your wow client version). If it is not in-game info, WRobot use wowhead.
-
Multiple sessions not working
Droidz replied to kikod4mn's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, so you use same ip? can you share your log file please -
Quest rewards.
Droidz replied to Feaver's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, in quest "Base settings" you have option "Reward Item"