Hentai: Peach's Untold Tale 3.48 (Nov 2/18) - HIATUS

The place to post Flash-based creative projects.
Forum rules
This forum is for posting and collaborating upon third party Flash work. Please do not post request-threads, and avoid posting artwork that is not your own unless it is being used as a reference.

Re: Hentai: Peach's Untold Tale 2.3.9 (Feb 2/15)

Postby overlord5 » Tue Feb 03, 2015 1:26 pm

hi ivan
not that i wan't to hurry you but i was thinking the code could look something like this
Attachments
example.png
example.png (20.14 KiB) Viewed 6441 times
User avatar
overlord5
 
Joined: Sat Jan 31, 2015 12:18 pm

Re: Hentai: Peach's Untold Tale 2.3.9 (Feb 2/15)

Postby Ivan-Aedler » Tue Feb 03, 2015 7:43 pm

Decauk Wrote:Dude, that's awesome. Thanks so much for listening to my request, keep up the great work.

Nevermind ;)

overlord5 Wrote:hi ivan
not that i wan't to hurry you but i was thinking the code could look something like this

Great! But you must not get enthusiastic yet, thats because I use a given code to generate EnemyTotal, [EnemyName]_laid_scene (an array), and other variables that get 'FOR'ed' depending on the amount of enemies Peach can interact too.
I already see a refactor is inevitable if we port the code to classes.

PS (typos): abstract (not abstact), and koopa (not koompa)
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

Re: Hentai: Peach's Untold Tale 2.3.9 (Feb 2/15)

Postby overlord5 » Tue Feb 03, 2015 8:31 pm

Ivan-Aedler Wrote:
overlord5 Wrote:hi ivan
not that i wan't to hurry you but i was thinking the code could look something like this

Great! But you must not get enthusiastic yet, thats because I use a given code to generate EnemyTotal, [EnemyName]_laid_scene (an array), and other variables that get 'FOR'ed' depending on the amount of enemies Peach can interact too.
I already see a refactor is inevitable if we port the code to classes.

PS (typos): abstract (not abstact), and koopa (not koompa)

until i see the actual code i can't really do much but guess, i was hoping to get a copy before this weekend so i have a chance to familiarize my self with it
i have an abnormal amout of free time this week
and don't worry about the spelling errors i will make sure it's correct when it's actually usable code

i assumed you used a boolean array for each type, so you wouldn't run into problems with special scenes such as the medic toad scene or the table scene

once you send me the code i can make an estimate to how much and what needs to be changed to make it use classes there by giving you the full grasp of whether or not it should be done
Last edited by overlord5 on Thu Feb 05, 2015 2:58 am, edited 1 time in total.
User avatar
overlord5
 
Joined: Sat Jan 31, 2015 12:18 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby CaptainFalcon9000 » Wed Feb 04, 2015 5:37 am

A question, shouldn't Peach lose her virginity to the rocks in 6-6? or is she using her ass? since the rocks can feel pleasure i'm assuming they are somewhat sentient.

Also the new Flavio scene is damn hilarious, it reminds me of a lot of hentai pictures of Usopp from One Piece (an anime about pirates) who also has a long nose, and a lot of his porn is about him using his nose to fuck some girls from the female cast :lol:
User avatar
CaptainFalcon9000
 
Joined: Sun Jan 06, 2013 1:41 am

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby CobraKnight » Wed Feb 04, 2015 6:08 am

Umm why are u updating 6-6 we can't even get past 1-6 the rest isn't fixed yet
CobraKnight
Newly Registered
 
Joined: Wed Feb 04, 2015 5:51 am

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby ThatGuy » Wed Feb 04, 2015 6:56 am

CobraKnight Wrote:Umm why are u updating 6-6 we can't even get past 1-6 the rest isn't fixed yet


When you get the end of 1, it tells you to go back to your castle.
ThatGuy
 
Joined: Tue Jan 11, 2011 4:14 am

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby Ivan-Aedler » Wed Feb 04, 2015 8:10 pm

I'll try to make a new scene tonight.
overlord5 Wrote:"Quotes and mixed up things"

Oh please fix up your quotes!

overlord5 Wrote:until i see the actual code i can't really do much but guess, i was hoping to get a copy before this weekend so i have a chance to familiarize my self with it. i have an abnormal amout of free time this week

I'll try to send it tonight or tomorrow. I'll PM you when done. I am having some problems.

