Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » how do i make an RPG game
- X126
-
100+ posts
how do i make an RPG game
how do i make an RPG game
my project signature got eaten again
my project signature got eaten again
- footsocktoe
-
1000+ posts
how do i make an RPG game
Put rpg tutorial in the search box and pick the one you like best.
- ErnieParke
-
1000+ posts
how do i make an RPG game
Part of learning how to make an RPG is breaking it down into simple problems. For example, ini an RPG, you usually want the character to be able to walk around. How do you do that? One option is this:
Most RPG's also usually have exploration. You can do that a variety of ways. One of them is scrolling, though that is slightly advanced. Another is changing the background if you reach the edge. In that case, if touching edge, change the background.
An RPG also usually includes talking and people. You can use the [say []] and [say [] for () secs] blocks to help there. Broadcasts and or wait blocks will also be helpful in making sure people take turns talking.
If you have a specific problem that you want to solve, feel free to ask.
Thoughts,
ErnieParke
when gf clicked
forever
if <key [right arrow v] pressed?> then
change x by (5)
end
if <key [left arrow v] pressed?> then
change x by (-5)
end
end
Most RPG's also usually have exploration. You can do that a variety of ways. One of them is scrolling, though that is slightly advanced. Another is changing the background if you reach the edge. In that case, if touching edge, change the background.
An RPG also usually includes talking and people. You can use the [say []] and [say [] for () secs] blocks to help there. Broadcasts and or wait blocks will also be helpful in making sure people take turns talking.
If you have a specific problem that you want to solve, feel free to ask.

Thoughts,
ErnieParke
- audwpcc19
-
4 posts
how do i make an RPG game
when green flag clicked
if <key [ v] pressed?> then
change x by (5)
end
Last edited by audwpcc19 (April 28, 2020 09:29:00)
- RL1123
-
1000+ posts
how do i make an RPG game
You can use the RPG tutorial by warfame to help you.
It is a 7 part series, I think.
It is a 7 part series, I think.
- arvepro3579
-
100+ posts
how do i make an RPG game
Basic scroll.
when green flag clicked
set [scroll x v] to [0]
set [scroll y v] to [0]
forever
set x to (scroll x)
set y to (scroll y)
if <key [up arrow v] pressed?> then
change [scroll y v] by (5)
end
if <key [down arrow v] pressed?> then
change [scroll y v] by (-5)
end
if <key [left arrow v] pressed?> then
change [scroll x v] by (-5)
end
if <key [right arrow v] pressed?> then
change [scroll x v] by (5)
end
Last edited by arvepro3579 (April 28, 2020 13:30:25)
- -BANYAN-
-
7 posts
how do i make an RPG game
is that how i can make a platformer to with all the other codes Basic scroll.when green flag clicked
set [scroll x v] to [0]
set [scroll y v] to [0]
forever
set x to (scroll x)
set y to (scroll y)
if <key [up arrow v] pressed?> then
change [scroll y v] by (5)
end
if <key [down arrow v] pressed?> then
change [scroll y v] by (-5)
end
if <key [left arrow v] pressed?> then
change [scroll x v] by (-5)
end
if <key [right arrow v] pressed?> then
change [scroll x v] by (5)
end
- cleversquid47
-
4 posts
how do i make an RPG game
Platformer scrolls left to right, but this code scrolls up down left and right. So I think no
- NikitoDonut123
-
8 posts
how do i make an RPG game
Idk how to make a rpg game but yes how to make killer parts

Last edited by NikitoDonut123 (Aug. 31, 2020 21:02:28)
- NikitoDonut123
-
8 posts
how do i make an RPG game
I ment
when green flag clicked
forever
if <touching color [#b3130d] ?> then
go to x: (where ever beggining is?) y: (where ever beggining is?)
end
end
- MDCCCLXVII
-
1000+ posts
how do i make an RPG game

Please don't reply if the post doesn't contribute to the discussion.
- theodd7out
-
14 posts
how do i make an RPG game
when green flag clicked
broadcast [ I'm confused :(]
play sound [ mii channel theme]
Last edited by theodd7out (Jan. 9, 2021 21:53:18)
- MDCCCLXVII
-
1000+ posts
how do i make an RPG game
Please don't reply if the post doesn't contribute to the discussion.
- thomasthehedgehog13
-
15 posts
how do i make an RPG game
How do I make your team follow you? and how to gain team members and lose them.
when green flag clicked
switch costume to [PK fire spammer.png v]
- Discussion Forums
- » Help with Scripts
-
» how do i make an RPG game