How do you make custom C blocks in the scratch forums?

id: 749989

category: Questions about Scratch

posts: 5

^^^

If you don't understand what it means, how do you create a customized C block in the forums? I'm talking about
if <> then

end
but with a different thing at the top.
Any help would be very much appreciated
anireal anireal loading
[scratchblocks]
stuff{
things
}
[/scratchblocks]
stuff{
things
}
see scratchblocks syntax here:
https://en.scratch-wiki.info/wiki/Block_Plugin/Syntax
test{
test :: looks
} :: control
Thank you so much!
Malicondi Malicondi loading
see this post, as it explains it quite well, but you use curly brackets:
{
}
to make c blocks, like this:
 
this isn't a real block {
} :: motion
turns into this:
this isn't a real block {
} :: motion
You can also add stacked blocks, or inputs and other things inside of the c block, and extend them:
a (stacked :: stack hat pen){

} long <inputted ::variables>{

} c block :: custom-arg
a (stacked :: stack hat pen){

} long <inputted ::variables>{

} c block :: custom-arg
the wiki also has an article on how to do so.
Thank you all so much!