overlord5 Wrote:i assumed you used a boolean array for each type, so you wouldn't run into problems with special scenes such as the medic toad scene or the table scene

I use that kind of code:
Spoiler (click to show/hide):

Code: Select All Code
EnemyNames = new Array ("Goomba", "KoopaTroopa", "BobOmb", "Blooper", "Boo", "ShyGuy", "Birdo", "Pokey", "Phanto", "Chomp","Wiggler","Xnaut","WrenchGuy", "Cheep","BossBass", "Chompette","Anuboo","Cleft","Yux","Piranha","Flurry","Drybone","Cobrat","Cataquack","Chuck","Buzzy","Monty","Jabbi","Ninji","Lakitu"); //Names of each enemy type - ArrayMAX is 19
TotalEnemy = EnemyNames.length-1; //Total number of enemy types for resetting arrays. Starts as 0.

EnemyNames.Goomba = new Array ("H","H","B","B","D","B","V","V","V","V","V","V","A","A","VA"); //15 normal scenes + 2 hidden sleep scenes (not here).
EnemyNames.KoopaTroopa = new Array ("H","L","B","A","V","V","V","V","V","VA","VA");
EnemyNames.BobOmb = new Array ("H","B","V","A","V","VA","AC");
EnemyNames.Blooper = new Array ("B","A","V","VA","V","V","VA");
EnemyNames.Boo = new Array ("B","A","A","A","V","VA");
EnemyNames.ShyGuy = new Array ("H","B","B","H","V","V","A","V","VA","A");
......

overlord5 Wrote:once you send me the code i can make an estimate to how much and what needs to be changed to make it use classes there by giving you the full grasp of whether or not it should be done

Great! Just understand its better to have descriptive arrays than extremelly optimized entities like byte[] (0,1,2,3), but in a way we dont know which is what.

CaptainFalcon9000 Wrote:A question, shouldn't Peach lose her virginity to the rocks in 6-6? or is she using her ass? since the rocks can feel pleasure i'm assuming they are somewhat sentient.

She DOES use her pussy. Did you read the changelog?
*Ahem*
Update 2.3.9 (2nd February 2015)
...
- NEW SCENE: 'Skull Rock'. Not yet in the gallery. Peach might need to do it in order to enter the Grotto. She wont lose her virginity, if any. Its compliant with 'Allow Anal OFF' mode. Its in 6-6.
Lets say she gets penetrated but in a way her hymen is not broken like in 'normal fleshy' dick with a living creature.

CaptainFalcon9000 Wrote:Also the new Flavio scene is damn hilarious, it reminds me of a lot of hentai pictures of Usopp from One Piece (an anime about pirates) who also has a long nose, and a lot of his porn is about him using his nose to fuck some girls from the female cast :lol:

Hey, glad you liked him :twisted: Oh, great reference, thank you!
Last edited by Ivan-Aedler on Thu Feb 05, 2015 2:29 am, edited 1 time in total.
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby overlord5 » Wed Feb 04, 2015 10:13 pm

Ivan-Aedler Wrote:
overlord5 Wrote:until i see the actual code i can't really do much but guess, i was hoping to get a copy before this weekend so i have a chance to familiarize my self with it. i have an abnormal amout of free time this week

I'll try to send it tonight or tomorrow. I'll PM you when done. I am having some problems.

overlord5 Wrote:i assumed you used a boolean array for each type, so you wouldn't run into problems with special scenes such as the medic toad scene or the table scene

I use that kind of code:
Spoiler (click to show/hide):

Code: Select All Code
EnemyNames = new Array ("Goomba", "KoopaTroopa", "BobOmb", "Blooper", "Boo", "ShyGuy", "Birdo", "Pokey", "Phanto", "Chomp","Wiggler","Xnaut","WrenchGuy", "Cheep","BossBass", "Chompette","Anuboo","Cleft","Yux","Piranha","Flurry","Drybone","Cobrat","Cataquack","Chuck","Buzzy","Monty","Jabbi","Ninji","Lakitu"); //Names of each enemy type - ArrayMAX is 19
TotalEnemy = EnemyNames.length-1; //Total number of enemy types for resetting arrays. Starts as 0.

