I have a question, where would be the best place to start to create a game for mobile users. This will be a multiplayer mobile game.
How you would move on the map, would be from a link going north east south or west. The game will be browser based and require
a reload to move the character over one space. The setup for this game would be something like this...
72x72Image
HP:XX
Mana: XX
North
East
South
West
This is where things start to puzzle me though, How would I create a map that they could move up and down on. Mobile phones are very very
limited so the image would be 72x72. I have an idea of one thing. I create a whole bunch of small 8x8 images.
Such as player(your character moving in game.) the ground, mountains etc. In the end it really wouldnt be that many pictures.
Now how would I be able to combine them/duplicate them as needed to create a small map.
When I say 72x72 pixel image, thats just the piece of the map at the time that I want to display. In reality the map would be bigger. Here is an example
of what I mean.
ground
cavewall
player
turn them 3 small 8x8 images into something like this.
MMMMMMMMM
MMMMMMMMM
M--------
M--------
M---P----
M--------
M--------
M--------
M--------
HP: xx
Mana: xx
north
east
south
west
aka
HP: xx
Mana: xx
north
east
south
west
Things you need to consider are that this game should be playable from ANY phone. That includes old ones. This is the reason why I think I should go along the lines of something
text based, then have something convert the text into image. So that way an option to have image or text would easily be able to be implemented. Any ideas? Thanks in advance.
How you would move on the map, would be from a link going north east south or west. The game will be browser based and require
a reload to move the character over one space. The setup for this game would be something like this...
72x72Image
HP:XX
Mana: XX
North
East
South
West
This is where things start to puzzle me though, How would I create a map that they could move up and down on. Mobile phones are very very
limited so the image would be 72x72. I have an idea of one thing. I create a whole bunch of small 8x8 images.
Such as player(your character moving in game.) the ground, mountains etc. In the end it really wouldnt be that many pictures.
Now how would I be able to combine them/duplicate them as needed to create a small map.
When I say 72x72 pixel image, thats just the piece of the map at the time that I want to display. In reality the map would be bigger. Here is an example
of what I mean.
ground
cavewall
player
turn them 3 small 8x8 images into something like this.
MMMMMMMMM
MMMMMMMMM
M--------
M--------
M---P----
M--------
M--------
M--------
M--------
HP: xx
Mana: xx
north
east
south
west
aka
HP: xx
Mana: xx
north
east
south
west
Things you need to consider are that this game should be playable from ANY phone. That includes old ones. This is the reason why I think I should go along the lines of something
text based, then have something convert the text into image. So that way an option to have image or text would easily be able to be implemented. Any ideas? Thanks in advance.