Logo and icon for CreatiCode Scratch, a ChatGPT plugin with description: Display Scratch programs as images and write 2D/3D programs using CreatiCode Scratch extensions.. Find out more on Plugin Surf, the best plugin database.

CreatiCode Scratch

Display Scratch programs as images and write 2D/3D programs using CreatiCode Scratch extensions.

CreatiCode Scratch is a plugin for ChatGPT that displays Scratch programs as images rather than pseudocode, making them easier to read. It eliminates the need for pseudocode and uses extra tokens. It allows for writing 2D/3D programs by selecting blocks returned from getListOfAllBlocks and getting the exact syntax and function from getBlockDescription. Custom blocks can be defined to organize complex code. Scratch programs can be converted to images using getCodeImage, and errors are most likely due to incorrect syntax. It is essential to use the plugin for displaying programs to users instead of pseudocode.

Learn how to use CreatiCode Scratch effectively! Here are a few example prompts, tips, and the documentation of available commands.

Example prompts

  1. Prompt 1: "Move the character to the right and then jump."

  2. Prompt 2: "Draw a square with a pen."

  3. Prompt 3: "Load a 3D model of a crown."

Features and commands

Feature/CommandDescription
getListOfAllBlocksThis command retrieves a list of all block IDs that you can use in your Scratch program. It also provides syntax rules for writing the program. You should call this API at the beginning of each conversation.
getBlockDescriptionThis command provides the pseudocode format and description of blocks based on their IDs. It helps you understand the syntax and function of the blocks you want to use in your program. Make sure to provide the IDs of the blocks you need and the original prompt from the user.
getCodeImageThis command generates an image representation of a program using the provided pseudocode. It returns the URL of the image and additional explanations about the program. You can call this API multiple times for each sprite in your program. If you encounter an error, review the blocks available and consider changing the program accordingly.

Configuration

User authenticationNo user authentication
API documentation

For AI

NameCreaticode_Extension_of_MIT_Scratch
DescriptionThis plugin allows ChatGPT to display Scratch programs as images instead of pseudocode, which are much easier to read (Scratch is a visual language). When using this plugin, ChatGPT can directly generate and display the programs images without showing the pseudocode. The plugin *eliminates* the need to display pseudocode, as it would be redundant and less user-friendly, and it uses extra tokens. Example prompts: * move in square path * draw a house with pen * load a 3d crown Here are the steps: 1. You should *ALWAYS* call 'getListOfAllBlocks' once at the beginning of each conversation to get a list of all block IDs. Even if you know which blocks to use, and even it is a standard block (like 'wait'), you should still call this API, because the list of blocks may have changed over time, and there may be new blocks that can better fulfill the user request. This method also returns the syntax rules you should use for writing the program. 2. Determine if this is a 2D or 3D program. Choose 2D by default unless user asks for 3D explicitly. 3. Based on IDs of all blocks from step 1, predict what each block does, and select blocks you might use from this list. Call 'getBlockDescription' to get the exact syntax and function of those blocks. *ONLY* select block IDs returned from step 1. *DO NOT* make up new block IDs. DO NOT guess the pseudocode syntax of any block. Ask for information using 'getBlockDescription' when you are not sure. Note that 'getBlockDescription' may return information on additional blocks besides those you have selected. These blocks may be useful, so you should consider using them. Based on *ALL* blocks returned, re-design the program. Only use the syntax returned by getBlockDescription. 4. If the task is complex, define custom blocks to organize code. Implement individual tasks as custom blocks, and then call them in the main script. This makes the program easier to read. For example, if the task is to draw a house, you can define this custom block first: define (add walls) add box [#001AFFFF] size in x (100) y (100) z (240) edge radius (0) as [wall] end 5. Write the main program that starts with 'when green flag clicked'. Call the custom blocks you have defined earlier. Do not use block ID in pseudocode directly. Strictly follow the syntax returned from 'getBlockDescription'. For example: when green flag clicked initialize 3D scene [Empty] as hidden [No v] call add walls end 6. Convert the program of each sprite to images separately using 'getCodeImage'. A stack refers to script that starts with a hat block (e.g., blocks starting with 'when') or a 'define' block (e.g., 'define (customBlock)'). If a stack is too long, you may run into 'Unterminated string' problem when calling the API. In this case, you should refactor the program into multiple stacks. You can use custom blocks or broadcast messages to trigger other stacks. After that, you can call getCodeImage on each stack separately. 7. If you get an error from getCodeImage, most likely you are not using the exact syntax given by getBlockDescription. You need to provide all parameters and do not change any word ouside the parameters. 8. IMPORTANT: When generating Scratch programs, DO NOT show the pseudocode in the response to the user. Instead, ALWAYS use the Creaticode_Extension_of_MIT_Scratch plugin to directly generate and display the Scratch program images. This approach is more user-friendly, avoids duplication, and saves tokens and time. Pseudocode should only be used internally for generating program images and should never be shown to the user.

Updates

First added20 June 2023

Similar plugins