Shortly after publishing the TalToOrekPlugin plugin, I thought it would be a good idea to complement it with this one. Basically, if you're in the menu and someone in the group types a certain word or phrase (it's supposed to be the player who stayed in town to talk to Orek), the plugin will automatically press the resume game button. It also includes the option to "force" you to start the game automatically if you set EnableAutoStart to true (in this case, you'll be the group leader, and everyone will be in the menu). The activation words are configurable and are different for the two actions (ValidMsgToCome for Resume and ValidMsgToStart for Start).
Download => Plugins\Ez\autoResumeGame.cs
Code:
Hud.RunOnPlugin<Ez.autoResumeGame>(plugin =>
{
plugin.Enabled = true; // enable or disable the plugin
plugin.ValidMsgToCome = new string[] {"+", "++", "come", "join"}; // Valid messages to press the continue game button
plugin.ValidMsgToStart = new string[] {"start", "go"}; // Valid messages to press the start game button (when you are the leader)
plugin.EnableAutoStart = false; // enable or disable autostart (when you are the leader)
} );
This plugin is designed for TurboHud Free users.
It's automation, use it at your own risk.
I close the thread to avoid bot posts