RPG How To
#1 Members - Reputation: 109
Posted 29 October 2012 - 05:01 PM
So I have learned the basics and have been able to create a game window with Eclipse and Slick2D. Made a back ground with a .jpg and made a .png image to move around the screen with the keyboard. I want to start to make my RPG but how do I go about doing that? How do I make the map? How to do I make the levels and all that good stuff.
#2 Marketplace Seller - Reputation: 9277
Posted 29 October 2012 - 05:29 PM
Here's a few threads on the topic that I remember:
- 2d overhead tiling "engine"
- How to Structure a Tile Based Game? (geared a little towards C++, but could be applied to other languages)
- 2D game map WITHOUT tiles.
All glory be to the Man at the right hand... On David's throne the King will reign, and the Government will rest upon His shoulders. All the earth will see the salvation of God.
Of Stranger Flames - [indie turn-based rpg set in a para-historical French colony] | Indie RPG development journal
#4 Marketplace Seller - Reputation: 9277
Posted 29 October 2012 - 06:01 PM
A) How do you use the Tiled editor to make and save a map?
Or
B) How do you use the maps Tiled creates in your own game?
All glory be to the Man at the right hand... On David's throne the King will reign, and the Government will rest upon His shoulders. All the earth will see the salvation of God.
Of Stranger Flames - [indie turn-based rpg set in a para-historical French colony] | Indie RPG development journal
#6 Members - Reputation: 1562
Posted 30 October 2012 - 07:52 AM
#7 Marketplace Seller - Reputation: 9277
Posted 30 October 2012 - 10:58 AM
Well, it's fairly self-explanatory, have you tried using it yet to see what you already understand? Here are "tiled editor tutorials" on YouTube, which should help further. Is there a specific problem you need help with? I've never used Tiled, but every tile editor I have used has been very straightforward. What, specifically, are you needing help with? Saying, "I need help" isn't that great. Saying, "I need help trying to do X, and I've already tried Y but got the wrong results" makes it much easier for us to help you, because then we know what you've already tried, and what you are trying to do.how do i use the tiled
Tools produce files, and you write code in your game that loads files - file formats are sometimes complex and sometimes simple. Rather than bloat programming languages with details on how to load every kind of file someone once created, programming languages instead provide you with the tools that open a file, and read the data, and the programmer has to interpret the data and figure out how to use it. Sometimes, like for image files, a programming language has built-in support for those. Other times, you either have to glue it together yourself, or find someone else online who has already glued it together for you.and how do i use it in my game. im running eclipse and slick2d.
Luckily, in this case, BitMaster helpfully pointed to where someone else has glued it together. Even so, you'll still have to read the documentation, and figure out how to plug it into your code (which is unique from everyone else's). We can help point you in the right direction (which we've done), and after you go in that direction and try, we can help explain what you are doing wrong - but we can't explain "everything", just specific detailed questions you ask about specific problems you encounter. Otherwise, all we can do is say to read tutorials and documentation, and to experiment and try.
Sorry if that seems rude! Programming takes work. It's fun, but it takes work, and others can't do your part for you. We can most certainly help you succeed at doing your part, but we can't do your part. You can help us help you do your part by being as detailed as possible in describing what you want to do, what you've already tried, and what result you are getting from your prior attempts.
tldr: Go ahead and see what you can figure out on your own. And for the parts you can't figure out, be very detailed in your questions and explain what you've already tried.
All glory be to the Man at the right hand... On David's throne the King will reign, and the Government will rest upon His shoulders. All the earth will see the salvation of God.
Of Stranger Flames - [indie turn-based rpg set in a para-historical French colony] | Indie RPG development journal






