
-----------------------------------
rose1997
Wed May 27, 2009 8:29 am

Maze Game
-----------------------------------
What is it you are trying to achieve?
Hey guys, i want to build a maze game but i dont know how??
Can you guys give me an idea.

What is the problem you are having?
I have everything, but i only want to draw lines so it looks like a maze but i'm having trouble drawing those lines on turing.
and i'm also having trouble with the x,y, values.


Describe what you have tried to solve this problem



Post any relevant code (You may choose to attach the file instead of posting the code if it is too long)








Please specify what version of Turing you are using


Mod Edit I removed the line of !s in your title and the word "help" neither of witch is needed.

-----------------------------------
Zeroth
Wed May 27, 2009 8:47 am

Re: Maze Game HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-----------------------------------
Your not going to get a lot of help like this. Putting more exclamation marks does not make it more likely we'll help you or feel your urgency. Now, what have you tried, what resources have you looked at? I'm sure the documentation must have the information you are looking for somewhere ;)

-----------------------------------
tjmoore1993
Wed May 27, 2009 5:30 pm

RE:Maze Game
-----------------------------------

var pic : int := Pic.FileNew ("1.bmp")
var x, y, click : int

loop
    Mouse.Where (x, y, click)
    Draw.Line (0, 20, maxx, 20, black)
    Draw.Line (0, 0, maxx, 0, black)
    if whatdotcolour (x, y) not= white then
        locate (1, 1)
        put "TOUCHED"
    end if
end loop

