Is there any way to influence the order plugins get loaded in a server? From my understanding currently they load in alphabetical order or?
To explain the reason behind the question, we have a messaging plugin that sends messages to players when they spawn (player spawn event) and we want to add a plugin that should again send a message to players on login (again spawn event) but I want that plugin to always send the messages after the other and not before as it currently does. 1st plugin named ServerTools, second plugin named MailingSystem. (so M sends messages before S when I want S to send the messages before M)
We thought of adding a short timer to the second plugin's messages to make that happen but we are looking for a smarter solution that that