I have made 3 out of 5 blocks currently.
3 blocks are lost.
This will be made on ScratchSource1.4.
I may be changing the default sprite. Please also give a small logo instead of the 'Based on Scratch' logo.
Last edited by rdococ (2010-08-29 05:56:56)
Offline
OK.
Unknown = make a minimum of 5 ORIGINAL blocks! (and 1 interface change)
#2. Start from ScratchSource1.4. starting from a developed mod is not gonna help you.
Last edited by bbbeb (2010-08-27 17:43:48)
Offline
bbbeb wrote:
OK.
Unknown = make a minimum of 5 ORIGINAL blocks! (and 1 interface change)
#2. Start from ScratchSource1.4. starting from a developed mod is not gonna help you.
How can I make the interface change? I know, edit the objects of scratch on the image. Will that work?
What shall the blocks be? Please also enter the code. No code needed to enter if it is a block like if <> then [] else [].
Offline
rdococ wrote:
bbbeb wrote:
OK.
Unknown = make a minimum of 5 ORIGINAL blocks! (and 1 interface change)
#2. Start from ScratchSource1.4. starting from a developed mod is not gonna help you.How can I make the interface change? I know, edit the objects of scratch on the image. Will that work?
What shall the blocks be? Please also enter the code. No code needed to enter if it is a block like if <> then [] else [].
Do you even know how to program? We can't exactly hand all the answers to you...
(No offence)
Google it.
Offline
Jwosty wrote:
rdococ wrote:
bbbeb wrote:
OK.
Unknown = make a minimum of 5 ORIGINAL blocks! (and 1 interface change)
#2. Start from ScratchSource1.4. starting from a developed mod is not gonna help you.How can I make the interface change? I know, edit the objects of scratch on the image. Will that work?
What shall the blocks be? Please also enter the code. No code needed to enter if it is a block like if <> then [] else [].Do you even know how to program? We can't exactly hand all the answers to you...
(No offence)
I know how to program a little bit, I know how to change category colors.
Offline
rdococ wrote:
Jwosty wrote:
rdococ wrote:
How can I make the interface change? I know, edit the objects of scratch on the image. Will that work?
What shall the blocks be? Please also enter the code. No code needed to enter if it is a block like if <> then [] else [].Do you even know how to program? We can't exactly hand all the answers to you...
(No offence)I know how to program a little bit, I know how to change category colors.
That's not exactly programming; you just have to change the category colors and then read the skins from the skin folder...
Google it.
Offline
Jwosty wrote:
rdococ wrote:
Jwosty wrote:
Do you even know how to program? We can't exactly hand all the answers to you...
(No offence)I know how to program a little bit, I know how to change category colors.
That's not exactly programming; you just have to change the category colors and then read the skins from the skin folder...
I know how to make the 'if then else' block, now a bit more programming I know?
I also do not need to interact with the skin folder, I change some code to look like how I want it to be.
Code for if then else block:
if: test Then: this Else: else test ifTrue: [^ then] ifFalse: [^ else]
If that is incorrect, please tell me.
Offline
rdococ wrote:
Code:
if: t1 Then: t2 Else: t3 t1 ifTrue: [^ t2] ifFalse: [^ t3]If that is incorrect, please tell me.
There, you had your 5th use of a variable wrong
Offline
johnnydean1 wrote:
rdococ wrote:
Code:
if: t1 Then: t2 Else: t3 t1 ifTrue: [^ t2] ifFalse: [^ t3]If that is incorrect, please tell me.
There, you had your 5th use of a variable wrong
Oh, it is the variable names?
Offline
I am adding the if then else into control.
The following errors need to be corrected before the message can be posted:
At least 60 seconds have to pass between posts. Please wait a little while and try posting again.
Offline
Also added say nothing block.
Offline
Screen resolution required: 800x460 (I think, using 1.4 source)
Offline
Making the modifcation has been cancelled.
Offline
too bad
try learning some squeak and try again. but learn it good. very.
Offline
Squeak is extremely hard - better off making it as a project in Scratch.
Offline
its not that hard. It took me about 3/4 days to get to where I am now. I dont completely understand everything, but I can make blocks.
Offline
I'm not that good a squeak (like you - no effence) and I would strongly advice you to not do this, or at least not properly release it. I get sick and tired of all the mods of scratch. I only know a few good ones (including Bingo) and the only reason they are good is bescause they have Major Changes!!! like new catagories, new interface, loads more new blocks ect... adding 2 extra blocks isn't really making a mod. Your just extending scratch a little.
If I was you, I would try learning more squeak - then make a mod with loads more extra features, not just added blocks!
Offline
rdococ wrote:
Code:
if: test Then: this Else: else test ifTrue: [^ then] ifFalse: [^ else]If that is incorrect, please tell me.
You've got the right idea (your variables are a little wrong), but an easier way to do it is:
if: test: Then: this Else: that
test ifTrue: [^ this]
^ thatOffline
ScratchReallyROCKS wrote:
rdococ wrote:
Code:
if: test Then: this Else: else test ifTrue: [^ then] ifFalse: [^ else]If that is incorrect, please tell me.
You've got the right idea (your variables are a little wrong), but an easier way to do it is:
Code:
if: test: Then: this Else: that test ifTrue: [^ this] ^ that
Won't work and incorrect caps and a bunch of other stuff.
if: a then: b else: c
a ifTrue:[^b].^c
Offline
nXIII wrote:
ScratchReallyROCKS wrote:
rdococ wrote:
Code:
if: test Then: this Else: else test ifTrue: [^ then] ifFalse: [^ else]If that is incorrect, please tell me.
You've got the right idea (your variables are a little wrong), but an easier way to do it is:
Code:
if: test: Then: this Else: that test ifTrue: [^ this] ^ thatWon't work and incorrect caps and a bunch of other stuff.
if: a then: b else: c
a ifTrue:[^b].^c
I just tested it, and caps don't matter. The only thing I forgot was the period.
EDIT: I also put an extra colon in.
Last edited by ScratchReallyROCKS (2010-09-03 07:02:19)
Offline
ScratchReallyROCKS wrote:
nXIII wrote:
ScratchReallyROCKS wrote:
You've got the right idea (your variables are a little wrong), but an easier way to do it is:Code:
if: test: Then: this Else: that test ifTrue: [^ this] ^ thatWon't work and incorrect caps and a bunch of other stuff.
if: a then: b else: c
a ifTrue:[^b].^cI just tested it, and caps don't matter. The only thing I forgot was the period.
EDIT: I also put an extra colon in.
yes and no: message names should not start with caps.
Offline