4.20 star(s) 54 Votes

trythisone

Newbie
Nov 1, 2017
55
8
The main bugs seem to be centered around the Event passage.
It repeats the same event every turn and doesn't seem to follow the restrictions

I'm going to upload it here in case any of you bright fellows can find the errors in the passage:
I've had a 2nd look and I think the last 2 <<goto "events">> might be wrong.
I think it should be
Code:
    <<elseif $Happening is 20 and $izamamiDone is 1 and $nambiDone is 1>>
        <<set $Event to 22>>
        <<goto "Events">>/%l Izanami and Nambi sex %/
    <<else>>
        <<goto "Event">>/% Didn't match all the conditions of the event so loop back to this passage and try again %/
    <</if>>
<<else>>
    <<goto "High Births">>/% skip all events %/
<</if>>
<</nobr>>
I had ago at rewriting the code a little
(I also switched the order of winter and lvling events, so that you can now lvl at the start of winter)
Code:
<<nobr>>

<<if $rheiaDone is 1 and $inannaDone is 0>>
    <<set $rheiaInannaMeet to 1>>
<<elseif $inannaDone is 1 and $rheiaDone is 0>>
    <<set $rheiaInannaMeet to 2>>
<</if>>

<<if $rheiaDone is 1 and $freiaDone is 0>>
    <<set $rheiaFreiaMeet to 1>>
<<elseif $freiaDone is 1 and $rheiaDone is 0>>
    <<set $rheiaFreiaMeet to 2>>
<</if>>

<<if $freiaDone is 1 and $izanamiDone is 0>>
    <<set $freiaIzanamiMeet to 1>>
<<elseif $izanamiDone is 1 and $freiaDone is 0>>
    <<set $freiaIzanamiMeet to 2>>
<</if>>

<<if $rheiaDone is 1 and $NambiDone is 0>>
    <<set $rheiaNambiMeet to 1>>
<<elseif $NambiDone is 1 and $rheiaDone is 0>>
    <<set $rheiaNambiMeet to 2>>
<</if>>

<<set $Event to 0>>/%l clear the last event - will stop any chance of the last event affecting a new one %/
<<set $Happening to random (1, 20)>>

<<if $Exp gte 100>>
    <<set $Event to 1>>/%l Exp - returns to event after lvling %/

<<elseif $Time is 10>>
    <<set $Event to 2>>/%l Winter %/

<<elseif $EndWeekHome is "Sanctuary" and $ElvenChildren gte 4 and (random(1,100) gt 30)>>
    <<set $Event to either (31, 31, 31, 32, 33)>>/%l Elven Events %/

<<elseif $rheiaDone is 1 and $inannaDone is 1 and $rheiaInannaMeet isnot 0>>
    <<set $Event to 1.1>>/%l Rheia meets Inanna %/
<<elseif $rheiaDone is 1 and $freiaDone is 1 and $rheiaFreiaMeet isnot 0>>
    <<set $Event to 1.2>>/%l Rheia meets Freia %/
<<elseif $freiaDone is 1 and $izanamiDone is 1 and $freiaIzanamiMeet isnot 0>>
    <<set $Event to 1.3>>/%l Freia meets Izanami %/
<<elseif $sitaDone is 1 and $izanamiDone is 1 and $izanamiSitaMeet isnot 0>>
    <<set $Event to 1.4>>/%l Sita meets Izanami %/
<<elseif $nambiDone is 1 and $rheiaDone is 1 and $rheiaNambiMeet isnot 0>>
        <<set $Event to 1.5>>/%l Rheia meets Nambi %/

<<elseif (random(1,100) lt 30)>> /% 30% chance %/
    <<goto "High Births">>/% Skip events this week %/
<<elseif $Happening is 1>>
    <<set $Event to 3>>/%l Stone offering %/
<<elseif $Happening is 2 and $Food gte 30 and $bunnyWild gte 10>>
    <<set $Event to 4>>/%l Bunny Hunny %/
<<elseif $Happening is 3 and $Food gte 30>>
    <<set $Event to 5>>/%l Flood %/
<<elseif $Happening is 4 and $Food gte 20>>
    <<set $Event to 6>>/%l Salt %/
<<elseif $Happening is 5 and $HumanChildren gte 5>>
    <<set $Event to 7>>/%l Morning Blowjob %/
