CRaidController

NULLED RUST PLUGIN CRaidController 4.0.7

No permission to download
The plugin allows to define opening and closing times for raids for each day of the week, with the ability to block damage outside of those hours. The configuration is customizable with many options,



#FEATURES
  • Defined schedules raids are allowed during the day.
  • Blocks damage or execute console command outside the allowed period.
  • Displaying an UI or use CustomStatusFramework.
  • Everything is customizable, configurable with many options.
  • Protects the player if he has recently joined the server
  • Prevents raids if not enough time to play


#INFO
  • Bypass allows you to destroy if is not the raid time (only if block damage is enabled).
  • All options are optional and can be configured
  • The plugin is compatible with players languages
  • The times displayed can be configured for the players, in order to adapt to the format of their country
Code:
/craid (for open panel)

#API
Code:
        private bool API_IsRaidTime() => _mainController.currentSchedule.isRaidTime;
        private List<int> API_StartSchedule()
        {
            return new List<int>
            {
                (int)_mainController.currentSchedule.start.day,
                _mainController.currentSchedule.start.hour,
                _mainController.currentSchedule.start.minute
            };
        }
        private List<int> API_EndSchedule()
        {
            return new List<int>
            {
                (int)_mainController.currentSchedule.end.day,
                _mainController.currentSchedule.end.hour,
                _mainController.currentSchedule.end.minute
            };
        }
Author
BlackHold
First release
Last update

Ratings

0.00 star(s) 0 ratings

More downloads from

Latest Updates

  1. What's New in Version 4.0.7

    Added API Fix barricade Added cache refresh every day and fix minor bug Fix for wooden barricade...
  2. 3.2.0

    Implemented molotov cocktail support Added bypass option for player-created fireballs (disabled...
Back
Top