April 13, 20233 yr I want my quester profile to go specific step after character die,what command and parameter should i use ?
April 13, 20233 yr Hello, you should use events : robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is wManager.Wow.Bot.States.Resurrect && ObjectManager.Me.IsDead) { // you code here cancelable.Cancel = true; } };
April 13, 20233 yr Author 14 minutes ago, Droidz said: Hello, you should use events : robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is wManager.Wow.Bot.States.Resurrect && ObjectManager.Me.IsDead) { // you code here cancelable.Cancel = true; } }; Can I make it in the Easy Quests Editor ? Sorry I am really new at codes .
April 22, 20232 yr Author 纳克萨玛斯 - 单刷.xml I am using it like this , it seems work right now .but IDK if it's right or not.
Create an account or sign in to comment