For the price of you subscription you have less than 1 month of multisession license key https://wrobot.eu/store/product/4-wrobot-unlimited-subscription/
Hello, I have taken note.
To wait you can try this plugin Main.cs (not tested):
using wManager.Wow.ObjectManager;
public class Main : wManager.Plugin.IPlugin
{
public void Initialize()
{
wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEvents_OnPulseStuckResolver;
}
public void Dispose()
{
}
public void Settings()
{
}
WoWLocalPlayer m { get { return ObjectManager.Me; } }
private void MovementEvents_OnPulseStuckResolver(System.ComponentModel.CancelEventArgs cancelable)
{
try
{
if (m.IsStunned || m.Rooted || m.Confused || m.HaveBuff("Concussive Shot")) // complete list ...
cancelable.Cancel = true;
}
catch { }
}
}
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966
If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).