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!

Auto Open Battlefield Box Plugins ~~


Looks good brother other than

Code:
        public override void Pulse()
        {
            Thread.Sleep(2000);
            if (!CanUse())
            {
                return;
            }

From my understanding, you really don't want to use Thread.Sleep in your pulse as it will cause loads of lag and other issues. In otherwords, this stops the plug in every single pulse for 2 seconds to try to open boxes...

My box opener works fine and it opens boxes when queuing for a BG or when Finished with a BG.
 
Looks good brother other than

Code:
        public override void Pulse()
        {
            Thread.Sleep(2000);
            if (!CanUse())
            {
                return;
            }

From my understanding, you really don't want to use Thread.Sleep in your pulse as it will cause loads of lag and other issues. In otherwords, this stops the plug in every single pulse for 2 seconds to try to open boxes...

My box opener works fine and it opens boxes when queuing for a BG or when Finished with a BG.
Fixed
 
Back
Top