Discuss Scratch

EpicJ101
Scratcher
27 posts

How Do You Make Solid Platforms With Gravity Script On?

.
ramenecho
Scratcher
100+ posts

How Do You Make Solid Platforms With Gravity Script On?

EpicJ101 wrote:

.
A single period does not help, what is your issue here. You have to actually make a message to get help. If you have a problem and you dont know what to do, just walking up to somebody and staring into their soul silently will not get them to help you

Hello there, this is a cool signature! You can even make your own wow! I really need somebody to check my game for bugs, MineQuest Idle its not the highest quality of games, but its an improvement from my previous ones
BigNate469
Scratcher
500+ posts

How Do You Make Solid Platforms With Gravity Script On?

Please describe your issue. There are many different ways to program anything, you're going to have to be more specific than just what you typed in the title. What are you trying to do? Evaluate if it is really necessary to your project, and if it isn't, don't make it. Often the solution to a simple problem is simple, so see if you can figure it out first, and if you are still stuck after all that, post something here. Keep in mind that the more information you give us helps.

Highlight any part of this signature and press ctrl+shift+down arrow to see the rest of it
forever
if <person asks [what's a signature] :: sensing> then
Redirect to [https://en.scratch-wiki.info/wiki/Signature] :: motion
end
end
Please read the list of Officially Rejected Suggestions before posting a suggestion for Scratch! 100th post
This signature is designed to be as helpful as possible.
View all of the topics you've posted in:
https://scratch.mit.edu/discuss/search/?action=show_user&show_as=topics
View all of your posts:
https://scratch.mit.edu/discuss/search/?action=show_user&show_as=posts
Forum tips:
Don't title topics something like “HELP ME!!!”. It's not helpful, and won't get you as many responses.
Don't post in topics where the latest post is over ~2 months old, unless you have something critical to add. Especially in topics that are several years old- it isn't helpful, and is known as necroposting.
Don't post unrelated things in topics, including questions of your own. Make a new topic for your questions.
You can use the
 [code] and [/code] 
tags to show other users how to format something that Scratch would otherwise format.
You can use the
 [color=color name or hexadecimal value here] and [/color] 
tags to color text.
Little-known Scratch URLs:
scratch.pizza (redirects to main page)
https://scratch.mit.edu/projects/PROJECT ID HERE/remixtree (replace “PROJECT ID HERE” with project id number. Shows all the remixes of the project, and the remixes of those projects, and the remixes of those projects, and so on, as a chart. Link currently redirects to one of my projects)
EpicJ101
Scratcher
27 posts

How Do You Make Solid Platforms With Gravity Script On?

I Was Asking How Do You Make Platforms Solid (So Your Character Don't Sink)
BigNate469
Scratcher
500+ posts

How Do You Make Solid Platforms With Gravity Script On?

EpicJ101 wrote:

I Was Asking How Do You Make Platforms Solid (So Your Character Don't Sink)
When you hit a platform, first turn off the gravity script, then back out of the platform (by using something like:
define get out of platform
repeat until <not <touching [platform v] ?>>
change y by (1)
end
make sure that the custom block is set to run without screen refresh).

Highlight any part of this signature and press ctrl+shift+down arrow to see the rest of it
forever
if <person asks [what's a signature] :: sensing> then
Redirect to [https://en.scratch-wiki.info/wiki/Signature] :: motion
end
end
Please read the list of Officially Rejected Suggestions before posting a suggestion for Scratch! 100th post
This signature is designed to be as helpful as possible.
View all of the topics you've posted in:
https://scratch.mit.edu/discuss/search/?action=show_user&show_as=topics
View all of your posts:
https://scratch.mit.edu/discuss/search/?action=show_user&show_as=posts
Forum tips:
Don't title topics something like “HELP ME!!!”. It's not helpful, and won't get you as many responses.
Don't post in topics where the latest post is over ~2 months old, unless you have something critical to add. Especially in topics that are several years old- it isn't helpful, and is known as necroposting.
Don't post unrelated things in topics, including questions of your own. Make a new topic for your questions.
You can use the
 [code] and [/code] 
tags to show other users how to format something that Scratch would otherwise format.
You can use the
 [color=color name or hexadecimal value here] and [/color] 
tags to color text.
Little-known Scratch URLs:
scratch.pizza (redirects to main page)
https://scratch.mit.edu/projects/PROJECT ID HERE/remixtree (replace “PROJECT ID HERE” with project id number. Shows all the remixes of the project, and the remixes of those projects, and the remixes of those projects, and so on, as a chart. Link currently redirects to one of my projects)
EpicJ101
Scratcher
27 posts

How Do You Make Solid Platforms With Gravity Script On?

BigNate469 wrote:

EpicJ101 wrote:

I Was Asking How Do You Make Platforms Solid (So Your Character Don't Sink)
When you hit a platform, first turn off the gravity script, then back out of the platform (by using something like:
define get out of platform
repeat until <not <touching [platform v] ?>>
change y by (1)
end
make sure that the custom block is set to run without screen refresh).
How Do You Do It With Gravity?
BigNate469
Scratcher
500+ posts

How Do You Make Solid Platforms With Gravity Script On?

EpicJ101 wrote:

How Do You Do It With Gravity?
Like I said, turn off the gravity script until you are no longer on the platform. Something like:
if <touching [platform v] ?> then
set [touching the platform v] to [true]
get out of platform
end
if <(touching the platform) = [false]> then
gravity script
end
(Use my definition for the get out of platform block from above, insert your gravity script where it says “gravity script”)

Highlight any part of this signature and press ctrl+shift+down arrow to see the rest of it
forever
if <person asks [what's a signature] :: sensing> then
Redirect to [https://en.scratch-wiki.info/wiki/Signature] :: motion
end
end
Please read the list of Officially Rejected Suggestions before posting a suggestion for Scratch! 100th post
This signature is designed to be as helpful as possible.
View all of the topics you've posted in:
https://scratch.mit.edu/discuss/search/?action=show_user&show_as=topics
View all of your posts:
https://scratch.mit.edu/discuss/search/?action=show_user&show_as=posts
Forum tips:
Don't title topics something like “HELP ME!!!”. It's not helpful, and won't get you as many responses.
Don't post in topics where the latest post is over ~2 months old, unless you have something critical to add. Especially in topics that are several years old- it isn't helpful, and is known as necroposting.
Don't post unrelated things in topics, including questions of your own. Make a new topic for your questions.
You can use the
 [code] and [/code] 
tags to show other users how to format something that Scratch would otherwise format.
You can use the
 [color=color name or hexadecimal value here] and [/color] 
tags to color text.
Little-known Scratch URLs:
scratch.pizza (redirects to main page)
https://scratch.mit.edu/projects/PROJECT ID HERE/remixtree (replace “PROJECT ID HERE” with project id number. Shows all the remixes of the project, and the remixes of those projects, and the remixes of those projects, and so on, as a chart. Link currently redirects to one of my projects)

Powered by DjangoBB