Maps

Hi I was wondering how I would make maps for a top - down viewed game. I have seen it done by using tables and for loops but I can’t seem to find anything in the forums. How would I do this? Thanks in advance!!

I would take a look at @SkyTheCoder’s game, “10Life” It shoukd answer that question,

But basically, (correct me if I’m wrong anyone) you have a table that defines the properties if a world, Wall, Floor, Door, etc. such as:

WorldData = {
{1,0,0},
{0,0,1},
{1,0,0}
}

Then when the character position is on a space, it reads whats on that square(data) and displays it. For more indepth and 3D, look at @Xavier’s 3D Tile game on the forums(quick search should yield it)

ok thanks!

Where would I find the code for it?

Here

thanks for the help