EnemyNames.Goomba = new Array ("H","H","B","B","D","B","V","V","V","V","V","V","A","A","VA"); //15 normal scenes + 2 hidden sleep scenes (not here).
EnemyNames.KoopaTroopa = new Array ("H","L","B","A","V","V","V","V","V","VA","VA");
EnemyNames.BobOmb = new Array ("H","B","V","A","V","VA","AC");
EnemyNames.Blooper = new Array ("B","A","V","VA","V","V","VA");
EnemyNames.Boo = new Array ("B","A","A","A","V","VA");
EnemyNames.ShyGuy = new Array ("H","B","B","H","V","V","A","V","VA","A");
......

overlord5 Wrote:once you send me the code i can make an estimate to how much and what needs to be changed to make it use classes there by giving you the full grasp of whether or not it should be done

Great! Just understand its better to have descriptive arrays than extremelly optimized entities like byte[] (0,1,2,3), but in a way we dont know which is what.



from the above code i already have a surgestion, use enum an array of an enum type for the H,L,B,A,V,VA,
string comparison is rather heavy

Ivan-Aedler Wrote:
overlord5 Wrote:"Quotes and mixed up things"

Oh please fix up your quotes!

overlord5 Wrote:Also the new Flavio scene is damn hilarious, it reminds me of a lot of hentai pictures of Usopp from One Piece (an anime about pirates) who also has a long nose, and a lot of his porn is about him using his nose to fuck some girls from the female cast :lol:

Hey, glad you liked him :twisted: Oh, great reference, thank you!

sorry about the qoute but please don't miss quote me
the above qoute was from CaptainFalcon9000
User avatar
overlord5
 
Joined: Sat Jan 31, 2015 12:18 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby GreenDiablo » Wed Feb 04, 2015 10:25 pm

In one update can you make it so I can turn off the sound effect for water? Like for the fountain, waterfalls, baths, that constant splashing that always happens. It's rather distracting and kind of annoying
GreenDiablo
Newly Registered
 
Joined: Wed Feb 04, 2015 10:21 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby Ivan-Aedler » Thu Feb 05, 2015 12:30 am

overlord5 Wrote:from the above code i already have a surgestion, use enum an array of an enum type for the H,L,B,A,V,VA,

Its a thing I might do later :/

overlord5 Wrote:sorry about the qoute but please don't miss quote me

But it was you, please check here, in your post!

PS (typos): abstract (not abstact), and koopa (not koompa) /quote
The correct:
Ivan-Aedler Wrote: PS (typos): abstract (not abstact), and koopa (not koompa)


GreenDiablo Wrote:In one update can you make it so I can turn off the sound effect for water? Like for the fountain, waterfalls, baths, that constant splashing that always happens. It's rather distracting and kind of annoying

Okay!
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby overlord5 » Thu Feb 05, 2015 12:53 am

Ivan-Aedler Wrote:
overlord5 Wrote:sorry about the qoute but please don't miss quote me

But it was you, please check here, in your post!

i was talking about the thing with Flavio
User avatar
overlord5
 
Joined: Sat Jan 31, 2015 12:18 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby Ivan-Aedler » Thu Feb 05, 2015 2:29 am

overlord5 Wrote:i was talking about the thing with Flavio

Sorry, fixed above!

EDIT: GAME UPDATED AGAIN. Now, +5 diary entries! Total of 18 so far!
Last edited by Ivan-Aedler on Thu Feb 05, 2015 5:17 am, edited 1 time in total.
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby overlord5 » Thu Feb 05, 2015 2:59 am

Ivan-Aedler Wrote:
overlord5 Wrote:i was talking about the thing with Flavio

Sorry, fixed above!

also fixed the earlier miss qoute, once it gets approved
User avatar
overlord5
 
Joined: Sat Jan 31, 2015 12:18 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby CaptainFalcon9000 » Thu Feb 05, 2015 3:10 am

Eh it feels kinda weird that Peach fucks the sentients rocks without losing her virginity, specially when long ago there was a discussion about how female masturbation does take the virginity away since it breaks the himen, it seems kinda far-fetched that she can fuck them without breaking her himen, if the point is to pleasure the rocks then shouldn't she use her mouth or ass for it? if there is the "allow anal - OFF" option then it would turn it into vaginal, since the whole point is to make the rocks cum, then the hole she uses shouldn't matter, so why make it exclusively one hole? she should consider both options imo. :lol:

Also here are some of the pictures i was talking about earlier of Usopp, the author of One Piece confirmed in an interview that his nose is exactly 24 cm of lenght :lol:

Spoiler (click to show/hide):

ImageImageImageImageImageImageImage


Who knows, maybe you could use some of these images as references for future Flavio scenes :lol:
User avatar
CaptainFalcon9000
 
Joined: Sun Jan 06, 2013 1:41 am

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 5/15)

Postby Ivan-Aedler » Thu Feb 05, 2015 5:27 am

overlord5 Wrote:also fixed the earlier miss qoute, once it gets approved

Okay!

CaptainFalcon9000 Wrote:Eh it feels kinda weird that Peach fucks the sentients rocks without losing her virginity, specially when long ago there was a discussion about how female masturbation does take the virginity away since it breaks the himen,

She is a bit of an athletic girl (hence the Striker Outfit), so she has a stronger hymen. Actually the scene already uses her both holes (if anal is OFF, she will use her pussy). If people think she MUST lose her virginity there (if she uses her pussy), I can change this rule.

CaptainFalcon9000 Wrote:if the point is to pleasure the rocks then shouldn't she use her mouth or ass for it?

I just didnt want to lose more time in making fresh poses... I preferred to reuse her current ass pose, because the goal was to make her really 'sit' on it in order to pleasure the rocks 'directly' ;)

CaptainFalcon9000 Wrote:Also here are some of the pictures i was talking about earlier of Usopp, the author of One Piece confirmed in an interview that his nose is exactly 24 cm of lenght :lol:

Great ones! I like the first! Wow thats a lot of images!
Last edited by Ivan-Aedler on Thu Feb 05, 2015 10:02 am, edited 2 times in total.
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby CaptainFalcon9000 » Thu Feb 05, 2015 8:06 am

Ivan-Aedler Wrote:
CaptainFalcon9000 Wrote:Eh it feels kinda weird that Peach fucks the sentients rocks without losing her virginity, specially when long ago there was a discussion about how female masturbation does take the virginity away since it breaks the himen,

She is a bit of an athletic girl (hence the Striker Outfit), so she has a stronger hymen. Actually the scene already uses her both holes (if anal is OFF, she will use her pussy). If people think she MUST lose her virginity there (if she uses her pussy), I can change this rule.


oh that's what i didn't know, i tought she was using her pussy even with anal on, but what was bothering me was that since the rocks are sentient they should get her virginity, or that's what i think, but now that i think about it trying a virgin run would be impossible if it's completely necesary to please the rocks in order to enter the cave, maybe a third option could be aplied, idk, maybe a different way to please them.
User avatar
CaptainFalcon9000
 
Joined: Sun Jan 06, 2013 1:41 am

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby Ivan-Aedler » Thu Feb 05, 2015 3:04 pm

Some news:
Hello, dear people and lurkers,

As we know, we are still not able to live 100% at peace and with ethernal enthusiasm, month after month. We detected the fourth site that used 'MIM PUT 2' name as 'theirs' (yes, stealing our work). http://gamcore.com/games/mario_is_missing_put_2 . I am a busy developer, and I prefer the gogogo approach (this makes me focus, and keep producing new features and contributions for the hentai world, even if there is a war around me), because I want more features myself. I am also a lover of hentai games who likes to fap! So I avoid to pollute my soul with so bad news (trust me, I am a kind of person that can be so sad I would skip a golden time I could make 2 new sex scenes), so just imagine you just lost 2 new scenes in the game you could be fapping or loving, just because of those bad feelings. So I don't waste my time and mind energy trying to discuss in those sites. It would be so better (for my peace of mind) if people could help me on those. QuizMasterBos (one of our contributors) used to do this, in late 2012. He helped MIM PUT game with scripts and he is a great friend around here.

So, I prefer to stay focused, ignoring those people who always think 'thats not enough' and tries to earn money easily with other works (even regarding freeware games!) They are actually backfiring. I just ask you people, inside and outside LOK, to be vigilants, and to try to contact / share this information in other hentai sites directly, in a way those stealers are blacklisted, directly or indirectly, sooner or later. GamesOfDesire.com, for example, is a known stealer of games. They never replied to emails (actually, no way to contact them!) but people helped me posting in some of their game pages (in a way we avoided bots which only allowed quick replies like 'hey nice game') and we were finally heard. Modified games for the purpose of 'more features' is always a bad choice: they have more bugs, they are slower (as they hack the code, which is already obsfuscated, making it more CPU intensive), yielding unpredicted effects.

