Home Artists Posts Import Register

Content

Hi everyone, at long last, here's Lust Doll Plus r1.0! This is a complete rehaul of the original Lust Doll. Currently goes up to meeting Cassie. Will follow up soon with plans for next month, plus tier rewards.

Cheers!


Edit: Updated with 1.1!


Lust Doll Plus r1.1

Windows: Link 

Mac: Link 

Linux: Link 

Android:  Link 


Comments

Danielle

So far I like the new stuff but already found a program, after beating bandit girl and equipping her dull knife I left the menu and the game froze with an error message ([TypeError] Can not read property 'name' of null) other then that the game started of very strong

Danielle

So far I like the new stuff but already found a program, after beating bandit girl and equipping her dull knife I left the menu and the game froze with an error message ([TypeError] Can not read property 'name' of null) other then that the game started of very strong

Anonymous

I also found a bug. The enemies can hit you for negative damage, healing the character. Thus making surrendering impossible and caught in an infinite loop.

Anonymous

Im curious. Is the apk for Android not complete? I cant leave the starting city.

indivi

It'll take time for this version of Lust Doll to catch up to where the original one is at. Remember, old lust doll was in development for 2+ years. This new version's barely 1 month.

Thorax

I like it :) a few bugs here and there. There is a bug where the game keeps calling cassie a slime monster. I believe whilst you are pregnant with one. Im looking forward to seeing more new changes to the game :)

Anonymous

All in all im excited to see how LD "2.0" turns out. Lol i was just cot off guard thats all. Sorry for the redundant coment Indivi.

Richard Penner

Running the Mac version on 10.14.4, I find that attempting to save or view the options causes a fatal error when it attempts to mkdir -- it ends with Error: EROFS: read-only file system, mkdir ...

Richard Penner

