Athanas Quest

Hello JGO, my name is Toby. I am a 14 year old game programmer and I am currently working on my first big project. This game is a sidescroller/RPG/sandbox game. Yes alot of stuff to be added. The game only has a basic map editor which uses colors from a picture and a walking player. I want to get the game into alpha by the end of july. Here is what is implemented so far.


http://s27.postimg.org/6g34v25b3/loading.jpg


http://s27.postimg.org/4pyci68v3/menu.jpg


http://s11.postimg.org/b9fzf773j/shot_1.jpg
#

As you can see very very basic. I would love ideas for the game and once I figure out how to export a slick and lwjgl project I will upload a download link. Please stay tuned for more updates.

Thanks

Toby

[offtopic]
My name is Toby also! How dare you steal my name :wink:

;D I will change my name just for you aha!

The background is kinda harsh on the eyes, try changing it to (232, 255, 255) skies are often a lighter color. :slight_smile:
Also, what do you plan on adding to this? (I really recommend making a check list, its easier to manage)

Looks great so far though!

Are you planning a quest system of some sort? Also, some foliage / land features would be cool to add.

Seems like a noice project!

Can you just blow up those images, though? They are a tad tiny.

Yeahh so what I have added so far:

  • Main menu system / different game states
  • Walking player with jumping
  • Animation
  • Basic collision detection
  • Loading levels from images using color picking
  • Easy way to adding new tiles from a spritesheet
  • Music and sounds

This is what is in the game after about a month of coding. I have wrote the main game engine which can be easily used to implement new features. What am I doing now?

  • Creating a proper level
  • Trying to have a scrolling background but that is not working any help would be appreciated
  • Start writing the enemy class and add health and basic attack
  • Re-do collision because that makes a few bugs (Do this after you can have a basic playable game)
  • Trying to export the game (Again any help, Im using slick and lwjgl)

I will post screen shots of the development and try and upload a playable alpha in the near future. Any ideas for what to be added I would love that.

Toby

A few friends of mine (They are here from JGO) are willing to help you out. Even if they don’t want to I will.

Here is my skype: facebook:pickuptruck2000 (Facebook made it for me :-\ )

Send me a request!

My name is Waleed Ghazal, I’m 14 too. I was wondering if I can collaborate with you on this game and possibly help out with programming.
I also know of a tool that can distribute LWJGL projects.
I can also help with the development of an AI, structures and simple building too.
Skype: waleed.ahmad.ghazal
Steam: robocos123
I hope I can be of help.
Thanks

I really appreciate the help. As this is a proper project I would need you two to send me some work and show me why you want to be a part of it.

Toby

Update:

I don’t have any gameplay updates to show you because I haven’t done any development of the game for a couple of days. I had this huge physics project which has taken up most of my time but is nearly finished. I have created a twitter profile where I will keep you up to date with the game. You can follow me @Toby_Dev_Drane

Just going to put this out there in response to those of you who are young and trying to work together. Work alone for now. You aren’t good enough at programming or cooperation to collaborate yet in most cases. I know it sounds like fun to put together a group, but it’s likely you won’t get anything done, or you will have issues with cohesion. Not trying to be mean, but it’s unlikely to work out. If you still really want to make a team, make a plan first. Split up work properly, make contact times, set up a git repository, and continue to learn with each other. Don’t flake out, put a lot of hours into it. Treat it like a job.

On Topic more:
For the scrolling background, I recommend either just making a few cloud images and making them appear in the background randomly offscreen, move in one direction, and disappear one they’re offscreen, or you can make one long image that loops once it gets to the end.

Yes thanks for this, I have decided to work alone frm know on. Luckly I can do a lot of work on the game over this week and I will post a update of the game with the new level editor implemented.

Just to support bilznatch’s wise words… It is easier and more fun to work alone than in a group. Developers work in groups only out of necessity, and generally try to keep the groups as small as possible.

Input:

I am at the stage where I can start to re-design some aspects of my game. Im going to spend a bit of time on level design. I need your input on what to use for a map. Tiled or a RGB based map.

Any help would be really really useful

Thanks Toby

No point doing it yourself. Use Tiled.
(Unless you want the experience creating your own editor will bring you, in which case, make your own version of tiled, don’t bother making just a basic png -> text/object type converter)

I do recommend tiled over the RGB method though. It gives you a better idea of how things will look without loading them up, and it already has all the things you need in it’s export format.

Yeahh thanks for that, I will use tiled because it is quite simple to implement in slick2d. The only problem I have is collision detection with tiled but I’m sure I will figure it all out. I am going to spend the next few weeks completly re-writing the game engine because it is an complete mess.