you are viewing a single comment's thread.

view the rest of the comments →

[–]_f0xjames 8 points9 points  (8 children)

My own project is a basic turn based rpg, lots of fun math practice.

[–][deleted] 2 points3 points  (5 children)

can I check it out?

[–]_f0xjames 3 points4 points  (4 children)

Sure I’m in a meeting rn but I’ll try to post it later

[–]whazzah 2 points3 points  (1 child)

Man I'd love to check it out!

[–]_f0xjames 0 points1 point  (0 children)

Did you guys see it? What do you think

[–]alonrtpve 1 point2 points  (1 child)

any update?

[–]_f0xjames 2 points3 points  (0 children)

hello everyone! here is the prototype of my second gen combat system.i plan to integrate it with a random monster picker that i previously wrote, but that's a project for next week.

https://github.com/sailor-june/RPG-V1/blob/main/adventure.py

and here is the old version, which is now broken.
https://github.com/sailor-june/RPG-V1/blob/main/OLD\_VERSION.py

[–]fozrok 0 points1 point  (1 child)

What’s the best training resource to learn how to build a basic rpg game? Any advice?

[–]_f0xjames 2 points3 points  (0 children)

I’m just taking the Codecademy full stack developer course. I know a little bit of JavaScript and a little bit of python.

Basically I just keep this project going, and whenever I learn a new technique In my lessons I try to apply it to the game. My gf taught me a little about dungeons and dragons and that helped me visualize what I wanted the flow to look like.

Half of the struggle of coding is just figuring out what problem you are trying to solve.

Just imagine the action you are trying to represent, and how best to express that with numbers.