Discuss Scratch

-Muslim-Girl-Books-
Scratcher
9 posts

Cat Blocks?

Hey! I thought cat blocks were meant to be on today as it's April Fools, but they're not! Aww, did they get REMOVED FOREVER? If so, please, please, please can they come back, just for today at least?


“A book is full of magic.” ✨ Reading Rocks ✨ Muslim Lives Matter ✨
KingScratchCat22
Scratcher
1 post

Cat Blocks?

This makes me so sad, I always forget them and this year I finally remembered

han614698
Scratcher
1000+ posts

Cat Blocks?

At this time there isn't any design changes planned for the Scratch website.

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




Maximouse
Scratcher
1000+ posts

Cat Blocks?

han614698 wrote:

At this time there isn't any design changes planned for the Scratch website.
The code for “modes” in the editor still exists, the ST just need to change one variable to enable them again.

Last edited by Maximouse (April 1, 2024 15:41:44)



This is Maximouse's signature. Learn more about signatures.
han614698
Scratcher
1000+ posts

Cat Blocks?

Maximouse wrote:

han614698 wrote:

At this time there isn't any design changes planned for the Scratch website.
The code for “modes” in the editor still exists, the ST just need to change one variable to enable them again.
I didn't know that There's still no changes planned.[1][2][3]

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




ilovestories
Scratcher
1000+ posts

Cat Blocks?

Maximouse wrote:

han614698 wrote:

At this time there isn't any design changes planned for the Scratch website.
The code for “modes” in the editor still exists, the ST just need to change one variable to enable them again.
Did you see it in Inspect Element?
Is it possible for you to turn it on in your tab?



han614698
Scratcher
1000+ posts

Cat Blocks?

ilovestories wrote:

Maximouse wrote:

han614698 wrote:

At this time there isn't any design changes planned for the Scratch website.
The code for “modes” in the editor still exists, the ST just need to change one variable to enable them again.
Did you see it in Inspect Element?
Is it possible for you to turn it on in your tab?
I'm sure it's in the source code, not inspect. I'm not sure exactly what repo it would be in.

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




superdat1973
Scratcher
100+ posts

Cat Blocks?

I wish they did do them this year. . I don’t think ST will do them this year since yesterday, usually the day that cat blocks do appear, there weren’t any blocks changed on that day. It made the blocks cute, and it was fun seeing blocks like that mysterious red one or some other weird blocks getting turned into a cat.

An evil kumquat stole my signature! Or did they…
vsauce music starts playing

so i can advertise here, and maybe…
when green flag clicked
broadcast [M.I.T almost crushed scratch cat v]
stop [universal studios from making a first born child v]
when [ character.ai v] key pressed
set pen color to [1 up v]
catapult axis v: [-235 v] z: [342 v]
say [these custom blocks give me mental breakdowns v]
stop [nintendo from making an actually bad video game v]
Maximouse
Scratcher
1000+ posts

Cat Blocks?

han614698 wrote:

ilovestories wrote:

Did you see it in Inspect Element?
Is it possible for you to turn it on in your tab?
I'm sure it's in the source code, not inspect. I'm not sure exactly what repo it would be in.
The relevant client-side code is here. It receives the value from the server, which means it can be changed using browser extensions.


This is Maximouse's signature. Learn more about signatures.
han614698
Scratcher
1000+ posts

Cat Blocks?

Maximouse wrote:

han614698 wrote:

ilovestories wrote:

Did you see it in Inspect Element?
Is it possible for you to turn it on in your tab?
I'm sure it's in the source code, not inspect. I'm not sure exactly what repo it would be in.
The relevant client-side code is here. It receives the value from the server, which means it can be changed using browser extensions.
That would be an interesting addition to the extension.

Could it be changed locally with a script?

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




Maximouse
Scratcher
1000+ posts

Cat Blocks?

han614698 wrote:

That would be an interesting addition to the extension.

Could it be changed locally with a script?
Try running the following in the editor's console (replace extensionName in the first line with the name of the extension in camelCase):
const redux = extensionName.eventTargets.tab[0].redux;
const session = redux.state.session.session;
session.flags.everything_is_totally_normal = true;
redux.dispatch({type: "SET_SESSION", session});


This is Maximouse's signature. Learn more about signatures.
han614698
Scratcher
1000+ posts

Cat Blocks?

Maximouse wrote:

han614698 wrote:

That would be an interesting addition to the extension.

