meew0 wrote:
jslomba wrote:
meew0 wrote:
It works, but you have to share the Scratch.image file. The .exe is only the Squeak VM and just runs the code in the .image
![]()
how do you do dat?
The best thing would be if you would pack the whole Scratch folder in a zip file and upload it.
done!
Offline
OK... I just noticed that you used the real scratch for your mod... If you want to share your mod, you have to use the Source Code.
Offline
jslomba wrote:
ok, so yes, I am making a mod. it will have 150+ new scratch blocks. so right now, I am founder/director. here are the open positions:
coding help
assistant programmer
blockspec help
block suggestions
here is everyone who is helping:jslomba (founder/director)
meew0 (head programmer)
windowsExplorer (website)I will add your name if you join.
Thanks, jslomba
Will I put the test downlaod on my website for people to use?
Offline
meew0 wrote:
OK... I just noticed that you used the real scratch for your mod... If you want to share your mod, you have to use the Source Code.
alright, I'll get started on that.
Offline
WindowsExplorer wrote:
jslomba wrote:
ok, so yes, I am making a mod. it will have 150+ new scratch blocks. so right now, I am founder/director. here are the open positions:
coding help
assistant programmer
blockspec help
block suggestions
here is everyone who is helping:jslomba (founder/director)
meew0 (head programmer)
windowsExplorer (website)I will add your name if you join.
Thanks, jslombaWill I put the test downlaod on my website for people to use?
sure! that website is just temporary.
Offline
meew0 wrote:
OK... I just noticed that you used the real scratch for your mod... If you want to share your mod, you have to use the Source Code.
I downloaded, and it says it can't find a program to run it. anything I need to download?
Offline
I'll do this just to get back into Squeak a bit...
When (and if) you want, pass your mod over to me and I'll add some actual features to it.
I guess that counts as assistant programmer?
Beware though, I'm going away tomorrow until Sunday and I have exams in two weeks. So it won't be anything special.
Offline
LS97 wrote:
I'll do this just to get back into Squeak a bit...
When (and if) you want, pass your mod over to me and I'll add some actual features to it.
I guess that counts as assistant programmer?
Beware though, I'm going away tomorrow until Sunday and I have exams in two weeks. So it won't be anything special.![]()
sure! could you add mesh?
Offline
jslomba wrote:
meew0 wrote:
OK... I just noticed that you used the real scratch for your mod... If you want to share your mod, you have to use the Source Code.
I downloaded, and it says it can't find a program to run it. anything I need to download?
1. Move all the files in the zip folder in your mod folder.
2. Drag the "ScratchSourceCode1.4.image" file on the "Scratch.exe" file.
Offline
LS97 wrote:
I'll do this just to get back into Squeak a bit...
When (and if) you want, pass your mod over to me and I'll add some actual features to it.
I guess that counts as assistant programmer?
Beware though, I'm going away tomorrow until Sunday and I have exams in two weeks. So it won't be anything special.![]()
k. how about you put it into the source code? the blocks I made are here
Offline
ill join and let me you may not think im educated in scratch because of my projects but in my computer i have over 50 games that have atleast 20 sprites and 70 scripts. right now working on a realistic awesome virtual world. so add me in.
Offline
like2compute wrote:
ill join and let me you may not think im educated in scratch because of my projects but in my computer i have over 50 games that have atleast 20 sprites and 70 scripts. right now working on a realistic awesome virtual world. so add me in.
k, great! what position?
Offline
Having a Mega Mod page on Plaxon.org is a big hit! Plaxon.org has only been online 44 days, and it already has over 300 visitors! When I put the Mega Mod page on it, it should be pretty popular!
Offline
WindowsExplorer wrote:
Having a Mega Mod page on Plaxon.org is a big hit! Plaxon.org has only been online 44 days, and it already has over 300 visitors! When I put the Mega Mod page on it, it should be pretty popular!
glad to hear it!
Offline
meew0 wrote:
OK... I just noticed that you used the real scratch for your mod... If you want to share your mod, you have to use the Source Code.
No, to share your mod you must remove all references to the scratch logo, and the share menu. The source code has just already have them removed
Offline
ssss wrote:
meew0 wrote:
OK... I just noticed that you used the real scratch for your mod... If you want to share your mod, you have to use the Source Code.
No, to share your mod you must remove all references to the scratch logo, and the share menu. The source code has just already have them removed
![]()
I...Sorta.. put a BUNCH of blocks on the regular scratch, so could you possibly tell me how to change the scratch logo and default sprite on normal scratch?
Offline
ill give u a list of every custom block i added ant the method.
arrowMove: i1
| t4 t3 t2 t1 |
t1 _ 'up arrow'.
t2 _ 'down arrow'.
t3 _ 'left arrow'.
t4 _ 'right arrow'.
t1 _ self keyPressed: t1.
t2 _ self keyPressed: t2.
t3 _ self keyPressed: t3.
t4 _ self keyPressed: t4.
t1 ifTrue: [self gotoX: self xpos y: i1 + self ypos].
t2
ifTrue:
[t2 _ i1 * -1.
self gotoX: self xpos y: t2 + self ypos].
t3
ifTrue:
[t3 _ i1 * -1.
self gotoX: t3 + self xpos y: self ypos].
t4 ifTrue: [self gotoX: i1 + self xpos y: self ypos]
('Arrow key move with speed %n ' #- #arrowMove:)
desc. moves sprite with the arrow keys
changeStretchBy: t1
| t2 |
t2 _ 100.0 * scalePoint x / scalePoint y.
self setStretchTo: t2 + t1
('change stretch by %n' #- #changeStretchBy: 5)
desc. stretch the sprite
put those under motion
_________________________________________________
put these under looks
('clone me' #- #duplicateNoAttach)
('delete me' #- #undoableDeleteSprite)
sensing doThis: t1 on: t2
'google' = t1 ifTrue: [ScratchPlugin primOpenURL: 'http://www.google.com/#sclient=psy&hl=en&q=' , t2 , '&aq=f&aqi=g5&aql=&oq=&gs_rfai=&pbx=1&fp=ab5cdb1806fef4aa&safe=activet1'].
'yahoo' = t1 ifTrue: [ScratchPlugin primOpenURL: 'http://search.yahoo.com/search;_ylt=Aj.OqjGVrkBmY6mZqA_PSu.bvZx4?p=' , t2 , '&toggle=1&cop=mss&ei=UTF-8&fr=yfp-t-701'].
'scratch.mit.edu/' = t1 ifTrue: [ScratchPlugin primOpenURL: 'http://scratch.mit.edu/' , t2].
'search scratch for' = t1 ifTrue: [ScratchPlugin primOpenURL: 'http://scratch.mit.edu/pages/results?cx=010101365770046705949:gg_q9cry0mq&cof=FORID:11&q=' , t2 , '&safe=active&sa=search'].
'IMDB' = t1 ifTrue: [ScratchPlugin primOpenURL: 'http://www.imdb.com/find?s=all&q=' , t2].
'load' = t1 ifTrue: [^ 0].
^ 0
('%j %s' #- #doThis:on:)
under uncoloredArgMorphFor:
and add this strip
$j = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #engineNames;
choice: 'google'].
desc. searches internet
Offline
i have loads of ideas!
A new tab for mesh (I can make this!)
answer contains [] (I want this so much!)
[] received? (I can make this block for you!)
(<>) (So you can use Booleans in the round ones)(I can make this)
join mesh []
host mesh
show mesh code
stop hosting mesh
disconnect from mesh
clone me/ delete me (I can make these!)
[hidden?
paint new costume
save stage area to sprite
open a browser with URL []
change pen shade by []
set pen shade to []
pen down? ] I can make these too!
Offline
littlebird2472 wrote:
i have loads of ideas!
A new tab for mesh (I can make this!)
answer contains [] (I want this so much!)
[] received? (I can make this block for you!)
(<>) (So you can use Booleans in the round ones)(I can make this)
join mesh []
host mesh
show mesh code
stop hosting mesh
disconnect from mesh
clone me/ delete me (I can make these!)
[hidden?
paint new costume
save stage area to sprite
open a browser with URL []
change pen shade by []
set pen shade to []
pen down? ] I can make these too!
most of these are in MegaMod 1.3, and the development of MegaMod has moved to this topic. I would like it if you used that one insead.
also, I can add you to the devs list so you can help. Can you add that mesh menu? in it, could you put details like a box that says what mesh you're in, and one for if you're hosting a session, etc.
Offline
jslomba wrote:
littlebird2472 wrote:
i have loads of ideas!
A new tab for mesh (I can make this!)
answer contains [] (I want this so much!)
[] received? (I can make this block for you!)
(<>) (So you can use Booleans in the round ones)(I can make this)
join mesh []
host mesh
show mesh code
stop hosting mesh
disconnect from mesh
clone me/ delete me (I can make these!)
[hidden?
paint new costume
save stage area to sprite
open a browser with URL []
change pen shade by []
set pen shade to []
pen down? ] I can make these too!most of these are in MegaMod 1.3, and the development of MegaMod has moved to this topic. I would like it if you used that one insead.
also, I can add you to the devs list so you can help. Can you add that mesh menu? in it, could you put details like a box that says what mesh you're in, and one for if you're hosting a session, etc.
I can only make the tab and the blocks that say i can make them to the side or the ones in []. I will get started asap.
Offline