Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Need Help With Scripts for A project.
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
My new project, Creator Coding Studio is a game engine I first need help with a script that helps people code like scratch.
- scratch___user12345
-
1000+ posts
Need Help With Scripts for A project.
so ur basicly creating scratch in scratch?
- medians
-
1000+ posts
Need Help With Scripts for A project.
I mean, we can’t just create the entire thing for you. You wouldn’t really learn much, though what parts do you exactly need help with?
I think they’re making some kind of “editor” but I don’t think it’s Scratch. so ur basicly creating scratch in scratch?
- Jeffery501
-
98 posts
Need Help With Scripts for A project.
so is this like a programming language or like a Cover Orange type of thing?
————————————————————————————————————-
H! I'm CubeHead! If you're having trouble, just Yelp for Help!
————————————————————————————————————-
H! I'm CubeHead! If you're having trouble, just Yelp for Help!
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
Yes, but is basically Scratch+, but different so yeah. so ur basicly creating scratch in scratch?
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
Also no, I need someone to tell me of some “Scratch Coding Code” so please, I need some scripts. I mean, we can’t just create the entire thing for you. You wouldn’t really learn much, though what parts do you exactly need help with?I think they’re making some kind of “editor” but I don’t think it’s Scratch. so ur basicly creating scratch in scratch?
- CodeKing_11
-
100+ posts
Need Help With Scripts for A project.
Ohhh…
I get it. you want some coding to put in it. I can do that! But I need to know what type of game you're planning on making, like the genre and what you're putting in it.
My browser / operating system: ChromeOS 14541.0.0, Chrome 110.0.0.0, No Flash version detected
I get it. you want some coding to put in it. I can do that! But I need to know what type of game you're planning on making, like the genre and what you're putting in it.
My browser / operating system: ChromeOS 14541.0.0, Chrome 110.0.0.0, No Flash version detected
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
Well the one thing is, I'm making a “Game Making” engine. Ohhh…
I get it. you want some coding to put in it. I can do that! But I need to know what type of game you're planning on making, like the genre and what you're putting in it.
My browser / operating system: ChromeOS 14541.0.0, Chrome 110.0.0.0, No Flash version detected
- CodeKing_11
-
100+ posts
Need Help With Scripts for A project.
OH
I get it now! You need to make different code blocks! Do you want them to be ones in scratch or different ones?
My browser / operating system: ChromeOS 14541.0.0, Chrome 110.0.0.0, No Flash version detected
I get it now! You need to make different code blocks! Do you want them to be ones in scratch or different ones?
My browser / operating system: ChromeOS 14541.0.0, Chrome 110.0.0.0, No Flash version detected
Last edited by CodeKing_11 (Feb. 26, 2023 03:12:10)
- ventoaurum
-
100+ posts
Need Help With Scripts for A project.
so youre asking us to make ur whole project?
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
NO! I'm asking if any one has good scripts? so youre asking us to make ur whole project?
- ventoaurum
-
100+ posts
Need Help With Scripts for A project.
script for what? do u want us to make scratch in scratch or a scripting language in scratch? or something else entirely?
script for what? to make scratch in scratch? to make a scripting language in scratch? something else?NO! I'm asking if any one has good scripts? so youre asking us to make ur whole project?
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
Scratch in Scratch, it's what I need for this project. script for what? do u want us to make scratch in scratch or a scripting language in scratch? or something else entirely?script for what? to make scratch in scratch? to make a scripting language in scratch? something else?NO! I'm asking if any one has good scripts? so youre asking us to make ur whole project?
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
Ones in Scratch. OH
I get it now! You need to make different code blocks! Do you want them to be ones in scratch or different ones?
My browser / operating system: ChromeOS 14541.0.0, Chrome 110.0.0.0, No Flash version detected
- javorszkyzente
-
24 posts
Need Help With Scripts for A project.
when green flag clicked
set [ speed x] to [0]
set [ speed y] to [0]
forever
if <key [ space] pressed?> then
if <(falling) > [3]> then
set [ speed y] by [12]
end
end
if <key [ a] pressed?> then
change [ speed x] by (-1.5)
end
if <key [ d]> then
change [ speed x] by (1.5)
end
set [ speed x] to (((speed x)) * (0.8))
move in steps (([ abs] of ((speed x))) + ([ abs] of ((speed y)))
end
define move in steps (steps)
change [ falling] by (1)
repeat ((steps))
set [ last value] to (x position)
change x by ((speed x) / ((steps)))
if <touching [ put sprite or color here] ?> then
set x to (last value)
set [ speed x] to [0]
end
set [ last value] to (y position)
change y by ((speed y) / (steps))
if <touching [ put sprite or color here] ?> then
set y to (last value)
set [ speed y] to [0]
set [ falling] to [0]
end
end
- Spentine
-
1000+ posts
Need Help With Scripts for A project.
I'm sorry, but people can't just make Scratch in Scratch for you. That's a very large feature, and a very difficult one at that.
- Sanchei23S33
-
8 posts
Need Help With Scripts for A project.
Can someone help me with making a boxing game ai that doesn't phase through the player and glitch out becuase i currently have it where it points towards me and moves 3 steps towards me. I just need it to not phase through the player and randomly hit the player. I also need a way for my player to pick a random costume of a certain punch when I have my mouse down and do certain damage.
- medians
-
1000+ posts
Need Help With Scripts for A project.
Well, we can't just code the entire thing for you. However, you could probably put this in Requests, or ask help on specific parts you're having trouble with.Also no, I need someone to tell me of some “Scratch Coding Code” so please, I need some scripts. I mean, we can’t just create the entire thing for you. You wouldn’t really learn much, though what parts do you exactly need help with?I think they’re making some kind of “editor” but I don’t think it’s Scratch. so ur basicly creating scratch in scratch?
Okay, maybe put that in the original post because some people might think you're trying to make a separate “programming language” in Scratch (I've seen people do that). Ones in Scratch.
You'll want to make a new topic for this, like I said before. text
- rhett6gamer
-
54 posts
Need Help With Scripts for A project.
I'll try this out, thanks for the code.when green flag clickedset [ speed x] to [0]set [ speed y] to [0]forever
if <key [ space] pressed?> then
if <(falling) > [3]> then
set [ speed y] by [12]
end
end
if <key [ a] pressed?> then
change [ speed x] by (-1.5)
end
if <key [ d]> then
change [ speed x] by (1.5)
end
set [ speed x] to (((speed x)) * (0.8))
move in steps (([ abs] of ((speed x))) + ([ abs] of ((speed y)))
enddefine move in steps (steps)
change [ falling] by (1)
repeat ((steps))
set [ last value] to (x position)
change x by ((speed x) / ((steps)))
if <touching [ put sprite or color here] ?> then
set x to (last value)
set [ speed x] to [0]
end
set [ last value] to (y position)
change y by ((speed y) / (steps))
if <touching [ put sprite or color here] ?> then
set y to (last value)
set [ speed y] to [0]
set [ falling] to [0]
end
end
- Discussion Forums
- » Help with Scripts
-
» Need Help With Scripts for A project.