I Need Help With My Turing Math Game
Author |
Message |
andrewhill282001
|
Posted: Fri Jan 13, 2017 2:03 pm Post subject: I Need Help With My Turing Math Game |
|
|
Hey, im in grade 10 and i need to make a math game quiz with graphics for a big project. I very confused on how to start i was wondering if u can help me. this is what i have so far. setscreen ("graphics:640;480,offscreenonly,nocursor")
var font1 : int
font1 := Font.New ("mono:11:bold")
var font2 : int
font2 := Font.New ("mono:11")
var intro :string
var mypic : int := Pic.FileNew ("background_cpt1.bmp")
Pic.Draw (mypic, maxx div 640, maxy div 480, picUnderMerge)
var i : int := 0
process playstuff
loop
Music.PlayFile ("musicc.wav")
end loop
end playstuff
fork playstuff
Font.Draw (" Welcome to the Ultimate Math Quiz", 165, 360, font1, white)
Font.Draw ("Press P to start the quiz", 200, 220, font2, white)
var c:string(1)
getch(c)
put c
View.Update
cls
put "Hello"
Thanks - Andrew |
|
|
|
|
|
Sponsor Sponsor
|
|
|
TipsyCzar
|
Posted: Mon Jan 16, 2017 8:36 am Post subject: Re: I Need Help With My Turing Math Game |
|
|
You'll want to post what the requirements for your project are. |
|
|
|
|
|
|
|