Discuss Scratch

X126
Scratcher
100+ posts

how do i make an RPG game

how do i make an RPG game

my project signature got eaten again
footsocktoe
Scratcher
1000+ posts

how do i make an RPG game

Put rpg tutorial in the search box and pick the one you like best.
ErnieParke
Scratcher
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:

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
soupisbest
New Scratcher
1 post

how do i make an RPG game

How do I make another area?
LordThror
Scratcher
100+ posts

how do i make an RPG game

soupisbest wrote:

How do I make another area?
You can use this to help. Please credit me though. I am not sure if it works because the RPG I made with it had some problems with this. If you want it to be scrolling I am thinking of making a scrolling tutorial on youtube soon.
Sandy_Sandstone
Scratcher
10 posts

how do i make an RPG game

I found this helpful
Kadiecus12F
Scratcher
19 posts

how do i make an RPG game

You can use this and this you can also see the script of my project as reference to see how it is done.
hope that helps! ;D
audwpcc19
Scratcher
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
Scratcher
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.
arvepro3579
Scratcher
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)

MASTERTECHCODER
Scratcher
1 post

how do i make an RPG game

???
-BANYAN-
Scratcher
7 posts

how do i make an RPG game

arvepro3579 wrote:

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

is that how i can make a platformer to with all the other codes
cleversquid47
Scratcher
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
Scratcher
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
Scratcher
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
Jaksoon
Scratcher
1 post

how do i make an RPG game

hndgbfxzvcdvfbxgcnhfvjmvhncgbxfvzdc
MDCCCLXVII
Scratcher
1000+ posts

how do i make an RPG game


Please don't reply if the post doesn't contribute to the discussion.
theodd7out
Scratcher
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
Scratcher
1000+ posts

how do i make an RPG game

MDCCCLXVII wrote:

Please don't reply if the post doesn't contribute to the discussion.
thomasthehedgehog13
Scratcher
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]

Powered by DjangoBB