Encoder / Decoder This encoder decoder allows you to "encode" phrases into a string of numbers! You can use this to add save codes, more cloud variable uses, and more into your games. It does not have much code, and is case-sensitive! If you decide to use this to make a chat, make sure it follows Scratch's guidelines. This post lists what rules must be followed when making cloud chats. https://scratch.mit.edu/discuss/topic/357609/
Please give credit if you use this! It was very hard to make. If you decide to use this, backpack the entire "SCRIPTS" sprite. Do not change or reorder any existing costumes in the sprite, and if you need to add any more costumes, make sure that they are after all of the existing costumes in the costume bar. Thumbnail made using Photopea How to use To encode a phrase, just run the encode () custom block. The phrase will be converted to a bunch of numbers, which you will be able to find in the variable called "encoded". To decode, type (or copy paste) the string of numbers into the decode () custom block. The decoded phrase will be in the variable called "decoded". The hard part of this project was finding a simple way to detect uppercase vs lowercase. Apparently, lists are not case-sensitive. but costumes are! Scratch Team, please make lists case-sensitive!