• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Plugin to wait 30 seconds after dying

    Discussion in 'Requests' started by Dimsal, Jun 16, 2015.

    1. Dimsal

      Dimsal New Member

      Joined:
      Oct 2, 2011
      Messages:
      120
      Likes Received:
      1
      Trophy Points:
      0
      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 :)
       
    2. jbonnick

      jbonnick New Member

      Joined:
      Jun 10, 2015
      Messages:
      4
      Likes Received:
      1
      Trophy Points:
      0
      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?
       
    3. nooblet

      nooblet Active Member

      Joined:
      May 4, 2012
      Messages:
      1,419
      Likes Received:
      12
      Trophy Points:
      38
      Would be nice if it could be randomized between say 5 and 30 seconds.
       
    4. jbonnick

      jbonnick New Member

      Joined:
      Jun 10, 2015
      Messages:
      4
      Likes Received:
      1
      Trophy Points:
      0
      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:
       
    5. jbonnick

      jbonnick New Member

      Joined:
      Jun 10, 2015
      Messages:
      4
      Likes Received:
      1
      Trophy Points:
      0
      Dimsal likes this.
    6. Dimsal

      Dimsal New Member

      Joined:
      Oct 2, 2011
      Messages:
      120
      Likes Received:
      1
      Trophy Points:
      0
      Amazing, thank you so much!
       
    7. Reviir

      Reviir Active Member Buddy Store Developer

      Joined:
      Mar 10, 2010
      Messages:
      1,919
      Likes Received:
      13
      Trophy Points:
      38
      This isbetteracomplished at the profile level honestly but working on a new verstion of this atm
       
    8. soulreaver

      soulreaver Member

      Joined:
      Aug 17, 2013
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      6
      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);
      }
      }
      }
      }
       

    Share This Page