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!

need somebody to edit this plugin

Change this line

Code:
 private readonly WaitTimer _Timer = WaitTimer.ThirtySeconds;

If I'm not mistaken.
 
Change this line

Code:
 private readonly WaitTimer _Timer = WaitTimer.ThirtySeconds;

If I'm not mistaken.


yeah i tried that, but whenever i put FiftySeconds or OneMinute etc it doesn't work anymore after that. i keep having to revert it to 30 second intervals. :(
 
Why do you not do something like this

Code:
private readonly WaitTimer _firstCannonTargetTimer = new WaitTimer(TimeSpan.FromSeconds(5));
 
The only valid values for using that approach are OneSecond, FiveSeconds, TenSeconds and ThirtySeconds.

You would need to replace this with something similar to the below:

Code:
private readonly WaitTimer _Timer = new WaitTimer(new TimeSpan(0, 1, 30));

In this instance it will use 1 minute 30 seconds as an example (the 0 is hours).

-Alpha
 
Back
Top