I converted my bot to inprocess with cleancore and it works great. Thanks!!
One question: Is Manager.LocalPlayer.Pointer correct for WowItem Use?? I changed it to the Item Pointer and it works fine.
public void Use(WoWObject target)
{
var guid = target.Guid;
if (_useItem == null)
_useItem = Helper.Magic.RegisterDelegate<UseItemDelegate>(Offsets.UseItem);
_useItem(Manager.LocalPlayer.Pointer, ref guid, 0);
}
-counted