hello i'm stuck on my pacman game i need to find out how i can make the gold things for pacman to eat thanks
ok so i've figured that out now alls i need to know is how to do a pont system thing
Last edited by jackched123 (2009-05-10 13:02:05)
Offline
jackched123 wrote:
hello i'm stuck on my pacman game i need to find out how i can make the gold things for pacman to eat thanks
ok so i've figured that out now alls i need to know is how to do a pont system thing
to do the points all you have to do is go to variables type in score and then im sure your teacher could help you from there, if not write that here and i will tell you what to do
Offline
jackched123 wrote:
hello i'm stuck on my pacman game i need to find out how i can make the gold things for pacman to eat thanks
ok so i've figured that out now alls i need to know is how to do a pont system thing
You need to make a variable called 'Score'. Then make a script on the gold things saying:
<if><touching[ pacman ]
<change{ score }by( 1 )

Offline
Mozaz wrote:
jackched123 wrote:
hello i'm stuck on my pacman game i need to find out how i can make the gold things for pacman to eat thanks
ok so i've figured that out now alls i need to know is how to do a pont system thingYou need to make a variable called 'Score'. Then make a script on the gold things saying:
[blocks]<if><touching[ pacman ]
<change{ score }by( 1 )[/blocks]
It's better as:
[blocks]<if><touching[ pacman ]
<hide>
<change{ score }by( 1 )
<end>
[/blocks]
This way, it couldn't count a lot of points.
Offline