-----------------------------Description----------------------------- -This project is an engine that can convert a list into a number string, and that number can be converted back into a list -This is NOT a Game. -The UI (such as the selection screen) is not part of the engine, only a demonstration of what the engine can do. Most of the engine's codes are separated from the UI. -This engine is useful for things like cloud lists since cloud variables can only store numbers. -You are welcome to use this engine in your own projects. Further details can be found below. -----------------------------Instructions----------------------------- -Select if you want to convert a list into numbers or numbers into a list. -For FIRST-TIME users select the option on the LEFT! Because you have no numbers to convert from. -If you selected "list to numbers" start by entering text to create a list. After you're done, click the green "Done" button. -You can copy the results by double-clicking on it and pressing Ctrl + C. Paste it somewhere else in order to convert it back into a list later. -Click the green flag to go back to the selection screen -If you selected "list to numbers" then paste the string of numbers. Make sure that the string is generated by this engine, otherwise, it won't work properly. -After that, the numbers should convert back into the original list! -If you want you can share your list down in the comments below ;) --------------How to use it in your own projects-------------- -If you want to use this engine in your own projects, make sure to credit me (or my main account @caterpillarstyle)! -Go inside the project and find the sprite named "List_to_Number_Engine" -Drag the sprite into your backpack at the bottom left of the screen. -Once you're inside your project, open your backpack and drag the sprite out. -Make sure to READ the COMMENTS INSIDE the SPRITE! They contain very important notes! -Follow the instructions stated in the comments, and there you go. ---------------------------Technical Notes------------------------- -Characters supported so far includes: abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()`-=[]\;',./_+{}|:"<>? (and also space) -There is built-in capital letter detection -Empty items are supported -Each character in the list is stored as a two-digit number, forming the output. There is also a special two-digit number that represents the starting of a new item. -----------------------------Change Log---------------------------- This is a new improved version of the original project Here are the changes in this version. -Removed the "length" output -The number representing "empty item" (set to the length of character list + 1) is now changed to mean "a new item" / "start a new line" -There is built-in safe proof to the engine, making sure that the number input must be valid.