Hello,
Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
Hi, like that (no tested):
var center = ObjectManager.Target.Position;
var distance = 3.5;
var listPos = new List<Vector3>();
for (double angle = 0; angle < System.Math.PI * 2; angle += 0.6)
{
var p = new Vector3
{
X = (float)(center.X + distance * System.Math.Cos(angle)),
Y = (float)(center.Y + distance * System.Math.Sin(angle)),
Z = center.Z
};
listPos.Add(p);
}
Hello,
to call it try:
wManager.Wow.Helpers.MovementManager.StopMove();
wManager.Wow.Helpers.Lua.RunMacroText("/use NAME");
wManager.Wow.Helpers.Usefuls.WaitIsCasting();
To interact try:
wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(wManager.Wow.ObjectManager.ObjectManager.Me.Position, 1234);
Hello,
You can probably do it with Quester profile (or Custom profile). But you need very good knowledge of WRobot and its C# API (and Wow lua).
You haven't subscription active on your account. It is strange to need this type of profile with trial version (time limitation of trial version is too short)
Hi,
Sorry I cannot change that, I virtualized WRobot functions to hook wow, and hook opcode is very obfuscated and randomized, this cause hight cpu usages during few seconds. I cannot improve that without reducing the security.