Support for Guarded Crate pluginSuggestion

Hey there,

Love the work your plugin does. Very thankful for it... could I suggest the addition of this free Umod plugin please?

https://umod.org/plugins/guarded-crate

Thank you

Well, I don't mind to add this, but that plugin has no hooks to listen to, so first you should suggest to @Bazz3l add hooks, like this, for example:
            public void StartEvent(Vector3 position)
            {
                _position = position;

                SpawnCrate();
                RefillLoot();
                StartSpawnRoutine();
                StartDespawnTimer();

                Interface.CallHook("OnCrateEventStarted", _eventSettings.EventName, position);
                Message("EventStarted", _eventSettings.EventName, GetGrid(_position), GetTime((int)_eventSettings.EventDuration));
            }

            public void StopEvent(bool completed = false)
            {
                _eventTimer?.Destroy();

                StopSpawnRoutine();
                DespawnPlane();
                DespawnMarker();
                DespawnCrate(completed);
                DespawnAI();

                _plugin?.DelEvent(this);
                Interface.CallHook("OnCrateEventEnded", _eventSettings.EventName, position);
            }​
Agreed this would be useful. SmashButtonGaming, did you ask the author to do as Monah requested?
5f32e2cccfff0.png laslo67
Agreed this would be useful. SmashButtonGaming, did you ask the author to do as Monah requested?

I did, sadly I got no response.