What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Plugin to wait 30 seconds after dying

Dimsal

New Member
Joined
Oct 2, 2011
Messages
120
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?
 
Would be nice if it could be randomized between say 5 and 30 seconds.
 
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 :confused:
 
This isbetteracomplished at the profile level honestly but working on a new verstion of this atm
 
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);
}
}
}
}
 
Back
Top