bobbekong 0 Posted April 13 Share Posted April 13 I want my quester profile to go specific step after character die,what command and parameter should i use ? Link to comment Share on other sites More sharing options...
Droidz 2696 Posted April 13 Share Posted April 13 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; } }; Link to comment Share on other sites More sharing options...
bobbekong 0 Posted April 13 Author Share Posted April 13 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 . Link to comment Share on other sites More sharing options...
bobbekong 0 Posted April 21 Author Share Posted April 21 BTW ,I was making a Dungeon profile .@Droidz How do I use those code ? Link to comment Share on other sites More sharing options...
Droidz 2696 Posted April 21 Share Posted April 21 You need to run this code once (before the quest or when the profile starts). Link to comment Share on other sites More sharing options...
bobbekong 0 Posted April 22 Author Share Posted April 22 纳克萨玛斯 - 单刷.xml I am using it like this , it seems work right now .but IDK if it's right or not. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now