Help!!!!!!

A place for tutorials on how to get the most out of Flash

Help!!!!!!

Postby Halosex » Tue May 15, 2012 6:24 am

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 :!:
Halosex
Newly Registered
 
Joined: Tue May 15, 2012 6:20 am

Re: Help!!!!!!

Postby BlueLight » Tue May 15, 2012 7:37 pm

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.
User avatar
BlueLight
Gangs n' Whores Developer
 
Joined: Sat Jun 04, 2011 8:23 am

Re: Help!!!!!!

Postby FuzzFace » Wed May 16, 2012 12:03 am

Bluelight is good with what he does. hands on learning is way better than video imo.
User avatar
FuzzFace
 
Joined: Sat Sep 04, 2010 1:20 am

Re: Help!!!!!!

Postby OwnerOfSuccuby » Sat May 19, 2012 11:51 am

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/
Last edited by OwnerOfSuccuby on Sat May 19, 2012 3:14 pm, edited 1 time in total.
OwnerOfSuccuby
 
Joined: Fri Jun 11, 2010 9:33 pm

Re: Help!!!!!!

Postby PenName15 » Sat May 19, 2012 12:48 pm

Or maybe you can get some help from professionals!
TSSSSSSSSSSS
I'm on fire! Boo yah!

BOOM!
User avatar
PenName15
 
Joined: Sun May 13, 2012 11:58 am
Location: Cree-- Tss. Boom!

Re: Help!!!!!!

Postby KaTsuO_O » Sat Jun 09, 2012 5:52 pm

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.
Don't create a porn game if you're only interested in porn.
Wise words regarding criticism http://www.youtube.com/watch?v=-98ZFl1sKt4
User avatar
KaTsuO_O
 
Joined: Tue Nov 02, 2010 6:03 pm

Re: Help!!!!!!

Postby Halosex » Wed Jun 27, 2012 6:28 am

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?
Halosex
Newly Registered
 
Joined: Tue May 15, 2012 6:20 am

Re: Help!!!!!!

Postby IrrelevantComment » Wed Jun 27, 2012 7:41 pm

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.
IrrelevantComment
 
Joined: Tue Mar 15, 2011 7:46 pm

Re: Help!!!!!!

Postby KaTsuO_O » Fri Jun 29, 2012 9:14 pm

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.
Don't create a porn game if you're only interested in porn.
Wise words regarding criticism http://www.youtube.com/watch?v=-98ZFl1sKt4
User avatar
KaTsuO_O
 
Joined: Tue Nov 02, 2010 6:03 pm

Re: Help!!!!!!

Postby OwnerOfSuccuby » Sat Jun 30, 2012 12:22 am

I know how to make it without wrighting code ;)

Remove code of gravity :lol:

Just a joke :mrgreen:
OwnerOfSuccuby
 
Joined: Fri Jun 11, 2010 9:33 pm

Re: Help!!!!!!

Postby Halosex » Sat Jun 30, 2012 3:26 am

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;
}
}
Halosex
Newly Registered
 
Joined: Tue May 15, 2012 6:20 am

Re: Help!!!!!!

Postby corta » Sat Jun 30, 2012 4:04 am

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..
Active Thread: [ Flash Edits ][27th July/19]
Looking to donate? I've got pages for Patreon, SubscribeStar and Paypal.me!
User avatar
corta
 
Joined: Sat Sep 25, 2010 8:43 am


Return to Tutorials



Who is online

Users browsing this forum: No registered users