<<elseif $Happening is 6 and ($HumanChildren gte 2)>>
    <<set $Event to 8>>/%l Two Fun %/
<<elseif $Happening is 7 and ($HumanChildren gte 2)>>
    <<set $Event to 9>>/%l Breakfast Milk %/
<<elseif $Happening is 8 and ($HumanChildren gte 2) and ($catDone is 1)>>
    <<set $Event to 10>>/%l Cat Girl %/
<<elseif $Happening is 9 and ($HumanChildren gte 2)>>
    <<set $Event to 11>>/%l Dance %/
<<elseif $Happening is 10 and ($HumanChildren gte 2)>>
    <<set $Event to 12>>/%l Box of food %/
<<elseif $Happening is 11 and ($inannaChildren gte 4)>>
    <<set $Event to 13>>/%l Cult of Adonis %/
<<elseif $Happening is 12 and ($HumanChildren gte 3)>>
    <<set $Event to 14>>/%l Three Fun %/
<<elseif $Happening is 13 and ($HumanChildren gte 3)>>
    <<set $Event to 15>>/%l Sleeping Girl %/
<<elseif $Happening is 14 and ($HumanChildren gte 2)>>
    <<set $Event to 16>>/%l Dry Skin %/
<<elseif $Happening is 15 and ($HumanChildren gte 4)>>
    <<set $Event to 17>>/%l Four Fun %/
<<elseif $Happening is 16 and ($HumanChildren gte 1)>>
    <<set $Event to 18>>/%l Work Clothes %/
<<elseif $Happening is 17 and ($HumanChildren gte 2)>>
    <<set $Event to 19>>/%l Suckle girl %/
<<elseif $Happening is 18 and $rheiaDone is 1 and $saraiDone is 1>>
    <<set $Event to 20>>/%l Rheia and Sarai sex %/
<<elseif $Happening is 19 and $rheiaDone is 1 and $nambiDone is 1>>
    <<set $Event to 21>>/%l Rheia and Nambi sex %/
<<elseif $Happening is 20 and $izamamiDone is 1 and $nambiDone is 1>>
    <<set $Event to 22>>/%l Izanami and Nambi sex %/
<<else>>
    <<goto "Event">>/% Didn't match all the conditions of the event so loop back to this passage and try again %/
<</if>>
<<goto "Events">>/% We got an event so go do it %/
 
Jul 28, 2017
38
21
Currently you have to edit the code to do that - one of the stated goals in the games to-do list is to add another 12 girls to caves, temples and valley girls so all the sets have 24. The hard part about that is getting all the images together so if you have the images I'm sure @Beornwahl would appreciate the help.
i'd love to help
 

Faldir

Member
Game Developer
May 7, 2017
358
1,068
I've had a 2nd look and I think the last 2 <<goto "events">> might be wrong.
I think it should be
Code:
    <<elseif $Happening is 20 and $izamamiDone is 1 and $nambiDone is 1>>
        <<set $Event to 22>>
        <<goto "Events">>/%l Izanami and Nambi sex %/
    <<else>>
        <<goto "Event">>/% Didn't match all the conditions of the event so loop back to this passage and try again %/
    <</if>>
<<else>>
    <<goto "High Births">>/% skip all events %/
<</if>>
<</nobr>>
I had ago at rewriting the code a little
(I also switched the order of winter and lvling events, so that you can now lvl at the start of winter)
Uh, thanks bunches and bunches for the reply! I guess I'll "trythisone" and see if it works!!! <3 <3

i'd love to help
If you find the images I'll gladly rewrite the code to suit them! It's not all roses getting all the pictures needed though. I had troubles finding gif of that variety in general.
 

Daxter250

Forum Fanatic
Sep 17, 2017
4,670
12,716
Islands Patch (v.1.0)

changelog:

* it basically replaces all duplicated girls with new ones.
* as always, all gifs are made by hand, meaning, by me. no shitty quality!
* no fucking banner ads in the new gifs!
* no black banners!
* all girl portraits are now at least half nude (but mostly even fully nude). no fully clothed girl portraits.
* all changes are listed in the included txt file.


aditional infos:

