The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.39 / 5.00 38,635 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.09 / 5.00 15,161 Viewsk so like i made a game right? and at the end of the level i wanna put sumthin thatll be like
if (_root.hero.hitTest(_x, _y, true)) {
gotoandplay(3);
}
so when the pall touchs the end of the maze itll go to my frame of choicethus beatin the level i need a script or else my game cant continue being made
help help help me me me
i can voice act =3
It'll be your best friend. Go there before making a new thread next time.
AS: Main
Don't read this sentence.
At 5/13/08 07:34 PM, clarkitupp wrote: k so like i made a game right? and at the end of the level i wanna put sumthin thatll be like
if (_root.hero.hitTest(_x, _y, true)) {
gotoandplay(3);
}
so when the pall touchs the end of the maze itll go to my frame of choicethus beatin the level i need a script or else my game cant continue being made
help help help me me me
Use proper grammar and spelling (At least spelling). I can't understand what you are asking (Otherwise I would help).
if (_root.hero.hitTest(_x, _y, true)) {
_parent.gotoandplay(3);
}
Try that.
:'(
At 5/13/08 09:42 PM, Treerung wrote: if (_root.hero.hitTest(_x, _y, true)) {
_parent.gotoandplay(3);
}
Try that.
gotoandplay has to be changed to gotoAndPlay
Its case sensitive
At 5/13/08 09:30 PM, salted-tator-tot wrote:At 5/13/08 07:34 PM, clarkitupp wrote: k so like i made a game right? and at the end of the level i wanna put sumthin thatll be likeUse proper grammar and spelling (At least spelling). I can't understand what you are asking (Otherwise I would help).
if (_root.hero.hitTest(_x, _y, true)) {
gotoandplay(3);
}
so when the pall touchs the end of the maze itll go to my frame of choicethus beatin the level i need a script or else my game cant continue being made
help help help me me me
hey man dont be such a spelling cop i wrote this in like 2 seconds cuause i was searching a buncha sites at the same time for the script
i can voice act =3
At 5/14/08 06:59 PM, clarkitupp wrote:At 5/13/08 09:30 PM, salted-tator-tot wrote:hey man dont be such a spelling cop i wrote this in like 2 seconds cuause i was searching a buncha sites at the same time for the scriptAt 5/13/08 07:34 PM, clarkitupp wrote: k so like i made a game right? and at the end of the level i wanna put sumthin thatll be likeUse proper grammar and spelling (At least spelling). I can't understand what you are asking (Otherwise I would help).
if (_root.hero.hitTest(_x, _y, true)) {
gotoandplay(3);
}
so when the pall touchs the end of the maze itll go to my frame of choicethus beatin the level i need a script or else my game cant continue being made
help help help me me me
Your whole point is to get help, you need people to be able to understand you to get that help. A few spelling errors are ok, but you have to at least be able to understand what is being asked. You aren't committed to having to keep the same writing which you started with, you have a delete key for a reason.
here we go
onClipEvent (enterFrame){
if (_root.hero.hitTest(_x, _y, true)) {
gotoandplay(3);
}
} damn, I didn't see that! gotoandplay must be gotoAndPlay!
onClipEvent (enterFrame){
if (_root.hero.hitTest(_x, _y, true)) {
gotoAndPlay(3);
}
}
sorry for double post
At 5/14/08 09:12 PM, dragonjet wrote: damn, I didn't see that! gotoandplay must be gotoAndPlay!
onClipEvent (enterFrame){
if (_root.hero.hitTest(_x, _y, true)) {
gotoAndPlay(3);
}
}
sorry for double post
hmmm... didnt work... the ball just goes under it
i can voice act =3
Your whole point is to get help, you need people to be able to understand you to get that help. A few spelling errors are ok, but you have to at least be able to understand what is being asked. You aren't committed to having to keep the same writing which you started with, you have a delete key for a reason.
sayin dat mah spellinz r rong ait help'n meh sooo... why not try to help me fix this problem eh? its like... 2 weeks old probably.
i can voice act =3
Try this
oh i cant do the script thingy on the html but try this
onClipEvent(enterFrame){
if(this.hitTest(_root.hero)){
_root.gotoAndStop(3);
}
}
It works for me and my Flash 8 AS2