This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-10-13 17:37:23

Ideas
Scratcher
Registered: 2012-10-07
Posts: 100+

Secret Scripts

This is a post where anyone can post NOT VERY POPULAR SCRIPTS that are awesome in scratch projects, for other scratchers to view.
smile


http://img685.imageshack.us/img685/2010/screenshot20121110at132.pngI think that you must CLICK above

Offline

 

#2 2012-10-14 00:52:18

Ideas
Scratcher
Registered: 2012-10-07
Posts: 100+

Re: Secret Scripts

You can also post theories e.g
if touching ground
stand still
if up pressed
jump

fall
or scratchblocks

when gf clicked
forever
if < touching [ground v] >
set [y-vel v] to [0.5]//stand still
if < key [up v] pressed? >
set [y-vel v] to [6]//jump
end
end
change [y-vel v] by [-0.3]//fall
end
end


http://img685.imageshack.us/img685/2010/screenshot20121110at132.pngI think that you must CLICK above

Offline

 

#3 2012-10-14 09:10:25

awesomeness321
Scratcher
Registered: 2012-08-10
Posts: 100+

Re: Secret Scripts

Ideas wrote:

You can also post theories e.g
if touching ground
stand still
if up pressed
jump

fall
or scratchblocks

when gf clicked
forever
if < touching [ground v]?>
set [y-vel v] to [0.5]//stand still
if < key [up arrow v] pressed? >
set [y-vel v] to [6]//jump
end
else

change [y-vel v] by [-0.3]//fall
end
change y by (y-vel)
end

This should work better.




Also, here is a script that selects a random script to do.




when gf clicked
set [test v] to (pick random (1) to (4))//it isn't always 4
if <(test)=[1]>
first script
end
if <(test)=[2]>
second script
end
if <(test)=[3]>
third script
end
if <(test)=[4]>
fourth script
end

Last edited by awesomeness321 (2012-10-14 09:18:29)


My newest project:http://blocks.scratchr.org/API.php?user=awesomeness321&amp;action=projects&amp;type=newest&amp;return=image&amp;num=1Color:#30F9A5 I am currently http://blocks.scratchr.org/API.php?user=awesomeness321&amp;action=onlineStatus&amp;type=text

Offline

 

#4 2012-10-14 13:22:49

sakafitrady
Scratcher
Registered: 2012-09-07
Posts: 100+

Re: Secret Scripts

scrollx script

when gf clicked
forever
 set x to ((scrollx) + ([480] * [0]))
end

Offline

 

#5 2012-10-14 13:25:07

Gravitation
New Scratcher
Registered: 2012-09-26
Posts: 500+

Re: Secret Scripts

Actually the above scripts are kinda common  hmm

Offline

 

Board footer