StorageManager.localFileDirectoryPath = function() { var path = require('path'); // Add lines for crude workaround if (process.platform === 'darwin') { return '/tmp/LD/'; } // End Add lines var base = path.dirname(process.mainModule.filename); return path.join(base, 'save/'); };

Richard Penner

StorageManager.localFileDirectoryPath = function() { var path = require('path'); var base = path.dirname(process.mainModule.filename); // Begin More Mac-Like Addition if (process.platform === 'darwin') { base = '/tmp'; if ( 'HOME' in process.env ) { var home = process.env['HOME']; var fs = require('fs'); var appSupport = path.join(home, 'Library', 'Application Support'); if ( fs.existsSync(appSupport) ) { var newBase = path.join(appSupport, 'Lust Doll Plus'); try { if ( ! fs.existsSync(newBase) ) { fs.mkdirSync(newBase); } base = newBase; } catch (e) { } } } } // End Addition return path.join(base, 'save/'); };

Countzero

Should we just post bugs we find here in the comments or is there a better way? I have found the following: If I select "Use Skill" even though I don't have any skills yet and then select the empty entry in the list, I get the following error: Type Error: Cannot read property 'id' of undefined If I choose "Nevermind" on the sleep point in the warehouse, the game shows the text for the masturbation with a cock, even though my character doesn't have one.

indivi

No prob, getting to the city'll def be in the next release!

indivi

It sounds like your computer is in read-only mode, which is preventing the game from creating save or config files. See if anything here works? <a href="https://www.google.com/search?q=read+only+mac&amp;oq=read+only+mac&amp;aqs=chrome..69i57.1823j0j1&amp;sourceid=chrome&amp;ie=UTF-8" rel="nofollow noopener" target="_blank">https://www.google.com/search?q=read+only+mac&amp;oq=read+only+mac&amp;aqs=chrome..69i57.1823j0j1&amp;sourceid=chrome&amp;ie=UTF-8</a>

Richard Penner

That's not it, exactly. The Mac application launches from a sandbox where it is not allowed to modify its inner workings and the save folder is being attempting to be created inside the read-only sanbox that mirrors the app.nw directory.

Richard Penner

With Game.app in either /Users/&lt;me&gt;/Lust Doll Plus r1.0 (Mac) or /Users/&lt;me&gt;/Downloads/Lust Doll Plus r1.0 (Mac) the behavior is unhappy. Start Game -&gt; Esc -&gt; Options -&gt; Esc triggers a write of options to the save folder. Here is what that looks like in unmodified Lust Doll Plus 1.0 : UnknownError Error: EROFS: read-only file system, mkdir ‘/private/var/folders/94/txqr96012m791mwf6hhvcgr00000gn/T/AppTranslocation/4763C5B-E561-486B-8262-FA489693290F/d/Game.app/Contents/Resources/app.nw/save/’ EROFS is not “Erotic Filesystem” but POSIX-like naming of the “Error, Read-Only File System” It’s not Chrome, but rather Mac OS 10.12+ behavior described here <a href="https://lapcatsoftware.com/articles/app-translocation.html" rel="nofollow noopener" target="_blank">https://lapcatsoftware.com/articles/app-translocation.html</a> “App Translocation prevents software update mechanisms such as Sparkle from working.” Solution 2 (part 1) Moving Game.app into the top-level of /Applications or /User/&lt;me&gt;/Applications disables AppTranslocation and makes the game save game/save config/save options work as intended, but now the application is generically named. Solution 2 (part 2) Renaming the app in the Finder doesn’t seem to break anything. &lt;/me&gt;&lt;/me&gt;&lt;/me&gt;

Richard Penner

Sorry for being so long-winded on this, but this bit of Mac Technology is new to me, since nearly all I download are PDFs and other documents. Even Windows games are WINE Documents to a Mac, so this technology doesn't come into play. Workaround #3 According to <a href="https://www.synack.com/blog/untranslocating-apps/" rel="nofollow noopener" target="_blank">https://www.synack.com/blog/untranslocating-apps/</a> the problem is that because the app didn't come from the Apple App Store, the downloaded file has an attribute on it which causes it to be put in the AppTranslocation sandbox. That extended attribute is com.apple.quarantine By removing this attribute from the ZIP before unpacking, the attribute never gets added to the Game.app and we can run straight from the unpacked folder in Downloads again. Here is how that looks on the command line. # Control Click on the Downloads folder and select Services &gt; New Terminal at Folder # verify downloaded ZIP has property com.apple.quarantine ls -dl@ Lust\ Doll\ Plus\ r1.0\ \(Mac\).zip | grep com.apple.quarantine || echo Attribute Not Seen OR xattr -lp com.apple.quarantine Lust\ Doll\ Plus\ r1.0\ \(Mac\).zip # Remove property xattr -d com.apple.quarantine Lust\ Doll\ Plus\ r1.0\ \(Mac\).zip # Use MacOS to unpack open Lust\ Doll\ Plus\ r1.0\ \(Mac\).zip # Verify Game.app does not have attribute ls -dl@ Lust\ Doll\ Plus\ r1.0\ \(Mac\)/Game.app | grep com.apple.quarantine || echo Attribute Not Seen OR xattr -lp com.apple.quarantine Lust\ Doll\ Plus\ r1.0\ \(Mac\)/Game.app # As long as we are here, we can even open the application from the command line open Lust\ Doll\ Plus\ r1.0\ \(Mac\)/Game.app Workaround #4 Not tested, since I would need to re-download, but the following command should unquarantine the Game.app in situ, AFTER it has been unpacked. This would seem to be suitable for including in the !Readme.rtf # Control Click on the enclosing "Lust Doll Plus r1.0 (Mac)" folder and select Services &gt; New Terminal at Folder xattr -dr com.apple.quarantine Game.app

indivi

'EROFS is not “Erotic Filesystem"' Haha wow XD. Thanks, I'll make a note of your solutions and refer anyone having the same problems to it.

M. Broguy

This game feels amazing! A huge improvment over the original and that already was a masterpiece! ^.^ I am really looking forward to seeing this being continued. ^-^

indivi

Thanks! And yes, should be much better than old LD with time!