Trigger on HLL server?

Hello. I am completely new to BM, and I need to create a trigger for my HLL server. I hope there is someone who can help. What the trigger should be able to do is: When we seed our server, it should send a message to everyone joining the server when there are fewer than 50 players. They should press Y to make it disappear again. When there are 50 players on the server, it should send a new message with text, and they should press Y after reading it
9 Replies
[MIG] EOC LongBarrel
I'm unsure on the exact workings of HLL & private messages /acknowledgements, But simply you want a trigger that is Type: join Condition: all Player count = to or under 50 Action: message Player (you will have to check what the actual command is) & then just create another for 50 players up.
Abu
Abu6mo ago
It's a little more complicated than that For sending a seeding notification upon connecting, that's pretty easy - just do as described. Trigger on player join, add a player count condition, and then have it send the player a message. Do note that there is no builtin action for sending a message. Instead you have to use a Raw Command, with as command Message {{player.steamID}} Hello, we are seeding!. Sending a notification whenever seeding ends is a lot more difficult, but it can be done; - If a player joins during seeding, give them a "Seeding" flag - If a player leaves, the "Seeding" flag is removed - Add an On Player Update trigger (which triggers periodically, roughly every minute), which checks if the playercount is 50 or above and the player has the "Seeding" flag. If so, send him a message, and remove their "Seeding" flag. Triggers are cool, but you're still limited in what you can do. If you have CRCON installed, that has a dedicated seeding plugin that can do all of this much more efficiently and with more options available. @[DKB] Schneider
[DKB] Schneider
[DKB] Schneider6mo ago
Thank you very much for the help. I will try to do that on our server. Many thanks. What action should I add so that I can send the message out to the players when they enter the server? been looking for it but can't find it.
[MIG] EOC LongBarrel
As he already stated, it's raw command. He provides the required text also.
[DKB] Schneider
[DKB] Schneider6mo ago
I'm completely new to this. So I don't understand everything you write. That's why I ask several times until I understand. But where do I put the raw command?
[MIG] EOC LongBarrel
Action: raw command
[DKB] Schneider
[DKB] Schneider6mo ago
I don't have that option under: Action
[MIG] EOC LongBarrel
Guessing your not the Owner of the Organization? Your Permissions may not have the authority to do RAW Commands, Most owners deny it, cause it allows people full control of the server.