Hey guys and grills. I'm searching for someone who can create a simple plugin that makes a character idle for 30 seconds after death. The purpose of this is a bot that dies in Ashran will wait until it is ressed instead of running back to it's corpse. Thanks in advance
Would you like it to only wait 30 seconds in Ashran or do you plan to turn it on and off depending on the situation?
Apart from mimicking human behavior more, I don't see the point as it may just wait say 8 seconds and then run off for your body. I don't do any PvP so maybe I'm just being a noob
https://www.thebuddyforum.com/honorbuddy-forum/plugins/218419-plugin-wait-death.html Thread took longer than the plugin, I like things to look nice you see
Plugin isnt work. Anyone can help to fix ? using System; using Styx; using Styx.Helpers; using Styx.Common; using Styx.Plugins; using Styx.WoWInternals; using Styx.WoWInternals.WoWObjects; using Styx.TreeSharp; using Buddy.Coroutines; namespace WaitOnDeath { public class WaitOnDeath : HBPlugin { public override string Name { get { return "Wait On Death"; } } public override string Author { get { return "JBonnick"; } } public override Version Version { get { return new Version(1, 0); } } public override bool WantButton { get { return false; } } private static LocalPlayer Me { get { return StyxWoW.Me; }} public override void Pulse() { if(Me.IsGhost && Me.PvpFlagged) { Logging.Write("[WaitOnDeath Plugin] Waiting for 300 seconds"); Coroutine.Sleep(300000); } } } }