RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Resource icon

Auto Sheathe Weapon 1.2

No permission to download
As suggested by Macil, now player can use the command [AutoSheathe to toggle this feature.

You can enable or disable the command at the top of the script.

C#:
public static class Config
{
    public static bool SendOverheadMessage = true; // Should we send a overhead message to the player about the auto-sheathe?
    public static bool AllowPlayerToggle = true;   // Should we allow player to use a command to toggle the auto-sheathe?
}

To update, just override the old one with this.
As Macil suggested, now the system can send a local overhead message to the player. You can disable it on the Config class, at the top of the script.

C#:
public static class Config
{
    public static bool SendOverheadMessage = true; // Should we send a overhead message to the player about the auto-sheathe?
}
Top