i need some help with a game i am designing he’s some of the things i need help with
-assigning points to objects
-count all the points you get whilst playing
-creating a top 5 score chart at the end of the game whilst remembering the name you chosen
i will be very grateful if anyone could help me out
Thank You
For the high score thing, search around for Marvo(Used to be Stella)'s pinball game. He made a tutorial for it some time after.
For the others, do another search. You will find something useful, guranteed
Hello
here’s a quick rough
Give to each object a INT property with the name of the object ( or whatever)
Now, your player should have a Collision sensor for the int prop name of each of those objects, ex: Collision SEnsor- Prop:cube -> AND -> Property Actuator - Add 5 to Counter property
“Counter” it’s the text object/plane that will show the points
You must select the player object and the counter one at same time in order to link player’s collision to counter’s Actuator
There’s many ways to achieve the task, and this is a basic one
To store highest scores you’ll need a python script, probably, so, I let the python gurus answer you
Bye