The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.36 / 5.00 33,851 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.09 / 5.00 12,195 Viewsok, so ive made a platformer, ive made 10 levels already, but this is my problem:
the levels arnt conjoined. i need the script, so if i hit the portal at the end of each level, it will go onto the next level, and so on. i also need a password script, so a password for each level.
Its Also 1100 x 800. which is double the automatic size. i honestly need to know if this size is allowed in newgrounds.
Hope you can help!
At 2/24/07 04:53 AM, dimondboi wrote: the levels arnt conjoined. i need the script, so if i hit the portal at the end of each level, it will go onto the next level, and so on.
onClipEvent(enterFrame){
if(this.hitTest(_root.portal)){
_root.gotoAndPlay(whatever);
}
}
i also need a password script, so a password for each level.
PasswordButton.onRelease=function(){
if(_root.passwordbox=="level1password"){
_root.gotoAndPlay(whatever);
}
if(_root.passwordbox=="level2password"){
_root.gotoAndPlay(whatever);
}
}
And so on, and so forth
Its Also 1100 x 800. which is double the automatic size. i honestly need to know if this size is allowed in newgrounds.
Should be allowed.
At 2/24/07 04:53 AM, dimondboi wrote: ok, so ive made a platformer, ive made 10 levels already, but this is my problem:
the levels arnt conjoined. i need the script, so if i hit the portal at the end of each level, it will go onto the next level, and so on. i also need a password script, so a password for each level.
Its Also 1100 x 800. which is double the automatic size. i honestly need to know if this size is allowed in newgrounds.
Hope you can help!
I don't recommend that you have 1100x800. Most people have a screen resolution of 1024x768.