Page 1 of 1

Help!!!!!!

PostPosted: Tue May 15, 2012 6:24 am
by Halosex
guys i am new to this place can you guys give me a video of how to make a sex flash game and can you make it step by step for a noob because i am a noob to flash :cry: and i am useing 5 so help so please help i need a video so help :!:

Re: Help!!!!!!

PostPosted: Tue May 15, 2012 7:37 pm
by BlueLight
First think to do to get my help is try to get 10 post and stay a active member of the forum.

As for video, do you really want video when we'll be dealing with a lot of text. I work in java and my program for the GUI alone is over 1000 lines of code. If i need you to copy something then it's easier for me and you if we have a text format for explaining it.

Re: Help!!!!!!

PostPosted: Wed May 16, 2012 12:03 am
by FuzzFace
Bluelight is good with what he does. hands on learning is way better than video imo.

Re: Help!!!!!!

PostPosted: Sat May 19, 2012 11:51 am
by OwnerOfSuccuby
Halosex Wrote:guys i am new to this place can you guys give me a video of how to make a sex flash game and can you make it step by step for a noob because i am a noob to flash :cry: and i am useing 5 so help so please help i need a video so help :!:


It is not that easy step by step.

To make a Sex game you need 3 things:
1)You can draw or take some where characters, that you will use. You can find videos how to learn to draw in internet. Or take SWF animations/characters there :mrgreen:

2)You have to learn how to simple animate objects. Yhere are a lot of it on the interbet for example:
http://www.youtube.com/watch?v=usavOy8WaBI
http://www.youtube.com/watch?v=n8rwWeUiseM
http://www.youtube.com/watch?v=Z5vG-5Sb ... re=related
http://www.youtube.com/watch?v=4qOuvtgA ... ure=relmfu (Some times some animators use "bones" but some times it is not a good solution).
http://www.youtube.com/watch?v=FWlCswQk10g

3)You need to get some of program algoritms that will work with what you made in 1 and 2 or wright it by your self.

There are a lot of algoritms, it depends what do you want to do. For some thing simple - you will need only 4-5 comands. (Play/Stop/gotoAndStop/gotoAndPlay/ On Button Click http://www.adobe.com/resources/richmedi ... ers_guide/) you can look it in their help.

For some thing more harder:
For example: http://depositfiles.com/files/1wvrr0bdw
http://www.newgrounds.com/portal/view/455972
etc.

A lot of good stuff is there: http://flashkit.com/

Re: Help!!!!!!

PostPosted: Sat May 19, 2012 12:48 pm
by PenName15
Or maybe you can get some help from professionals!

Re: Help!!!!!!

PostPosted: Sat Jun 09, 2012 5:52 pm
by KaTsuO_O
First of all you need to know what kind of game you want to do. If you want to make a puzzle sex game, then you need to look up how to make a puzzle game, a platformer sex game you need to look up how to make a platformer. Once you got that down you can add the sex content you want and you got a sex game.

I assume you're interested in a "game" where you click on a button to proceed like many flash loops online, for that you need to look up how to make a button that works the way you want it to and then add the sex content.

You won't find a video about making a sex game so you need to combine things you learn and put it all together. If you know what you're interested in then all you need to do is to explain it and someone can help with the things you need help with.

Re: Help!!!!!!

PostPosted: Wed Jun 27, 2012 6:28 am
by Halosex
ok i am makeing a combat platform like Samus platfourmer and Cotras splatfourmer but i got the stuff like the movment and vcam but when i start the level i just fall out of the map >.> do you know how to stop that?

Re: Help!!!!!!

PostPosted: Wed Jun 27, 2012 7:41 pm
by IrrelevantComment
You need to have some way of determining whether or not the player is standing on something. If they ae, then do nothing, and if not accelerate them downwards.

EDIT: woo, over 100 posts

Edit 2: To be more specific, try having a list of floor pieces, and each frame check if the player is colliding ( player.hitTestObject() ) with any of them.

Re: Help!!!!!!

PostPosted: Fri Jun 29, 2012 9:14 pm
by KaTsuO_O
Well, no one knows exactly how to prevent that from happening without the code that you're using. If you can post the project file (.fla) of it then I'm sure someone will be able to help you.

Re: Help!!!!!!

PostPosted: Sat Jun 30, 2012 12:22 am
by OwnerOfSuccuby
I know how to make it without wrighting code ;)

Remove code of gravity :lol:

Just a joke :mrgreen:

Re: Help!!!!!!

PostPosted: Sat Jun 30, 2012 3:26 am
by Halosex
ok i cant for some reason upload the file thing however here is the code for my player i have been useing
onClipEvent (load) {
var ground:MovieClip = _root.ground;
var grav:Number = 0;
var gravity:Number = 2;
var speed:Number = 7;
var maxJump:Number = -12;
var touchingGround:Boolean = false;
}
onClipEvent (enterFrame) {
_y += grav;
grav += gravity;
while (ground.hitTest(_x, _y, true)) {
_y -= gravity;
grav = 0;
}
if (ground.hitTest(_x, _y+5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(Key.RIGHT)) {
_x += speed;
}
if (Key.isDown(Key.LEFT)) {
_x -= speed;
}
if (Key.isDown(Key.UP) && touchingGround) {
grav = maxJump;
}
if (ground.hitTest(_x+(_width/2), _y-(_height/2), true)) {
_x -= speed;
}
if (ground.hitTest(_x-(_width/2), _y-(_height/2), true)) {
_x += speed;
}
if (ground.hitTest(_x, _y-(height), true)) {
grav = 3;
}
}

Re: Help!!!!!!

PostPosted: Sat Jun 30, 2012 4:04 am
by corta
you know how to read code, check out playshapes' mario is missing 2.
he's using the same gravity/ground system that I am.

reverse-engineering is the quickest way to learn.
..it is for me, anyway..