Mutiny Community Development Notes Version 5.6 - 2024-03-08 You can now type a message in chat that starts with a slash if you start it with two slashes, example: Jim: Hey bob, what's the command to run your bot again? Bob: //bobbot (Jim sees: "Bob: /bobbot") The command /last is now a synonym for /read, /nonstop An optional argument can be passed to /last, /read, /nonstop: To read from a specific message number, use that number: "/read 17900" To read from a message relative to your current message pointer, use + or - and a number as an offset: "/read -10" (current message # -10) or "/read +20" (current message # +20) Nullspace: When you enter you get a list of who is there and what color keys they are holding, each line shown in that color. Depending on the computer/term program I was using I have occasionally found myself stuck in nullspace where ESC and CTRL+C wouldn't get me out, so I added slash commands for nullspace. Show menu: /? List users: /w Quit : /q As with anything else in nullspace your keypresses will be transmitted so others in nullspace will see you typing "/?", "/w", or "/q" but they won't see the output (menu, or users list) only you will see that. When logging off from the main menu you are no longer shown "such and such happened while you were in DND mode, do you want to read these things?" (or something to that effect) Mutant Basic changes: When editing a bot script (.bot file) all "prints" are treated as "uprint" (shows only the user running the bot not everyone in the channel). Added new functions to the Evaluate component: round(n, d) - rounds the number n to d decimal places ltrim(s$) - left-trims s$ rtrim(s$) - right-trims s$ trim(s$) - left & right trims s$ .