-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
GetIdByName strange behavior (explained)
Droidz replied to Seminko's topic in WRobot for Wow Vanilla - Help and support
Hello, it is not a bug, items names are server side, you need to have item in your bag (or request item info like when you "GetNameById) for that Wow request the item name at the server ( http://wowwiki.wikia.com/wiki/API_GetItemInfo ) -
PathFinder.Pather.FindZ(); NullReferenceException
Droidz commented on reapler's bug report in Bug Tracker
Hello, you need to call wManager.Wow.Helpers.PathFinder.GetZPosition(new Vector3(1, 2, 3)); -
Hello, in vanilla like this: var error = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0xB4DA40);
-
Use plugin like using wManager; using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { EventsLua.AttachEventLua(LuaEventsId.PLAYER_LEVEL_UP, delegate { if (ObjectManager.Me.Level >= 20 && !wManager.wManagerSetting.CurrentSetting.UseMammoth) { wManagerSetting.CurrentSetting.UseMammoth = true; wManagerSetting.CurrentSetting.Save(); } }); } public void Dispose() { } public void Settings() { } }
-
Hello, no with default features
-
Hello, if you can wait next update
-
Hello, yes and you have free trial verison to test if WRobot works on your private server
-
Movement: Follow path strafing or running backwards
Droidz replied to d3kxn's topic in Developers assistance
Sorry, I read your post to quickly, use code like: wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { var me = wManager.Wow.ObjectManager.ObjectManager.Me; if (wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && unit.IsValid && !me.IsCast && unit.IsGoodInteractDistance) // put here your conditions to running backwards { var p = robotManager.Helpful.Math.GetPosition2DOfAngleAndDistance(me.Position, robotManager.Helpful.Math.GetAngle(unit.Position, me.Position), wManager.Wow.Helpers.CustomClass.GetRange - unit.GetDistance - 3); var z = wManager.Wow.Helpers.PathFinder.GetZPosition(p); if (z != 0) { p.Z = z; wManager.Wow.Bot.Tasks.GoToTask.ToPosition(p, 3.5f, true, context => (wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)); } } }; -
How to CancelAura within C# FightClass
Droidz replied to incarceron's topic in Developers assistance
Hello, try lua code like: local name = GetSpellInfo(12345); RunMacroText("/cancelaura " .. name) (replace 12345 by your spell id)- 2 replies
-
- c sharp
- fight class
-
(and 2 more)
Tagged with:
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Movement: Follow path strafing or running backwards
Droidz replied to d3kxn's topic in Developers assistance
Hello, do you use last version of WRobot, I have try to resovled this problem -
Hello, you can increment npc seearch distance in general settings
-
Hello, you use last WRobot verison? Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
HearthstoneToGoToTown.cs for 1.12.1
Droidz replied to oste's topic in WRobot for Wow Vanilla - Help and support
Add this line (before use item): wManager.Wow.Bot.Tasks.MountTask.DismountMount(); -
Sell items before buy food/drink
Droidz replied to maukor's topic in WRobot for Wow Vanilla - Help and support
Can you send me all items name (of you bag, you can get list in tab "tools" > "dev... tools") when you get this error: -
Hello, use quest type "OverridePulseCSharpCode" with the code: if (!wManager.Wow.Helpers.ItemsManager.HasItemById(38607)) { GoToTask.ToPositionAndIntecractWithGameObject(new robotManager.Helpful.Vector3(2491.9, -5636.3, 420.6), 190584); System.Threading.Thread.Sleep(1000); } else { GoToTask.ToPosition(new robotManager.Helpful.Vector3(2491.9, -5636.3, 420.6)); wManager.Wow.Helpers.ItemsManager.UseItem(38607); MovementManager.StopMove(); System.Threading.Thread.Sleep(1000 * 11); } return true; Sample: dktest.xml
-
Update done
-
https://wrobot.eu/forums/topic/7613-update-status-patch-730-build-25480/
-
https://wrobot.eu/forums/topic/7613-update-status-patch-730-build-25480/
-
Changed Status to Not a Bug Changed Version to All
-
probleme de minage legion firestorm
Droidz replied to papsflipp's topic in WRobot for Wow Legion - Help and support
Vous pouvez également essayer cette version (pour que wrobot depop la monture avant de cliquer): using System.Threading; using System.Windows.Forms; using wManager.Wow.Bot.Tasks; using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Timer = robotManager.Helpful.Timer; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (!ObjectManager.Me.IsMounted && !ObjectManager.Me.GetMove) return; var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.GameObject) { MountTask.DismountMount(); Thread.Sleep(Usefuls.Latency + 500); var t = new Timer(2000 + Usefuls.Latency); while (!t.IsReady && (ObjectManager.Me.IsMounted || ObjectManager.Me.GetMove)) { Thread.Sleep(50); } } } catch { } }; } public void Dispose() { } public void Settings() { MessageBox.Show("No settings for this plugin."); } } -
probleme de minage legion firestorm
Droidz replied to papsflipp's topic in WRobot for Wow Legion - Help and support
using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (Var.GetVar<object>("LastTargetSkin") == (object)target) return; Var.SetVar("LastTargetSkin", target); var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.GameObject) { var u = new WoWGameObject(o.GetBaseAddress); if (u.IsValid) { new Thread(delegate () { Thread.Sleep(500 + Usefuls.Latency); Interact.InteractGameObject(u.GetBaseAddress); }).Start(); } } } catch { } }; } public void Dispose() { } public void Settings() { MessageBox.Show("No settings for this plugin."); } } C'est le double cliques pour les gameobjects -
HearthstoneToGoToTown.cs for 1.12.1
Droidz replied to oste's topic in WRobot for Wow Vanilla - Help and support
Hello, If you use this: https://wrobot.eu/forums/topic/4721-use-hearthstone-when-bags-are-full/?do=findComment&comment=21875 edit plugin with notepad and replace: Lua.LuaDoString("local itemName, _, _, _, _, _, _, _ = GetItemInfo(6948); RunMacroText('/use ' .. itemName);"); by wManager.Wow.Helpers.ItemsManager.UseItem(6948);