Virtual Fantasy Girls release!!!

Complete and totally free games (the author can request a non-obligatory financial contribution in thanks or to help him to create new game)

Re: Virtual Fantasy Girls release!!!

Postby skuggan » Tue, 09Nov17 07:21

Great game as always Chaotic! I like the variation between ur girls and the fact that u need to do diff things to make them like u :)

Just as tlaero said, it would be better if u had to choose one way and stick to it, not be able to go all paths like in this game.

The lake0 is indeed broken, its prolly because its with 3 buttons instead of quotes (everywhere else its only been 1 button)
Its easy to fix tho... just rightclick and choose edit the lake0.html, then erase everything within it and copy in this instead, then ull have quotes instead of buttons and it will work.





Untitled Document


function noBack(){window.history.forward();}
noBack();
window.onload=noBack;
window.onpageshow=function(evt){if(evt.persisted)noBack();}
window.onunload=function(){void(0);}


if (window.Event)
document.captureEvents(Event.MOUSEUP);

//To disable context menu
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}

//To disable right click
function norightclick(e)
{
if (window.Event)
{
if (e.which !=1)
return false;
}
else
if (event.button !=1)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}

//To disable F5 and Backspace button
function nokeydown()
{
if ((event.keyCode == 8) || (event.keyCode == 116)) //backspace=8 and F5=116
{
event.keyCode = 0;
event.returnValue = false;
}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onkeydown = nokeydown;





"It's so beautiful out here."











skuggan
great white shark
 
Posts: 93
Joined: Tue, 08Mar11 00:00

Re: Virtual Fantasy Girls release!!!

Postby Nadzlee » Tue, 09Nov17 09:40

Hey chaotic I love Evana and Latricia! I hope you can make more stories for both game.
Nadzlee
Pilot fish
 
Posts: 2
Joined: Thu, 09Mar19 00:00

Re: Virtual Fantasy Girls release!!!

Postby erana » Tue, 09Nov17 17:41

Sharp observers / Lagoon regulars will have noticed a few things poping out in several threads:

[*]Some lagooners have asked for dating games where the playable character is a girlImage
[*]Ariane's "why a'date a guy' game wouldn't work" comic has been pointed several timesImage
[*]I've asked oftentimes for more "girl on girl" games (and I strongly doubt other Lagooners would object to that)Image
[*]Chaotic's character Evana is admitedly bisexual, more interested in girls than in men, and has been seen trying to "hook up" with other girls

Given the above points, I have a sugestion for Chaotic for a future Virtual Fantasy Girls game: Evana's Night Out. In which the Count's daughter (who, as her father's heir, will soon have to marry) decides to, before that, take a break from her many unwanted suitors and has her own wild night out.

Image Image

[*]Playable girl character? CheckImage
[*]Not-trivial target? Check
[*]Girl on girl? Check Image(Girl on guy and threesomes also possible)
[*]Adding to an already popular character? Check.

EDIT: [*]Pics of Evana? Check. We always have mirrors and non-first-person long shots ;)

C'mon, Chaotic, is a four-times win situation!
User avatar
erana
lagoon predator
 
Posts: 221
Joined: Tue, 08Apr01 23:00

Re: Virtual Fantasy Girls release!!!

Postby sharkfan » Tue, 09Nov17 22:11

[img]smile/tracker.gif[/img] That is a great idea. [img]smile/tracker.gif[/img]
sharkfan
star of the reef
 
Posts: 386
Joined: Sun, 08May04 23:00
Location: South Carolina, USA

Re: Virtual Fantasy Girls release!!!

Postby Dyonisis » Wed, 09Nov18 00:38

@Alludduby
The fourth ending didn't work for me:

4. In Maldore town inn, order a room. Follow her inside (need flatered=3), then let her slide some clothes off (need impressed=3). Now she will give you a blowjob !

I have 3x flatter, 3x impress..... but no BJ!! [img]kator/smyley3.gif[/img] [img]kator/smyley3.gif[/img] [img]kator/smiley17.gif[/img]
User avatar
Dyonisis
lagoon predator
 
Posts: 187
Joined: Sun, 07Sep09 23:00
Location: Pay Bas

Re: Virtual Fantasy Girls release!!!

Postby Arnulf » Wed, 09Nov18 09:01

Hi, Dyonisis, sometimes it is necessary not only to have the right score of "impression" and "flatter", for some scenes you need exactly to play the right way before: For getting the blowjob I think, it is necessary to take the necklage before entering the inn so that you have a gift for the girl behind the counter. Then let her do her lesbian action and then, maybe, you should tell Evana, that this was your idea, when she is asking. Then, you should order the room and I'm sure, the blowjob would work.
User avatar
Arnulf
Master of the skies and the waves
 
Posts: 1952
Joined: Sun, 08May25 23:00
Location: Vienna/Austria

Re: Virtual Fantasy Girls release!!!

Postby tlaero » Wed, 09Nov18 13:03

Yawner, it's not a waste of time. I was the one who taught him how to make the IE version work. (-:
User avatar
tlaero
Lady Tlaero, games and coding expert
 
Posts: 1829
Joined: Thu, 09Jun04 23:00
sex: Female

Re: Virtual Fantasy Girls release!!!

Postby tlaero » Wed, 09Nov18 13:04

Hey Chaotic,

I've uploaded a set of examples for you to http://rapidshare.com/files/308093874/cookienav.zip (Rapidshare says that this will be deleted after 10 downloads, so if anyone else is interested in this, please wait until Chaotic has grabbed it. It’s just some example html, not a game.)

The cookies have been the main cause of trouble with your games. There's nothing wrong with cookies. We just need to tweak how you use them. Most of your pain comes from basing your decisions on whether or not a cookie exists. Your life will become much easier if you stop basing decisions on the EXISTENCE of the cookie and instead base them on the VALUE of the cookie.

All cookies have a value, that you can set at will. And, I believe, all browsers use the same code to set and read that value. So, where before you would do one thing if a cookie didn’t exist and another if it did, now you’ll do the first thing if the cookie is set to 0, and another if it’s set to 1. When you start the game, you just need to set all the cookies to 0.

To make cookienav, I started with some files from VDG and tried to change them as little as possible. I want the examples to be similar to what you’re used to and easy for you to follow. I’ve provided a few new jscrïpt functions for you, the most important of which is “readCookie.” This function reads the value of the cookie you give it and returns it as a number. If the cookie doesn’t exist, it returns 0. So you don’t have to worry about treating “invalid” cookies differently than cookies that are set to the default.

Using numbers allows you to do some nice things. For instance, you can now tell the difference between a cookie being 0, 1, 2, or 3. You no longer need 3 influence cookies. Now you just need one that you add to whenever the user does something good. You also now have the ability to take influence points away when the user does something bad. To help with this, I provided two other functions: incrementCookie and decrementCookie. The first adds 1 to the value of the cookie and the second subtracts 1 (with a minimum value of 0).

I also gave you some examples of how to call jscrïpt functions from hyperlinks and areas. You no longer need to put buttons in when the user gets influence. You can add and subtract values in cookies from links people click or from areas on the screen.

Finally, I gave a few examples of setting cookie values when you go to a page. You might want to do that for the situations where you only want to go to a place once, so you set a cookie when you get there.

To try out the example, start at teststart.html and click links from there. Ignore the missing pictures. I just used your files and didn’t try to match them with images. You’ll see that I still use a “check” page the way you did, but now a single check chooses between multiple places based on the cookie value. In the example we go one place if the cookie is 0, another if it’s 1, and another if it’s > 1. You could just as easily go to 7 different places with 7 different values, or go to various places based on ranges, etc.

The page that shows how to increment and decrement cookies from links is test5.html. test4.html (and teststart.html) show you how to set cookies to predefined values when the page loads. You could also set to a predefined value from a link, or increment on page load, etc.

If you have any questions about how any of this works, don’t hesitate to ask.

Tlaero
User avatar
tlaero
Lady Tlaero, games and coding expert
 
Posts: 1829
Joined: Thu, 09Jun04 23:00
sex: Female

Re: Virtual Fantasy Girls release!!!

Postby tlaero » Wed, 09Nov18 13:15

erana, that's an awesome suggestion. I'd love to play Evana's Night Out.

Maybe one path in the game involves her going out into the wilderness, getting cornered by a wolf, and having a strong frontiersman save her.

Then again, what I REALLY want is the opposite of that scene. In one of the guy games HE gets cornered by a wolf and the red headed bodyguard saves HIM.

Tlaero
User avatar
tlaero
Lady Tlaero, games and coding expert
 
Posts: 1829
Joined: Thu, 09Jun04 23:00
sex: Female

Re: Virtual Fantasy Girls release!!!

Postby nepolemo » Wed, 09Nov18 15:44

sorry for maybe asking a dumb question about virtual girls. I got the new (16.11. download) version of Evana for IE.

Ist not possible to play the game because at many places she says no not again there, we haben been here (for example the inn, or the town). I remember from other games it may have something to do with cookies, so I tried this all out but no change. It is possible a very easy problem (as nobody seems to have it here).

But I would apreciate any help.

Thanks
nepolemo
great white shark
 
Posts: 75
Joined: Tue, 09Aug04 23:00
sex: Masculine

Re: Virtual Fantasy Girls release!!!

Postby sharkfan » Wed, 09Nov18 22:05

I play all of these games with Firefox. It is a simple free download and then you just right-click and choose open with... :nux:
sharkfan
star of the reef
 
Posts: 386
Joined: Sun, 08May04 23:00
Location: South Carolina, USA

Re: Virtual Fantasy Girls release!!!

Postby nepolemo » Thu, 09Nov19 01:28

@sharkfan
i am not sure if your post was an answer to my question. If not, forget this post.

If yes:
Well you use Firefox, thats ok but what do you want to say with this statement?

As I wrote, I use IE like some others. As there is a IE version of the game, I thought some lagooners had the same problem and know how to solve it.
nepolemo
great white shark
 
Posts: 75
Joined: Tue, 09Aug04 23:00
sex: Masculine

Re: Virtual Fantasy Girls release!!!

Postby luke » Thu, 09Nov19 12:57

@nepolemo,
i tried with the downloadable IE version on IE7 and i haven't this kind of problem.
Maybe your version of IE is older ?
When you start, do you always click on the button 'clic here to begin' ? I noticed that you have to do this to erase the old cookies
Que la Force de Shark soit avec toi / May the Shark Force be with you
User avatar
luke
Moderator
 
Posts: 1734
Joined: Thu, 07Jun07 23:00
Location: In my clothes
sex: Masculine

Re: Virtual Fantasy Girls release!!!

Postby nepolemo » Thu, 09Nov19 14:38

@luke
yes I click this button.

And thanks about this tip with the version of IE i try this one out, maybe you are correct, though I never had any problems with IE.
nepolemo
great white shark
 
Posts: 75
Joined: Tue, 09Aug04 23:00
sex: Masculine

Re: Virtual Fantasy Girls release!!!

Postby nepolemo » Thu, 09Nov19 15:18

no luke this was not the problem, I tried it with IE8, thus a more moden version of IE and the same happend, strange, as the other virtual date cames run perfectly.

EDIT:
Problem solved, I got the help I needed thanks Yawner. Probable a mistake i made in downloading the wrong version.
nepolemo
great white shark
 
Posts: 75
Joined: Tue, 09Aug04 23:00
sex: Masculine

PreviousNext

Return to Free sexy games

Who is online

Users browsing this forum: No registered users and 11 guests

cron
eXTReMe Tracker