Being clean in regard to respecting other works is not only 'nice'. It makes us stimulated to help to flourish YOUR HENTAI WORLD even more, and developers like Gorepete and Akabur (who made Princess Trainer) are already in this boat. People DO know they can ask me for resources (I can share code and art, as I am a contributor myself!) If people just like to 'be bad', the consequences for the hentai world will be noticed, like developers stopping to contribute freely, more shareware games, less hentai art (yes, fewer games tend to make artists less stimulated), and less freedom for everyone (we included). If we dont earn anything, but people modify / steal games even so, we end up applying for other jobs, earning real money on more profitable things, right? We're not idiots. So, please, understand we work for free and we want respect in order to try to keep on. We do all of this FOR YOU. For the 'LULZ of LOVE'. For the 'MAKE LOVE, NOT WAR' goal. When we feel free and respected, we do more. We sweat more for a better game. I am saying that deeply at heart. Thank you.

CaptainFalcon9000 Wrote:Oh that's what i didn't know, i tought she was using her pussy even with anal on, but what was bothering me was that since the rocks are sentient they should get her virginity, or that's what i think, but now that i think about it trying a virgin run would be impossible if it's completely necessary to please the rocks in order to enter the cave, maybe a third option could be aplied, idk, maybe a different way to please them.

Okay. An idea to be worked on and maybe put later, like an option: 1) Suck them, 2) Let it fuck you. If Anal is OFF, 2 will make it fuck her pussy directly.
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 5/15)

Postby JJPG » Thu Feb 05, 2015 4:43 pm

i was wondering why Bobomb doesnt spawn like Wrench Guy in the airship?
User avatar
JJPG
 
Joined: Wed Aug 13, 2014 11:34 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby tripflip » Thu Feb 05, 2015 5:34 pm

CaptainFalcon9000 Wrote:Eh it feels kinda weird that Peach fucks the sentients rocks without losing her virginity, specially when long ago there was a discussion about how female masturbation does take the virginity away since it breaks the himen,

A lot of folks in this discussion were making the point that a lot of women (especially athletic women) actually lose their hymen well before ever having sex. So tying losing one's virginity with losing the hymen doesn't really make sense. (And frankly there are parts of the world that tie an incredible amount of importance to this, which is absolutely insane and destructive). A lot of people were saying that Peach would lose her virginity when she has vaginal sex with another person. And the rocks weren't considered a person.

Personally I could see some debate there, but there you have it. Honestly, losing one's virginity is kind of a mental/cultural thing anyway. Given the dodgy nature of hymens, it's all just stuff we make up anyway.
Support Ivan-Aedler, Blargh and me making dirty, filthy things like PUT at https://www.patreon.com/aef22?ty=h
Find the latest version of PUT at viewtopic.php?f=34&t=2265
User avatar
tripflip
 
Joined: Wed Aug 13, 2014 7:04 pm

Re: Hentai: Peach's Untold Tale 2.3.10 (Feb 4/15)

Postby Ivan-Aedler » Thu Feb 05, 2015 7:28 pm

JJPG Wrote:i was wondering why Bobomb doesnt spawn like Wrench Guy in the airship?

They only spawn inside certain cannons. If not, its a bug.

tripflip Wrote:A lot of folks in this discussion were making the point that a lot of women (especially athletic women) actually lose their hymen well before ever having sex. So tying losing one's virginity with losing the hymen doesn't really make sense. (And frankly there are parts of the world that tie an incredible amount of importance to this, which is absolutely insane and destructive). A lot of people were saying that Peach would lose her virginity when she has vaginal sex with another person. And the rocks weren't considered a person.

Thats the way I want to differentiate virginity. If she fucks a living being, she might lose it. But yes, we dont need to go so deep in this subject. Peach for sure might have a loose hymen right in the beginning, or just a remnant of it due to her urges. He may never know what she were doing before the game started. But for sure she starts the game as a pure virgin.......until she starts to notice those banging dicks more. She starts to lose concentration in her tasks....now her virginity (in regard to a good and heavy dick) is at risk ;)
Last edited by Ivan-Aedler on Fri Feb 06, 2015 10:45 am, edited 1 time in total.
User avatar
Ivan-Aedler
 
Joined: Fri Jun 03, 2011 6:34 am
Location: GMT -3

PreviousNext

Return to Flash Projects



Who is online

Users browsing this forum: Google [Bot]