But when I use VCam to make the camera follow the player, the score thing wont follow the VCam, I've tried to make it a symbol, but then it wont work (so I cant write actions to it).
oh man your a life safer. i need to make a game which has a chicken that drops eggs from above and i have to collect them with my character before they hit the ground. i still need to figure out how to make the chicken drop 10 eggs each in some time limit. well atleast i know how to make the eggs give me points.
@marioandluigi244 looooooooooooooooool,i got answer after one year xD, anyway i dont need this for long time .But its so funny to see something what i did 1 year ago,haha
1 coin collected an NaN scores lololol
pivotpro2010 2 months ago
the file is so hard to download ~_~
TripToYou 7 months ago 2
Hi Josh.
CompTr1cks 11 months ago
keep pressing 8, Josh says Hi. (;
mid10hs 1 year ago
josh says hi
lumugraph 1 year ago
How do you make it so that the score bar follows your player (for bigger levels)? Pleaseeee someone help me? D:
McRacoon66 1 year ago
@McRacoon66 Yeah, really. I'm having a hard time finding a tutorial about that, myself.
Eragarev 1 year ago
how do you make it so the score goes up more than one like 10???
0987654321284 1 year ago
It worked perfectly :)
But when I use VCam to make the camera follow the player, the score thing wont follow the VCam, I've tried to make it a symbol, but then it wont work (so I cant write actions to it).
You got any solution?
FBAwesome 1 year ago
Comment removed
FBAwesome 1 year ago
whenever i use this codeing for the score the score does not go up...is this because i am making a target shooting game?
SurfersGlory 1 year ago
um...i have a folder called adobe cs3 i clikc on it and it shows folders and reinstall or uninstall...how do i open up adobe cs3?
kirbymaster2323 2 years ago
oh man your a life safer. i need to make a game which has a chicken that drops eggs from above and i have to collect them with my character before they hit the ground. i still need to figure out how to make the chicken drop 10 eggs each in some time limit. well atleast i know how to make the eggs give me points.
WasabiHotChili 2 years ago
do you know how to make a game where you click a target, (like a shooter) and it gives you a point?
bennythebull9 2 years ago
No sorry.
I am no good at mouse flash games.
Ask another Flash Guru
ThomasB2685 2 years ago
@bennythebull9
try this
on the target put
onClipEvent(enterFrame){
on(press){
this.gotoAndPlay(2);
_root.score++;
}
}
minifrij 1 year ago
@bennythebull9 use this code onClipEvent (enterFrame)
{ Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse;
}
GamingTTC 7 months ago
where do i put this code in?????
richeedsf 2 years ago
How do you make it so when you get all coins it goes to next frame?????
richeedsf 2 years ago
how do you make is so the score thing moves with the screen?
ZzX42 2 years ago
how do i make it so the thing moves when you click on the screen?
jacksparrow322 2 years ago
And what do you mean by +1
ThomasB2685 2 years ago
i mean like maze game and when i reach finish it count score +1 . i move wiht Mouse.
mazaisvilijs 2 years ago
if you mean like you hit the finish and score goes up 1 and then moves on to the next level i think the code is
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.score++;
_root.gotoAndStop(2)
}
}
Change the 2 in brackets to the frame the next level is on. you can delete the gotoAndStop(2) bit if you dont want it to go to the next level
ThomasB2685 2 years ago
@mazaisvilijs at the end of the maze you could put a little circle and make a hitTest thing and put the score code in it and that could work
marioandluigi244 1 year ago
@marioandluigi244 looooooooooooooooool,i got answer after one year xD, anyway i dont need this for long time .But its so funny to see something what i did 1 year ago,haha
mazaisvilijs 1 year ago
what sort of target
ThomasB2685 2 years ago
sorry doesnt work because i put character in the code and not char i will change the code
ThomasB2685 2 years ago
hey but do you know what would be code for a maze game, like if i go to target and score is +1 ?
mazaisvilijs 2 years ago
the one you put in score item
mazaisvilijs 2 years ago
did you make the instance name in the character as character
ThomasB2685 2 years ago
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.score++;
unloadMovie (this);
}
}
mazaisvilijs 2 years ago
code doesnt work
mazaisvilijs 2 years ago
which code do you mean
ThomasB2685 2 years ago