Description: :This is a completely rewritten version of Ashford Academy. Ashford Academy is a game where you take the role of the newly appointed principal (male). From this point it's up to you to decide what happens next.Last update: : 2020-01-11Released: : 2020-01-11Creator (developer): : Dream ChaserCensored: YesVersion: 0.3.2OS: Windows, Linux, MacLanguage: EnglishGenre:2DCG, Female protagonist, Male protagonist, School setting, Management, Corruption, Ahegao, Anal sex, Bdsm, Bukkake, Group sex, Lesbian, Masturbation, Multiple protagonist, Oral sex, Sexual harassment, Vaginal sex, VirginHow to install: :1. Extract and run.Changelog:v0.3.2- 2 new images added to existing events- 2 new events added- improved the text of some sensuality events- since reputation consists of a calculated and a static part, its description now discloses the static reputation value.- centralised code to show period splash screens. Text (Morning/Afternoon/Evening) now shown in bigger font and cursive- added option for different choice pools in random_select (backwards compatible)- overhauled and simplified Susans and Marinas dresscode logic:while Marina continues to dress as she pleases, Susan will more strongly follow what she thinks you want (with same school policies and stats will wear the same clothing)Balancing:- effects of nude school uniform made more positive: now increases behavior- capped lust at 100 for purposes the negative behavior effect if pdas are allowed- set the stress influence of security 1 (which you start with) to 0, reduced the stress increase per level- halved the stress increase per level of surveillance- lowered bdsm upkeep cost (money) to 60% of the old value- doubled permanent weekly reputation gain/loss due to student stats. Still not much though, with all maxed stats you'll now gain 0.25 reputation per week from it- added an end of school year reputation boost (at max stats: 5 points), enough to overcome the stat drain from the worsening student stats. Thanks for the suggestion!Bugfixes:- apply_entrance_dilution got applied twice for students getting added midterm, which means they pulled down stats too much- keep effects of entrance_req_focus from applying weekly, since they apply each day- improved logic of how an event is picked when dresscode is none - no more nude students other than at dormitory/pool/bath ;-)- tuition income now bottoms out at 0, instead of turning negate when reputation is below 0v0.3.1- added 2 new events to location sensuality- pair dance event in location sensuality expanded- adjusted event conditions of sensuality events- reduced frequency of event office26 once it has reached its end state- bugfix: fixed crash on weekly effects if bdsm punishments are activev0.3.0 - SensualityBig Picture:- updated from renpy 7.1.0 to 7.3.5- new pictures added to existing events- new events added in existing locations- a lot of the simply events have been merged, pictures and texts now combining in more variations than the old standalone events- new location "Sensuality" - unlocks once lust_enhancement isn't "none" anymore- value dependent tooltips for all student stats - helps players (and mod writers) to know what a stat value actually means- rollback enabled during the day (but you can't go back to the planning phase, or from the planning phase)- folded derived stats class into stats: every stat can now have a static and a temporary, and a function and be influenced by game objects- new event variables (set with arg var=... in the event definition) do not break old saves anymore (they get initialized on load)- new game objects do not break old saves anymore, which allows mods defining game objects (e.g. clubs) to be added into an ongoing save game- improved documentation (including the example mod)Balancing:- added major new income source in form of the building "Surveillance"- players starting with outlook "careful" will still get the Susan and Marina blowjob scene later on, so no path will permanently miss it anymore- reputation overhauled: weekly changes reduced to 1/4, but gets immediate benefits from raising student stats (up to 45 if deviance is 0) and upgrading buildings (up to 40),starts at 12 instead of 10, max raised from 100 to 150. With this, getting your reputation up should be quicker, but it should slow down instead of speeding up later on.- added option to raise staff_support to weekly planning- set image distance from conservative image to normal dresscode to 0.5, and changed default max_img_dist from 0 to 0.5That means that when the current dresscode is normal, events with only conservative images may still be chosen, widening the event pool- max_img_dist for all canon dormitory events set to 1 (thanks to img_prefix), meaning the dresscode is less strict in the dormitory, widening the event pool- for dresscode none, at inhibition<15, students will now often choose to go nude at the bath, the pool, and in the dormitory- can_be_evil becomes False if your outlook becomes saint/good/nice/charming- inhibition lowering unlocks are now recognized by the game as a sexual policy (values 0.3, 0.4 and 0.5 for the 3 levels)- halved positive influence of teaching materials on athletics. It was rising a bit too quickly.- slightly rebalanced bdsm (tilted more towards improving behavior)API Additions:- new tag "flavor" for images, letting you easily change small details of an event depending on the image chosen (for events with randomized images)- new class Person, which allows writing text for both genders at once easily, or for one or multiple persons- new class base in mod base, to provide function results as properties for renpy text interpolation- img_e event definitions can now take tags "c:","ch:","e:" and "u:" tags, which work exactly like in the image definitions. Documentation updated for it.- You can now specify tags or keyword arguments in the img_prefix function, and they will be picked up by image definitions and img_e event definitions- all game objects now have 'age' and 'days_since_change' properties, so events can check for older buildings, established policies, ...- added variable 'initializing' which code can use to check whether we are loading up the game (when data structures might still be missing)- new method img_copy, which allows using one image in multiple image groups- new stat "staff" (was just a function before), making it visible in the gui, and allowing it to be influenced by game objects (policy "lust_enhancement" raises it by one if not "None")- tag alias "u:dressed" added as short hand for all dresscode neither "nude" nor "none" (i.e. "u:sexy","u:normal" and "u:cons")- event variables added: current_img_o, current_img_sweep, main_img_o, main_img_sweep- set_img(): new parameter tf (replaces tf tags of image instead of adding to them like at_list does)- added convenience function event_happened()- random_say: <say> argument can now alternatively be given an array of strings instead of a string. Will be said one after another.<speaker> may be an array in that case as well (at least as long). "if" and "else" may now be combined- new function image_for("class") - may be expanded for more situations later- new function set_img_letter, to make working with images named like bath2-1a.jpg,bath2-1b.jpg,... easier- new convenience function img_lettered, returns whether set_img_letter would change the imageAPI Changes:- logic change: the current event is only marked as executed once it has concluded, instead of before- current_event is now set during evaluation of which event to execute. That means that you can use it in any functions called in the condition string- sexy_slaves is now a variable instead of a function, toggled on by the Susan/Marina blowjob scene (contains day when it got toggled)- event variables renamed: current_scene_img -> current_img; main_scene_img -> main_img- set_img(): now defaults to transition None if the name of the displayed image does not change- set_img(): trans_scene_continues now defaults to fade instead of None- Unlock class changes:--def_active=True instead of False (now equals the default of GameObjects, so more consistent)--now uses "unlock_effect" for things to happen on unlock, instead of "effect" (so effect is for weekly effects for all GameObjects, so more consistent)--unlock objects are now enabled once they are unlocked, allowing for weekly effects and stat influences--removed property "unlocked", since it can now be more generally be provided by "enabled"- Rule class: upchange_stress=0 instead of 1 (now equals the default of GameObjects, so more consistent)- GameObject class: does not have a keyword argument def_unlockable anymore, instead unlockable says whether the unlock object will be generated active. Stored variable for it eliminated.- functions support_difficulty and support_difficulty_inv removed, replaced with max(...,0) calls- redefined 'force_prio', it is now a shortcut for executing an event once onlySmall Changes:- display year in main menu- location tooltips in main menu- game object age is displayed in menus (above return button) if "More Numbers" Option is enabled- event_happened() and event.happened().eval() now return the day the given event last happened instead of True (fully backwards compatible).- unlocks of hidden policies are now hidden, and unhide once the policy becomes visible- made stat recalculations more efficient (game object influence, temp stress)- tag strings "<key>:<value>" as used in the image definitions, are now checked for valid keys, and in the case of "c:<content>" for valid content types- the tag parser now checks dresscode tags against the registered dresscodes- added a (commented out) example_fightclub to the example mod (with one event with one picture, with placeholder text). Just as a starting point...- wished_dress is now only set once per events selection instead of once per picture choice- simplified code to remove population_new - it was left over from before population became a stat- increased text size of date displayed before main screen. Makes it readable in autosave screenshots.Debugging:- the debug screen now tries to guess the act and period from the label name when you call an event- the debug screen will allow rollback, until you hit the return button (to the main screen), at which point the events are committed- the debug screen now shows a list of banned characters,images and events (not modifyable)- the debug screen now displays the state of the event variable of the event last run from the debug screen, if it has any- the debug screen now displays the total game days and allows setting it. This makes time jumps possible when debugging events- switched event evaluation of strings from eval to myeval. This gives error messages containing the string which was evaluated, making for easier debugging.- now running the evalutation of all events on game load - allows early catching of syntax errors in event conditionsBugfixes:- added missing return in event gym14- debug screen now allows setting lower inhibition after the unlock (min_hint and max_hint now update dynamically)- the game now remembers changes you made in the current planning phase if you save and reload (might have worked in some older version?)- keep game from crashing when trying to unban an event/image/character which is not banned (simply don't do anything)- trying to ban an event during event setup just crashed the game. Dead code which never worked. Now it does, and is used.- the first transition of the day also counts as first transition of the event- being charming had goodness 0 instead of 1- there where some stat changes of pattern stat+=<n> instead of stat_o.value+=<n> This led both to misattributions in the "Stat changes" screen, and in plain wrong stat changesDeveloper Notes:This is a completely rewritten version of Ashford Academy!The canon events of Ashford Academy work as is (and so should events from mods), but I am only including the events I have converted in this upload.Conversion means that the events use the new systems I have build, and the stat values are adjusted to better fit this version.I want to give a huge huge thank you to Ashford at this point! If he had not put his project under the GPL, I never would have even considered modifying the code base. :-DMy initial itch was having the pictures match the currently active dresscode (school uniform), but it just grew and grew from there.During the coming weeks I intend to port over all of the (non-story) events from canon. I have done enough of them by now to know this is just a matter of steady work.After that is done, I intend to add more rules, policies, clubs, ...And I would very much enjoy help of any kind. I have kept the spirit of the original game and made this extremely mod friendly. So if somebody wants to e.g. port over the story events and expand on them, please go ahead!If anybody wants to help, then the first thing that would really help would be to fill in the picture placeholders ("800x600"). Or just try to make a mod with events as explained in the readme. ;-)Otherwise, just try it out, tell me what is broken, and give me constructive feedback.I'll reserve the following posts for a changelog of future versions and the readme describing the project - both on its own, and in terms of changes in comparison to vanilla Ashford Academy.Please let me know if there is a problem with the mediafire links or if the game does not start. I have unpacked and started the distributed game version under Linux and Windows, I don't have a Mac to test.
Path to Ascension is an adult text game. In it, you will play as a recently deceased mortal on the path to claim a place among the gods themselves!Planned UniversesYou will explore several universes each with a different theme and gameplay to them.FeaturesFight fantastical creatures and go on an adventure in the medieval fantasy-themed universe, with RPG elements.Cruise the stars and manage a mega-corporation in the space-themed universe, with management sim gameplay elements.Join a race to the west in the wild west themed universe, with Oregon Trail inspired gameplay.Fill paperwork and despair about contemporary problems in the modern life themed universe, with dating sim style gameplay.RPG Class SystemBase Building SystemDialogue and Choices SystemAffection and demeanor System; characters will remember the way you treat them, be it gentle, stoic, playful or impatient.Last update: : 2019-12-30Released: : 2019-11-29Creator (developer): : Shark Bit GamesCensored: NoVersion: 0.25OS: Windows, Linux, MacLanguage: EnglishGenre:Text based, Character creation, Multiple endings, Anal sex, Corruption, Creampie, Exhibitionism, Female domination, Footjob, Furry, Futa/trans, Gay, Group sex, Groping, Handjob, Harem, Interracial, Lesbian, Male domination, Masturbation, Milf, Dilf, Oral sex, Swinging, Tentacles, Teasing, Titfuck, Transformation, Trap, Vaginal sex, Virgin, Voyeurism, Adventure, Combat, Dating sim, Fantasy, Humor, Management, Monster, Monster girl, PoV, Religion, Romance, Rpg, Sandbox, Sci-fi, Simulator, Strategy, Turn based combatHow to install: :1. Extract and run.Changelog:v0.25Bugfixes and QOL improvments.Interactions with Daisyv0.2Added three new universes and their introductions.Bugfixes.Nerfed Living Vines.v0.1ReleaseDeveloper Notes:The game is in alpha, so that means things are more a proof of concept that I have the capacities of delivering what I am promising. Although there is content, and the updates will keep adding to that, keep in mind that the gameplay and systems are still being worked on and smoothed over, to eventually deliver a meaningful and satisfying progression. In conclusion: the things here are always subject to change and fixes in the future, so nothing here is final.Path to Ascension is published on xGames as a part of our large adult games collection. Free download of this porn game is served via few clicks. Games like Path to Ascension are delivered to you on daily basis by xGames.
Love Zombies is a atmospheric, erotic, dungeon crawling survival game set in the zombie apocalypse!!!Survive & Thrive in these lewd times - With death knocking on every door, food and water supplies dwindling, it's up to you keep your fellow survivors safe. That is, if you can find them in time... Who could have known the dead would have this kind of effect on people? After all is said and done, this might still turn out to be the best getaway ever!Thread Updated: 2019-12-19Released: : 2019-12-15Creator (developer): : CarrionDEV , ,Censored: NoVersion: 0.032OS: Windows, Mac, LinuxLanguage: EnglishGenre:3DCG, Animated, Male Protagonist, Female Protagonist, Multiple Protagonist, Ahegao, Big Ass, Big Tits, Corruption, Creampie, Exhibitionism, Incest, Masturbation, Milf, NTR, Oral Sex, Shota, Sleep Sex, Striping, Vaginal Sex, Virgin, Voyeurism, Adventure, Horror, Humor, Management, Monster, Point & Click, Romance (whooo.)How to install: :Extract & runChangelog:0.032:- Fixed Dialogue- Mute Text sound option- Info on Controls- Somehow more bugs (Theoretically that's all of 'em)- Minor additional dialogue (Chores)0.02:- Bathroom scenes now progress like they should (All 4 scenes)- Bar corruption scene has been fixed, extended and slightly redone.- Couple of bugs have been splattered.- Overall should sound better + have more sound.Developer Notes:To install Incest Patch simply drag the Patch.rpa into the game folder, you should see archive.rpa if you're in the right place, Merry Christmas everyone!
Description: :Erica and John are Newlyweds and lived a variety of sweet and loving cohabitation after their honeymoon. John recently took a big project and was very tired after work. Erica decided to support John with her own succubus ability. They worked together to usher in a bright future.Last update: : 2019-12-16Released: : 2019-11-27Creator (developer): : Eternal Alice Game Soft Co., LTD.Censored: NoVersion: FinalOS: WindowsLanguage: English, Japanese, ChineseStore:Genre:2DCG, Female protagonist, Romance, Management, Monster girl, Vaginal sex, Oral sex, Japanese game, Sex toys, Masturbation, Cosplay, CreampieHow to install: :1. Extract and run.: DEMO VIDEOSuccubus Waifu is available here as a part of our best adult games list. Free download of this sex game is provided with just a few clicks. All new games and different updates are are always available for you on daily basis by xGames.
Description:At Deviant Doggy Daycare, you ensure that every furry friend you care for is satisfied! In this short management game, you raise each dog's affection level by tending to their needs. A higher affection level grants you a higher paycheck. Be sure to feed the dogs well, as a famished dog loses affection over time. Visit the store to purchase upgrades and sweet sprite unlocks (including the gallery)!Last update: 2019-12-09Released: 2019-12-09Creator (developer): slySableyeCensored: NoVersion: 1.0OS: WindowsLanguage: EnglishGenre:2DCG, 2D game, Female protagonist, Bestiality, Animated, Vaginal sex, Ahegao, Oral Sex, Titfuck , Creampie, Handjob, Masturbation, ManagementHow to install:1. Extract and run.Developer Notes:Hey everyone. I'm back at it again with another mini-game, this time centralized around very good boys. This one took a while, and will be my last game release for 2019. Hope you enjoy playing! P.S. No cheats this time.
Description: :Celestial Grove: Wither is one part of a world I intend to develop. While Wither is at it's early stages, it will soon develop into a Survival Management game.The world is under attack, and aliens have begun invading Earth. Numerous cities have fallen as the aliens destroy Earth's forces with ease. Even so, Earth has not given up. With adversity came the rapid development of new weapons; including Mechas. Join the hero, a Tactical Officer, as he does what what is necessary to survive against everything that is thrown his way.Currently this short demo introduces the characters, and sets up the scenario. Within the next 2 to 3 updates, there will be full on gameplay. With luck, a full time artist as well!All versions are ordered by "Release Number.Art Progress.Gameplay Progress.Story Progress".Last update: : 2019-12-12Released: : 2019-12-11Creator (developer): : 49squaredstudiosCensored: NoVersion: R2.0.1.2OS: Windows, MacLanguage: EnglishGenre:Text Based, Male Protagonist, Simulator, Management, Harem, Male Domination, Female Domination, HandjobHow to install: :1. Extract and run.Changelog:2.0.1.2Second releasev1.0.1.1First releaseCelestial Grove: Wither is published on xGames in our large porn games collection. Free access to this adult game is provided with just a few clicks. All new games are are always available for you on daily basis by xGames.
- You are the owner of the “Sea House” store on Pick-Up beach.- Your goal is turn this beach into a place where girls walk around toplessand nude, and everyone can have sex whenever and wherever they want!- Spread rumors, invite your sex-friend to fuck in public, hold events,and even pick-up and play with girls yourself to change the mood of Pick-Up beachand make your dream a reality!Last update: : 2019-12-09Released: : 2019-11-29Original Title: ナンパビーチを誰とでもヤリまくりヌーディストビーチにしよう!!Creator (developer): : Kisamamaki SoftCensored: Yes - MosaicsVersion: 1.0 - Nov/29/2019OS: WindowsLanguage: English/JapaneseGenre:Anal Sex, Big Ass, Big Tits, Bitch, Blowjob, Creampie, Cuckoldry (Netori), Fingering, Groping, Internal Cumshot, Male Protagonist, Management, Molestation, Outdoor Exposure, Outdoor Sex, VoicedHow to install: :1. Extract .rar file2. Install and run Locale Emulator (see uploader notes)Changelog:v1.0 - Nov/29/2019Correction: bugs/defects, addition of contentsv1.0Correction: bugs/defects, addition of contentsDeveloper Notes:This is the ENGLISH version translated by native English professional translators.Uploader Notes:NOTE: this is an error screen w/o Locale.JP system locale or Locale Emulator is needed.Locale Emulator is a tool similar to AppLocale and NTLEA, providing a simulation function that can make an application recognize your OS as in a language other than the real one. It is quite useful when you are trying to play country-specific games.InstallationDownload the executable Extract all files into a SAFE place in your disk, because you will NOT be able to move these files after installation.Run LEInstaller.exe and choose the install mode.Now you will see “Locale Emulator” menu in the context menu when right-clicking on files.JP system locale or Locale Emulator is needed. (see uploader notes)
Description: :This game is an open world QSP based RPG style game. Much of the inspiration for this game comes from the with similar game mechanics and storylines. It is a lot different than the story based visual novels where your hand is held throughout the game experience. No hand holding is done in this game. All choices are up to you. You carve your own path in this game and you basically build/create your own story.In the game, you create a male character and start life in the capital. The action takes place in a kind of parallel world where everything is basically similar to our world, but there are also differences. In the course of the game you can, for example, create your own gang, you can use and sell drugs, you can own a brothel and manage whores, engage in blackmail and, through acquaintances with the elite, turn things around, you can kidnap people and force them to sign slave contracts. Slavery is legal and you can train your own slaves. The game has a wide range of actions and a deep sex system. The game has an important economic component; you can legally earn every penny at work or you can choose to break the law to climb to the top of the world. The choice is yours! There is no rigid plot in the game and you don’t owe anything to anyone.Parts of this game can be extreme. Every attempt has been made to comply with the site rules (should be 100% compliant). Please review the tags for this game before playing.Last update: : 2019-12-12Released: : 2019-12-04Creator (developer): : spectre1viper / (for the )Censored: NoVersion: 1.0a BetaOS: WindowsLanguage: EnglishGenre:Real Porn, Male Protagonist, Male Domination, Slave, Prostitution, Anal sex, BDSM, Corruption, Creampie, Drugs, Exhibitionism, Group sex, Groping, Handjob, Harem, Humiliation, Masturbation, Oral sex, Rape, Sexual Harassment, Spanking, Stripping, Titfuck, Urination, Vaginal sex, Virgin, Combat, Dating Sim, Graphic Violence, Management, PoV, Romance, RPG, SandboxHow to install: :1. Extract using 7zip.2. Download the Bug Fix patch and replace the two files with the same name.To start the game, open up 'qspgui.exe' - Quest - Open Game - 'Evil2-spectre1viper.qsp'Changelog:v1.0 BetaInitial releasev1.0a BetaBugs fixed in 1.0a BETA - Bug fix patchWhores storming off if you cum in their mouthGirls willing to do anal fisting but not anal sexGirls liking it when you stick a finger in their ass during vaginal sex but not when doing it without sexFixed a crash in Old TownFixed a crash in the 8 BarFixed a crash when getting slaves from MabutaFixed NPCs being placed in the wrong location (friends, lovers, etc.)Cleaned up Mabuta contentCleaned up new NPC creationCrow speaking RussianMarriages - wives disappearing - wives are now found in RelativesConvincing a girl to work more and slapping for fun - location not found errorFixed people you don't know asking you to hangoutCut all ties and forget not workingMales you meet turning into females once you return homeFixed a lot of gender assignment issuesFixed misc location not found errorsLots of misc small bugs fixedFixed some hair colors and hair highlight colors missingFixed jobs being reported twice in NPC listings(If I missed any and you noticed that they are fixed in the bug fix patch let me know)New Features and EnhancementsImproved dialog in some areasYou can now take your slaves and whores to the salon to get their makeup doneIncreased the chances of generating hot girls (high beauty score)NPC and Player stat reportingDeveloper Notes:Console Commands / spectre1viper Command Injector:I added the ability to use console commands in the game through the 'spectre1viper command injector'. All variables in the game can be changed using this feature. You need to open up the QSP file using in order to see the various variable names in the game however. I will not attempt to create a comprehensive list (too many variables). Be very cautious about changing variables using this feature as you could break the game in the process.If players don't wish to see the cheat menu option in game, use the following command: disablecheatmenu=1If you always want the cheat menu to show up in game, use the following command: alwaysenablecheats=1Differences between this game and the original game of EVIL:Vastly improved sex system with lots more image and video contentVastly improved boxing systemImproved sex activity tracking and reportingImproved character creationImproved dating systemImproved nightclubImproved eventsFull virginity tracking and handling (vaginal, anal, throat)Lots more game polish / fewer bugsMale protagonist only - this will result in greater focus in the future. Playing a female or trans character in the original game was a mess and riddled with bugs.Slave Training TipsSlave training can be tricky. You have to think outside the box in order to train them quickly. There are four areas you have to train them in before they will sign a slave contract and are ready to be a sex slave:Sexual training (vaginal, anal, throat)CorruptionSubmission/DominationWillpowerIf you can't train a slave past a certain point, try whipping her when she is unbound. Do this towards the end of her training.Once it says that the slave has been trained in vaginal, anal, or throat, this part of the training is complete however you can still continue doing it and it might help in other areas of her training (really depends on her current stats).Slaves have to be unbound in order to sign a slave contract. They have to do it of their own free will and choice, even though heavily compelled.Cheat Codes / spectre1viper Command Injectordynamic $d_pimp_that_bitch (turns a female NPC into a super hottie fitness model)dynamic $d_crushboss (pimps the player with awesome stats, would take forever to achieve normally)dynamic $d_submit (will lower domination and raise corruption and lust some but won't break her unless you do it a lot)dynamic $d_instant_slave (if you have a slave on the screen in the farm, this will fully break and train her)dynamic $d_kill (kills the NPC on the screen permanently)Known Bugs still in the gameMaids disappearing after hiring themJobs conflicting with school hours - need to also list job hoursBug ReportingPlease report all bugs and attach a save game of when the bug is occurring (or immediately before). I want to eliminate all bugs and make the game very clean and polished!
Description:This is an edifying story of an arrogant aristocrat who gravely offended a powerful evil witch, was transformed into a girl and forced to serve as her maid.Last update: 2019-03-30Released: 2019-10-29Creator (developer): DahakmaCensored: NoVersion: 0.9.53OS: Windows, Mac, Linux, AndroidLanguage: EnglishGenre:2DCG, Text Based, Male protagonist, Transformation, Lesbian, Masturbation, Spanking, Sexual harassment, Big tits, Female domination, Fantasy, Humor, Management, PuzzleHow to install:1. Extract2. Run Witch.htmlChangelog:0.9.53the tower is visited by Robert Edwine, Brigitte and Master Farrowfew other new eventsnew pipe-fixing minigamethe witch has a new petmasturbationmany minor clothing-related improvementsimproved jewellerythe difficulty of minigames adjustable0.9.45working as barmaid expanded, few random events, tips calculated based on worn clothesbatslaying minigameflowersdimensions of created clothes could be adjustedexperimental system calculating the sluttiness of the outfithairstyles work better, if you have a comb they could be changed in the makeup menuminor visual improvement (slight fade-in, popup has a shadow)many, many typos and bugs fixed0.9.37vermin whacking at the farm not working in Firefox fixedfarm accidentally blocking the way to the town fixedI hope I fixed all bugs with Random outfits and saving OutfitsRandom outfit renamed to Random clothes to avoid confusion (it picks from random single garments, not random outfits), now it can handle dresses and belts toofixed skill overflow issue; the number of necessary experiences to advance to a higher level raised0.9.35game engine was reworkeddynamic avatar drawer updatednew unequalled inventory systeminventory features are added as are clothes sortedmakeupsaving system improvedtower more interactive (minor things like fireplace, mirror, curtanis)new minigames (reorganising crates, sorting books, hunting ground squirrels)new events (visitor, earrings, makeup, etc.)rooms are gradually getting dirty againclothesmaking, clothes now have quality and fabricspellcastingalchemy, two transformationsdoing laundrycooking (experimental)more shops in the town, farmfont in minigames changes from Arial to Verdanaemergency teleport in case you get stuck
Description: :"Sodom" was a famous city of success. But at the same time, drugs, violence, and crime were rampant in this city.Phyulla was the young president of a security company who had come into the city, both for business reasons and to give her lover Shiki a "certain something".Last update: : 2019-11-16Released: : 2019-08-04Creator (developer): : Recent Past (New)Censored: YesVersion: FinalOS: WindowsLanguage: EnglishVoices: JapaneseStore:Genre:2D game, 2DCG, Female protagonist, Censored, Japanese game, Rape, Humiliation, NTR, Romance, Lesbian, Sex toys, Strategy management, BDSM, Tower defense, RTS, Voiced, Groping, Vaginal sex, Teasing, Oral sex, Anal sex, Multiple penetration, Big tits, Big ass, Group sex, SimulatorHow to install: :1. Extract to desired location.2. Run the the game.
You play the role of Sir Patrik of Akros, a charismatic, handsome and middle aged (for the times) Knight that set by bonds of loyalty and family to the new Countess of Kathia, is bound to gather the fealty of the vassals of his liege, cajole with the outer counts, and overthrow the Duke of Luvia. It will not be only a path of conflict, choices of whom to trust and whom to make a head short, but will let the player enjoy the power fantasy of the Middle Ages, using the lesser and being used by the higher, both for power and for pleasure. In your treacherous journey among medieval politics, nothing will stop you from romancing and lay with any woman that is put in your way, for lust, love or political interest. Not only nothing stops you: Is part of your mission.Last update: : 2019-11-14Released: : 2019-11-13Creator (developer): : Seventh VixenCensored: NoVersion: 0.10cOS: WindowsLanguage: EnglishGenre:3DCG, Animated, Male Protagonist, Multiple Endings, Anal Sex, Oral Sex, Vaginal Sex, Creampie, Titfuck, Teasing, Handjob, Group Sex, Interracial, Adventure, Combat, Dating Sim, Graphic Violence, Humor, Management, Point & Click, Religion, RomanceHow to install: :1. Extract and run.Changelog:First Public Release 0.10c (Not known bugs)Developer Notes:Small FAQ:1. For those who want to know before hand , playtime (mainstory, side stories, and side minor romances) is from 3 to 4 hours for a single run. (It has multiple branching paths of higher or lesser consequences, also different options to take about the war management part of the game that doesn't have still an impact until Chapter 3). The important choices present in Chapter One are not branching the end of the game, but the way you go to there)About game engine:1-The game includes two fast modes and a hands free mode, they are welcomed due replayability. (I'll add a text speed control in the next update to fit the hands free mode to your needs).2-Prologue is linear and a bit lengthy, but is the prologue for all of the future game so it need to be. Game autosaves and let you manually in some points of it tho.. Beyond the Prologue, you are in "freeroam mode" and you will always have lots of chances to save, and non-important cutscenes are not long.Some tips about what type of game is:1-In public posts in the patreon there are various little first in-depths of focuses of the game, good reading for knowing about the mechanics of the game.2-The Long intro plus prologue may give the sensation that you're in front of a linear VN, but is just setting well the tone and diverse aspects of the story and the Main character. This is not a VN, is a game more akin to a graphic adventure in gameplay, but with familiar elements of dating games. Once you're out of the prologue, you will increasingly get more liberty in your movements and your own ways to accomplish your mission (and other fun stuff)3-"Main romantic interest" don't appear in Chapter One (Or if they appear, the Interest doesn't appear yet). They are not the goal of the game, but they will be worked stories that can help some paths of achieving other goals. But theorycrafting about it has no sense now as they have not appeared yet. As an additional note, You may see in the Romances Panel faded icons of pregnancy and marriage, those are not to be considered specially there for "kinks" or "goals", but more as story progression mechanics.4- I love, love to render sex, so the game is full and will be full of it, even if is not the main goal of the game.Battle for Luvia: Armored Romance is available here in a collection of porn games. Free access to this game is served via few clicks. All new games are are always available for you on xGames.
In (unnamed) Camp game you take the role of the leader of a mercenary camp. Your job is to manage the camp by sending your mercenaries into missions to do all kinds of jobs. Every job has its own challenges that are represented in the form of "traits" sending the right team to the job improves the chance of it being a success.Successful missions bring money, information and maybe captured characters that can be trained, recruited or sold.Failure can mean the end of a mercenary.Last update: : 2019-11-18Released: : 2019-11-18Creator (developer): : FMCCensored: NoVersion: 0.2.0 hotfixOS: WindowsLanguage: EnglishGenre:Text based, Management, Monster Girl, Fantasy, Trainer, Slave, Transformation,Futa/TransHow to install: :1. Extract and run "Camp game.exe".Changelog:Version 0.2.0 HotfixHotfix- Now characters and prisoners are properly removed.- Fixed bug where prisoners could be duplicated.- Scout missions appear at the top of the mission list at start of game.- Enabled windows resize.- Added aim to rewards on missions and training.- Added Race Change reward- Reworked Mission success odds- Reworked Mission traits/modifiers.(Now missions have slots and every slot can have their own set of good/bad traits/modifiers)- Added race modifier to missions- Added gender modifier to missions- Reworked Mission UI.(Still needs a long way to go, I need feedback there)- Daily notifications now keep the oldest day at the top- Some rebalancing to missions cost and rewards- Readjusted Size of Notification description- Added new Missions.- Added new Arts.Version 0.1.9- Bugfix: white background image in notifications.- Added experience system- Added leveling system- Added leveling menu.- Characters ready to level have a * in their name- Added some mission description and images- Change: Background images from reward now keep their normal aspect with a black background. I need to improve that even more and expand, but the solution is temporary.Version 0.1.8- Fixed bug where sometimes characters and missions cards would change order.- Flavor text now works with $she, $her and automatically change to he/his when needed.- Added Basic resources usage.- Added gold cost to mission- Added Game Over system- Implemented Cheat menu- Added Cheat button to add 1000 gold- Added Cheat button to remove 1000 goldVersion 0.1.7- Fixed bug when character had gender swapped.- Added pronouns to description. Now it will dynamically change how it refers to a character based in his gender- Added chance ability to lose characters in Mission- Added cult investigation, temporarily, as permanent mission. (For testing purposes)- Added 2 different rewards for the cult investigation mission.(yes losing a character is a reward)- Added Descriptions to all outcomes of Cult investigation.- Added placeholder images to all outcomes of cult investigation.Version 0.1.6- Main menu- Discord/Patreon/Trello link- Reward groups- Image for rewards- More missions- Menus beautification pass.(At the moment is images from the web, in the future i will make/buy proper custom made.)Developer Notes:Hello!I am FMC a software developer that have been playing adult games for a long time. Since the very beginning i have been modding these games, albeit only to change what i wanted and only i saw the light of these versions, and for a long time i have been wanting to make an adult game.Recently i discovered the game No Haven and while it's a excellent game it's made in RAGs a game engine that isn't created for that kinda of game. And while the dev makes miracle in that engine the game still very, very, very clunky. And it managed to piss me off so much, the engine not the game or dev, that i decided that I will make a game inspired by it but less buggy, clunky and limited. Here is where this project was born.So my goal is to make a game inspired by No Haven, Breeding Season and Strive for Power.Because I am not exactly an artist or a writer I decided to make the game highly moddable so people can use the images and stories they want instead of my lame stories and stick figures.The game still in a VERY early stage, but I decided to make people able to get into contact with it so if they can help me giving feedback in what and how things need to be made to make the game easier to mod.Latest devblog entry:I found a writer!Everyone I would like to present Hameleona. The Writer for Unnamed camp game!He already wrote some missions, please check out and say what you think. Your feedback is valuable for us! (And yes, I know, we will focus on spicing things up in the near future)As for the game, now the missions have separated slots where traits work separately. So only the leader of a group needs to be smart while the grunts need to be strong. I didn’t have the time to use it widely but it’s applications can already be seen in some missions!The system also works for modding, but sadly the training system still not use it. (It’s the goal for the next update)I changed how the mission chance is calculated. The new system needs a lot of polish but it’s a step towards the feedback people gave. Expect improvements of it in the near future.I enabled the window size controls. Keep in mind that the game is made with the 1280x720 as base, others ratios might cause issues.Some rough rebalance in the mission rewards were done, I think now it should be easier to stay afloat in the game. And I added a couple of missions for free in the start of the game.Sorry for the late release. A couple of bugs appeared at last minute. And if you find any bug or have any suggestion, as always, feel free to contact me here or in the discord.Consider joining the discord to discuss the game and get early access to beta builds, not sure why you would want that they are all bugged but I appreciate early feedback.In addition, if you like the game consider supporting us at the Patreon.(We are still looking for an artist)PS: Also if you find typos, grammatical errors and other wring problems - come and shout at me in Discord.-hameleona.How-to-Play:You can send your characters in missions by clicking in "Missions" then the zone you want and the mission you want.In the mission menu you can see what traits are beneficial and what traits are a burden in the mission, clicking in the characters to the right automatically shows the odds of result of the mission.Clicking in "End Day" advances time. At the moment all missions take 3 days to complete.Gold/MoneyAll characters are paid daily, sending them into missions has a cost. If you don't have enough money you cannot send them into missions.(it will change in the future)If you reach -1000 of gold you get a game over.Levels and traitssurviving a mission earn the character experience, after he has accumulated enough experience, at the moment 30, he can level up in the "characters" screen. There you can pick an extra trait for your character. All characters can adquire up to 2 traits by leveling up.(It's possible to get traits in some missions)PrisonersYou can sell or train your prisoners in the "dungeon" menu. At the moment you can only train prisoners to be recruited and all prisoners sells for the same price, but it will be changed in the future.GoalThe general idea of this game is to be a "pokemon" game, where your goal is to make your dream team, with the races, traits and genders you want. Also you have to survive until them. In the future there will be "important" missions but at the moment these aren't in place.Modding:Look at the gifs below, they are a bit old but it will give you an idea of how it works.Copy a mission/race/trait and edit as your liking, if you have any doubts hit me up on discord.(Right now things are always changing so i didn't have time to make a proper documentation)I recommend you to copy the "Cult investigation" mission.(It has most of the allowed functions for modding)Added RacesPortraitTraitZone and missionsCamp Game Hotfix is published on xGames as a part of our large adult games collection. Free download of this adult game is served via few clicks. All new games and different updates are delivered to you on daily basis by xGames.