Be a Supporter!

Need Serious Help.

  • 414 Views
  • 3 Replies
New Topic Respond to this Topic
dimondboi
dimondboi
  • Member since: Feb. 14, 2007
  • Offline.
Forum Stats
Member
Level 04
Blank Slate
Need Serious Help. 2007-02-24 04:53:25 Reply

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!

backflipair
backflipair
  • Member since: Jul. 14, 2006
  • Offline.
Forum Stats
Member
Level 25
Blank Slate
Response to Need Serious Help. 2007-02-24 05:01:13 Reply

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.

dimondboi
dimondboi
  • Member since: Feb. 14, 2007
  • Offline.
Forum Stats
Member
Level 04
Blank Slate
Response to Need Serious Help. 2007-02-24 05:03:43 Reply

Awsome. Thanks!

Blue-Devil23
Blue-Devil23
  • Member since: Sep. 4, 2005
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Response to Need Serious Help. 2007-02-24 05:06:45 Reply

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.