Discuss Scratch

medians
Scratcher
1000+ posts

How to make a 1.4 mod

HappyMohid wrote:

gilbert_given_189 wrote:

Any idea what the cloneAndSend: instance method @ ScratchSpriteMorph does? It sounds like some unused clone-creating code, but I need some more confirmation.

Yes, Older beta's of Scratch had a cloning feature but removed for unknown reasons. The methods were not deleted though.
Here (source: https://github.com/medlans/2.0-Archives/blob/main/Scratch12Jul04.zip):

This was located in the Motion category in this build.
Also, 2-row category menu LOL

NEW: Medians bamboozled by 3.0 (version 3.0): https://scratch.mit.edu/projects/979822351/
hi875230163394: You're similar to valve in that you both hate a certain number…
Scratch 0.x, 1.x, 2.x, 3.x and LogoBlocks Archives
Bamboozlement: https://scratch.mit.edu/studios/33739789
Fun_Cupcake_i81: https://scratch.mit.edu/projects/850535211/
Years on internet: 15 (soon 16)
medians: Oh god not this utc - 12 thing again..
Fun_Cupcake_i81: What, were you expecting not to see the utc - 12 thing again? THE UTC - 12 THIGN ALWAYS RETURNS. ALWAYS.
medians: I knew it would happen. I was the one who started it last year.
Fun_Cupcake_i81: Well then if you didn't want it back maybe you need to time travel to last year and fix that

Oh wait if you could time travel I think we all know exactly when you would go-
user1: That picture is from 2.0. Now he’s at my house and is my pet.
user2: But this is medians we're talking about, so “from 2.0” can mean the same thing as “from five seconds ago”.

Detect Scratch version here
My other accounts: @selfexplanatory @modesties @chaircard @fireflyhero @dividendyield @colloids @radians @skeuamorphism @dihectogon @anglebisector @aau- @EditBlockColors @AdamantOrb @MoongeistBeam @festively @Ampharos_ @ straightforwardness
i trolled redcat LOL





if you see this
{what method did you use::control hat
answer on profile ::motion
} ::operators
;
windows11microsoft
Scratcher
100+ posts

How to make a 1.4 mod

say [does not work because i opened it in squeak and it has no file access]
medians
Scratcher
1000+ posts

How to make a 1.4 mod

windows11microsoft wrote:

say [does not work because i opened it in squeak and it has no file access]
What exactly did you open though?
Also, close your tags so quotes aren't messed up.

NEW: Medians bamboozled by 3.0 (version 3.0): https://scratch.mit.edu/projects/979822351/
hi875230163394: You're similar to valve in that you both hate a certain number…
Scratch 0.x, 1.x, 2.x, 3.x and LogoBlocks Archives
Bamboozlement: https://scratch.mit.edu/studios/33739789
Fun_Cupcake_i81: https://scratch.mit.edu/projects/850535211/
Years on internet: 15 (soon 16)
medians: Oh god not this utc - 12 thing again..
Fun_Cupcake_i81: What, were you expecting not to see the utc - 12 thing again? THE UTC - 12 THIGN ALWAYS RETURNS. ALWAYS.
medians: I knew it would happen. I was the one who started it last year.
Fun_Cupcake_i81: Well then if you didn't want it back maybe you need to time travel to last year and fix that

Oh wait if you could time travel I think we all know exactly when you would go-
user1: That picture is from 2.0. Now he’s at my house and is my pet.
user2: But this is medians we're talking about, so “from 2.0” can mean the same thing as “from five seconds ago”.

Detect Scratch version here
My other accounts: @selfexplanatory @modesties @chaircard @fireflyhero @dividendyield @colloids @radians @skeuamorphism @dihectogon @anglebisector @aau- @EditBlockColors @AdamantOrb @MoongeistBeam @festively @Ampharos_ @ straightforwardness
i trolled redcat LOL





if you see this
{what method did you use::control hat
answer on profile ::motion
} ::operators
;
pixells4D
Scratcher
80 posts

How to make a 1.4 mod

That's all great. But I have a minor problem. I did everything said about adding category but it does not work. Here is what I did:

I copied the control.gif, controlPressed.gif and controlOver.gif and renamed the control to another name

Then loaded the skin as said

Set the block color

And added it to list of categories

But when i saved and restarted my mod, my category wasnt there (not even an error)

Arch Linux (yes i set it up), Intel Core i5, 8GB Memory pretty low end, right?

ஜ۩۞۩ஜ
pixells4D
Scratcher
80 posts

How to make a 1.4 mod

powerpoint56 wrote:

Add a new category
I learned most of this from LS97's tutorial: Modding Scratch VFAQ

To add a new category, you first need to download the Scratch Skin here: http://download.scratch.mit.edu/source-code/ScratchSkin1.4.zip. Extract the ZIP folder to your mod's folder. Copy the files controlPressed, controlOver, and control and rename the copies with the name of your category (yourCategoryPressed, yourCategoryOver, yourCategory). Optionally, you can edit the pictures with a graphics-editing software so that they're the color of your category.

Then, open Bubble (your mod), and from there open the workspace. Type in the below code, select it, and choose to “do it”.
ScratchFrameMorph readSkinFrom: (FileDirectory default directoryNamed: 'ScratchSkin')
Any time you edit the Skin in any way, you'll need to run this code to make your changes take effect.
Go to Scratch-UI-Panes > ScratchViewerMorph (instance) > –all– > rebuildCategorySelectors. Add your category/categories to the list. If you're adding an odd number of categories, go down to where it says “catButtonsExtent _” and replace the line with this code:
catButtonsExtent _ ((2 * maxExtent x) + (3 * pad)) @ ((((catList size / 2) rounded) * (maxExtent y + 6)) + 25).
Finally, we have to specify the color of the blocks in our category. Go to ScriptableScratchMorph (class) > blockSpecs > blockColorFor:. Add the below line to the other lines like it in the code. Replace “yourCategory” with your category's name and the color with any color. You can also use rgb.
	'yourCategory' = aCategory ifTrue: [^ (Color h: 25 s: 0.88 v: 0.95)].
Save the .IMAGE and open your mod again. You'll see your new category there!
hey it didnt work: here.

Arch Linux (yes i set it up), Intel Core i5, 8GB Memory pretty low end, right?

ஜ۩۞۩ஜ
pixells4D
Scratcher
80 posts

How to make a 1.4 mod

bump

Arch Linux (yes i set it up), Intel Core i5, 8GB Memory pretty low end, right?

ஜ۩۞۩ஜ
WaterEpic11
Scratcher
1 post

How to make a 1.4 mod

How do you change the logo?
HappyMohid
Scratcher
72 posts

How to make a 1.4 mod

Go into ScratchSkin and change the logo file (i forgot what the file is called),
Then insert ScratchSkin and then reopen the scratch window ( middle click then delete ), right click to open world, go to open, then Scratch.
And there is your new logo!

<(●◡● ::#222222)> // just a happy guy

Powered by DjangoBB