* some girls aren't really redheads. i can't do anything against it, 'cause redheads are so fucking rare, ya gotta take what ya get.
* for Lexy Roxx (girl 21) i had to use an older vid of her to get a cumshot gif. don't freak out if you see her in her natural hair color ^^.
*i tried my best to make the gifs as loopable as possible. but most girls only have very few vids that i could use and most of these vids used handcameras and generally shaky movements. so don't expect too many loopable gifs.
* as with my other two patches, since the newer version of A&G also shows breasts, butt and pussy - only pics, those pics won't match with new girls. can't do anything against it. that's a job for a coder.
* This download is massive (almost 2 GB). make room for it!

------------

If you encounter any bugs with my patch, please inform me ASAP. i will try to fix it then.


how to install:
extract and copy the folder "img" into your game folder. overwrite everything. done!

---



---
 
  • Like
Reactions: Faldir and shiddily

Faldir

Member
Game Developer
May 7, 2017
358
1,068
HOLY HELLMOTHERFUCKING SHIT!!!!!!!!!! IS IT REALLY ALPHA TESTING TIME?!?!?!?!



You bet your butt it is! I've uploaded the current version of the Elven Update to MEGA and will send a link to anyone who wishes to play test it during the weekend. You can send me a heads up if you're game, and on late Friday when I return I'll send the link for download. There's no pressure to bug report, if you simply want to play it a bit before others and don't mind bugs too much then that's fine too! Consider it a patreon early access thing (just without patreon!).

So hurrah! We're finally near release!!! High fives to everyone!!!!!

 

PoyntFury

The Man With The Need To Breed
Donor
Dec 14, 2017
1,287
13,376
HOLY HELLMOTHERFUCKING SHIT!!!!!!!!!! IS IT REALLY ALPHA TESTING TIME?!?!?!?!



You bet your butt it is! I've uploaded the current version of the Elven Update to MEGA and will send a link to anyone who wishes to play test it during the weekend. You can send me a heads up if you're game, and on late Friday when I return I'll send the link for download. There's no pressure to bug report, if you simply want to play it a bit before others and don't mind bugs too much then that's fine too! Consider it a patreon early access thing (just without patreon!).

So hurrah! We're finally near release!!! High fives to everyone!!!!!


Let's do it.
 

cmyop

Newbie
Jul 8, 2017
32
6
HOLY HELLMOTHERFUCKING SHIT!!!!!!!!!! IS IT REALLY ALPHA TESTING TIME?!?!?!?!



You bet your butt it is! I've uploaded the current version of the Elven Update to MEGA and will send a link to anyone who wishes to play test it during the weekend. You can send me a heads up if you're game, and on late Friday when I return I'll send the link for download. There's no pressure to bug report, if you simply want to play it a bit before others and don't mind bugs too much then that's fine too! Consider it a patreon early access thing (just without patreon!).

So hurrah! We're finally near release!!! High fives to everyone!!!!!

I'm in, let's go
 

Mori369

New Member
Nov 26, 2017
13
0
Maybe i've overread something in the update log but is it no longer possible to get both Nephthys and Nut to get them to your camp?
 

cmacleod42

Engaged Member
Game Developer
Aug 29, 2017
3,130
1,856
Maybe i've overread something in the update log but is it no longer possible to get both Nephthys and Nut to get them to your camp?
Which update log? You can still get both Nut and Nepthys at your camp in version 1.9

PS
I wish I had the time to try out version 2.0 this weekend, but I am not sure I have the time to justify testing it. A pity
 

jodike

Member
Oct 14, 2017
491
901
Yea probably best to post it here normally so everybody can give feedback and add on eachothers feedback here
 

Mori369

New Member
Nov 26, 2017
13
0
Yea probably best to post it here normally so everybody can give feedback and add on eachothers feedback here
I think so too, i would like to test it too, but if you have to send it to everybody one at a time it would be way easier to just upload it here
 

trythisone

Newbie
Nov 1, 2017
55
8
Yea probably best to post it here normally so everybody can give feedback and add on eachothers feedback here
Depends on how broken you feel it is, and weather you want lots of reports of the same bugs.
But posting it here works as long as it has the right disclaimer.
 

jodike

Member
Oct 14, 2017
491
901
Depends on how broken you feel it is, and weather you want lots of reports of the same bugs.
But posting it here works as long as it has the right disclaimer.
if it's posted as a beta/test version we could in the end just make a list of combining all the bugs so bug number 1 doesnt get reported 90 times
 
4.20 star(s) 54 Votes