Skip to content

v1.0.7

Compare
Choose a tag to compare
@HerrMagiic HerrMagiic released this 29 Dec 16:29
· 132 commits to main since this release
6c63b94

Changes:

  1. File Renaming:

    • Renamed Commands.json to Commands.example.json to prevent accidental replacement of the original file on the server.
  2. Command Duplication Check:

    • Introduced a new feature to check for duplicated commands, ensuring a more streamlined and error-free experience.
  3. Bug Fixes:

    • MessageCenter Issue:

      • Resolved an issue where MessageCenter was not functioning correctly. Please refer to the updated Commands.example.json for any necessary adjustments.
    • SteamID Error:

      • Fixed a SteamID error that was causing issues. Users should no longer encounter this issue after updating.
  4. Enhancements:

    • Flexible Message Format:
      • Messages can now be defined as either an array or a string, providing greater flexibility in message handling.

How to Upgrade:

  • If you are using the previous version, follow these steps to upgrade:
    1. Check the Commands.example.json for any adjustments related to the MessageCenter fix.
[
   {
       "Title": "Center Message with color",
       "Description": "Center Message with color",
       "Command": "colorcenter",
       "CenterElement": {
           "CenterMessage": "<font color='#00ff00'>Cool color here</font>",
           "CenterMessageTime": 5
       },
       "PrintTo": 2
   },
--------> TO
   {
       "Title": "Center Message with color",
       "Description": "Center Message with color",
       "Command": "colorcenter",
       "CenterMessage": {
           "Message": "<font color='#00ff00'>Cool color here</font>",
           "Time": 5
       },
       "PrintTo": 2
   }
]

Thank you for your continued support! If you encounter any issues or have questions, please feel free to open an issue on GitHub.