Author |
Message |
Agent_b
|
Posted: Fri May 21, 2004 9:37 am Post subject: Bowling game help |
|
|
Need help for math for 10 pin bowling game, any sugestions/ |
|
|
|
|
|
Sponsor Sponsor
|
|
|
templest
|
Posted: Fri May 21, 2004 9:49 am Post subject: (No subject) |
|
|
what do you mean math? that's a pretty vague question.
Do you need help making the ball look like it's going at the right speed? the speed/distance/rotation/ect of falling pins? be specific. |
|
|
|
|
|
Agent_b
|
Posted: Fri May 21, 2004 10:22 am Post subject: (No subject) |
|
|
The scoring |
|
|
|
|
|
poly
|
Posted: Fri May 21, 2004 11:52 pm Post subject: (No subject) |
|
|
what in the hell...the scoring? I thought you bowled, by now you should have the scoring down?
Anyway your gonna have to leave a bigger description of what you want to accomplish |
|
|
|
|
|
MyPistolsIn3D
|
Posted: Sat May 22, 2004 4:54 pm Post subject: (No subject) |
|
|
Ok , heres the deal Bobby. Knock down the pins in one shot = a strike. Knock them down in two shots = a spare..... |
|
|
|
|
|
poly
|
Posted: Sat May 22, 2004 5:33 pm Post subject: (No subject) |
|
|
haha stew has it right, silly me hehehehehe |
|
|
|
|
|
Agent_b
|
Posted: Sat May 22, 2004 6:43 pm Post subject: Lol |
|
|
Yea, but i mean like if i get a strike and 2 more the first one is 30points, if i get a spare it's 20, and if i get 7-8 or w/e its 10+number, so idk really u kno im dumb lol |
|
|
|
|
|
Pickles
|
|
|
|
|
Sponsor Sponsor
|
|
|
MyPistolsIn3D
|
Posted: Sun May 23, 2004 12:31 pm Post subject: (No subject) |
|
|
Just have variables for each shot
code: | var shot1 : int
var shot2 : int
var shot3 : int |
Then input the scorre into each variable and at the end calculate final score
code: | put "Your score is:", (shot1 + shot2 + shot3) |
And if you have lotsa shots put them in an array. |
|
|
|
|
|
|