Release it…NOW!!!!!
Or we could let him make it into a game with a story line and something to do rather than just wonder in and out of a building…
If you need help, just ask me. I so totally want to help you
Helping isn't that hard, I made it so it's simple to create levels.
Here's an example:
Spoiler
function world() -- The main world
addLine(1, 6, "up", 5) -- adds a line that begins at (1, 6) and goes up 5 blocks
addLine(2, 2, "right", 5)
addLine(7, 6, "up", 5)
addBlock(1, 6) -- adds a block at (1, 6)
addBlock(2, 6)
addBlock(3, 6)
addBlock(5, 6)
addItemMagicStaff(10, 10, "fire") -- adds a fire staff at (10, 10)
addBlock(6, 6)
addDoor(4, 6, "test") -- adds a door that will load a level named "test"
addBlock(7, 6)
addNPC(10, 10, "dumb") -- adds an NPC with the AI type dumb
if changeMainWorldCors then -- checks if the spawn cords should change
x = mainWorldX
y = mainWorldY
end
update() -- updates the screen
end
function createLevel(levelCreate)
if levelCreate == "test" then -- Defines the level "test"
addLine(1, 10, "up", 9)
addLine(2, 2, "right", 10)
addLine(12, 10, "up", 9)
addBlock(2, 10)
addBlock(3, 10)
addBlock(4, 10)
addDoor(5, 10, "world") -- adds a door to the main world
addLine(6, 10, "right", 6)
addItemBow(6, 6) -- adds a bow at (6, 6)
x = 5 -- changes the spawn cords for "test"
y = 9
changeMainWorldCors = true
mainWorldX = 4 -- change the cords where the player will spawn when he goes back to the main world
mainWorldY = 7
end
But does anybody REALLY want to have this game? I stopped working on it but if there are people that like it then I'll keep developing.