Could it be changed locally with a script?
Try running the following in the editor's console (replace extensionName in the first line with the name of the extension in camelCase):
const redux = extensionName.eventTargets.tab[0].redux;
const session = redux.state.session.session;
session.flags.everything_is_totally_normal = true;
redux.dispatch({type: "SET_SESSION", session});
This should be an addon.

Would there be a way to make it work in a different browser that doesn't have the extension installed?

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




Gamer_Logan819
Scratcher
1000+ posts

Cat Blocks?

Maximouse wrote:

han614698 wrote:

That would be an interesting addition to the extension.

Could it be changed locally with a script?
Try running the following in the editor's console (replace extensionName in the first line with the name of the extension in camelCase):
const redux = extensionName.eventTargets.tab[0].redux;
const session = redux.state.session.session;
session.flags.everything_is_totally_normal = true;
redux.dispatch({type: "SET_SESSION", session});
Would that work on all days?

The forum boogeymen are out to get you

han614698
Scratcher
1000+ posts

Cat Blocks?

Gamer_Logan819 wrote:

Maximouse wrote:

han614698 wrote:

That would be an interesting addition to the extension.

Could it be changed locally with a script?
Try running the following in the editor's console (replace extensionName in the first line with the name of the extension in camelCase):
const redux = extensionName.eventTargets.tab[0].redux;
const session = redux.state.session.session;
session.flags.everything_is_totally_normal = true;
redux.dispatch({type: "SET_SESSION", session});
Would that work on all days?
Correct, it does not rely on AFD at all since there has been no changes to anything today.

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




Roblox888i
Scratcher
1000+ posts

Cat Blocks?

han614698 wrote:

Gamer_Logan819 wrote:

Maximouse wrote:

han614698 wrote:

That would be an interesting addition to the extension.

Could it be changed locally with a script?
Try running the following in the editor's console (replace extensionName in the first line with the name of the extension in camelCase):
const redux = extensionName.eventTargets.tab[0].redux;
const session = redux.state.session.session;
session.flags.everything_is_totally_normal = true;
redux.dispatch({type: "SET_SESSION", session});
Would that work on all days?
Correct, it does not rely on AFD at all since there has been no changes to anything today.
We could make an extension that turns on AFD features, like all features from every year lol

Below this little line ^ is my signature, you can edit it by going to scratch.mit.edu/discuss/settings/YOURUSERHERE/ also highlight a part and do CNTRL+SHIFT+DOWN to scroll down.



Roblox888i
===========================================================================================================
| Ocular Profile | Scratch Profile | ScratchStats Profile | Github Profile |
=================================
| | Scratch Wiki Profile | |
===========================================================================================================


REST OF SIGNATURE NOT DONE
han614698
Scratcher
1000+ posts

Cat Blocks?

Roblox888i wrote:

We could make an extension that turns on AFD features, like all features from every year lol
That's true but not relevant.

<Scratch Wikian | Forum Helper | 6000+ Posts>

Credit to -gge for the icons in my signature | I condensed all this code into five lines using [p] tags, idk why




Maximouse
Scratcher
1000+ posts

Cat Blocks?

han614698 wrote:

This should be an addon.
There's already a (hidden) cat blocks addon.

han614698 wrote:

Would there be a way to make it work in a different browser that doesn't have the extension installed?
const store = document.querySelector("#app")._reactRootContainer._internalRoot.current.child.pendingProps.store; 
const session = store.getState().session.session;
session.flags.everything_is_totally_normal = true; 
store.dispatch({type: "SET_SESSION", session});


This is Maximouse's signature. Learn more about signatures.
loganjb51444
Scratcher
19 posts

Cat Blocks?

It was April fools yesterday so why no cat blocks
when green flag clicked

Hi im
Loganjb51444
Pls check out my projs they are funny!
I also make hacked blocks
when green flag clicked
Eat all kumquats
loganjb51444
Scratcher
19 posts

Cat Blocks?

when green flag clicked
say [meow] for (2) secs

Hi im
Loganjb51444
Pls check out my projs they are funny!
I also make hacked blocks
when green flag clicked
Eat all kumquats
loganjb51444
Scratcher
19 posts

Cat Blocks?

loganjb51444 wrote:

when green flag clicked
say [meow] for (2) secs
Idk what to say now
when green flag clicked
if <[cat blocks] = [yes]> then
play sound [Meow v]
end

Hi im
Loganjb51444
Pls check out my projs they are funny!
I also make hacked blocks
when green flag clicked
Eat all kumquats

Powered by DjangoBB