lau99116 1 Posted May 25, 2019 Share Posted May 25, 2019 After being killed by an opposing camp, I always resurrect immediately and repeat it all the time. How do I set up to release the corpse, run to the body position and wait for a few minutes to resurrect? What's more, how to wait 30 seconds for the NPC to resurrect after the death of winter grasp battlefield, instead of running to the corpse. Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/ Share on other sites More sharing options...
lau99116 1 Posted May 27, 2019 Author Share Posted May 27, 2019 Anyone can help me ? Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54063 Share on other sites More sharing options...
thxgod1 14 Posted May 27, 2019 Share Posted May 27, 2019 Its an instanced battleground right? In that case you will need to make a BG profile for that specific BG... but i cant tell for sure, since i dont use battlegrounder. its not working properly to leave it running without monitoring Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54068 Share on other sites More sharing options...
Droidz 2738 Posted May 27, 2019 Share Posted May 27, 2019 hello, try plugin like: using System.Threading; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is Resurrect || state is ResurrectBG) { Thread.Sleep(1000 * 30); } }; } public void Dispose() { } public void Settings() { } } Wait Resurrect.cs saleh 1 Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54076 Share on other sites More sharing options...
lau99116 1 Posted May 29, 2019 Author Share Posted May 29, 2019 On 5/27/2019 at 11:28 PM, thxgod1 said: Its an instanced battleground right? In that case you will need to make a BG profile for that specific BG... but i cant tell for sure, since i dont use battlegrounder. its not working properly to leave it running without monitoring This is a map that can fly to collect minerals and herbs. After being killed by the opposing faction, the soul doctor is revived. I need to wait 30 seconds to revive after being killed, not run to the corpse. saleh 1 Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54120 Share on other sites More sharing options...
lau99116 1 Posted May 29, 2019 Author Share Posted May 29, 2019 On 5/28/2019 at 1:34 AM, Droidz said: hello, try plugin like: using System.Threading; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is Resurrect || state is ResurrectBG) { Thread.Sleep(1000 * 30); } }; } public void Dispose() { } public void Settings() { } } Thank you for your answer. Can I set this up by myself and wait for how long to resurrect? Three minutes or 30 seconds, set by myself. Wait Resurrect.cs 499 B · 1 download Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54121 Share on other sites More sharing options...
Findeh 34 Posted May 30, 2019 Share Posted May 30, 2019 Thread.Sleep(1000 * 30); This is your timer. 1000ms = 1 second. Multiplied by 30 = 30 seconds. You can change it. Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54150 Share on other sites More sharing options...
TheSmokie 242 Posted May 30, 2019 Share Posted May 30, 2019 Thread.Sleep(1000 * 30); // 1000 = 1 sec / * means X aka times and 30 means the number you're times the 1000 by saleh 1 Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54151 Share on other sites More sharing options...
lau99116 1 Posted May 30, 2019 Author Share Posted May 30, 2019 Thank you for your reply. Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54166 Share on other sites More sharing options...
lau99116 1 Posted June 1, 2019 Author Share Posted June 1, 2019 On 5/28/2019 at 1:34 AM, Droidz said: hello, try plugin like: using System.Threading; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is Resurrect || state is ResurrectBG) { Thread.Sleep(1000 * 30); } }; } public void Dispose() { } public void Settings() { } } Wait Resurrect.cs 499 B · 4 downloads Could you change it to wait 30 seconds after releasing your soul? It's not about waiting 30 seconds to release your soul. Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54190 Share on other sites More sharing options...
lau99116 1 Posted June 1, 2019 Author Share Posted June 1, 2019 I explained that in winter grasp was killed, nothing needed to be done, waiting for the NPC to resurrect, just like in the battlefield, there was no need to run to the corpse. How should I set it up? Link to comment https://wrobot.eu/forums/topic/11301-wait-for-a-few-minutes-to-resurrect/#findComment-54191 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