I'm also getting an audio error.anyone else getting an audio error while running game?
With my version or the original? What audio issue are you seeing/hearing?I'm also getting an audio error.
I'll be looking at it tomorrow when I bring in their changes.Are there any major changes for 1.02?
Well here's the change:Are there any major changes for 1.02?
diff -r "Succubus Farm v1.01/data/Map081.json" "Succubus Farm v1.02/data/Map081.json"
12115c12115
< "$gameMap._setEnemyId = 5;"
---
> "$gameMap._setEnemyId = 4;"
13677c13677
< "$gameMap._setEnemyId = 4;"
---
> "$gameMap._setEnemyId = 5;"
Package | Size | Link |
---|---|---|
JOIPlay | 137.6M |
You must be registered to see the links
|
Windows | 191.6M |
You must be registered to see the links
|
Linux | 196.3M |
You must be registered to see the links
|
Yay for new update! Thank you for your coding work for our community!Succubus Farm 1.02.01 Release
FAQ
Q: Is this the full game?
A: Yes.
Q: But this is smaller, how is that possible?
A: Assets were recompressed to save disk space. In some cases quality has been reduced. The changes should not be perceptible.
Downloads
Package Size Link JOIPlay 137.6M You must be registered to see the linksWindows 191.6M You must be registered to see the linksLinux 196.3M You must be registered to see the links
Succubus Farm v1.02.01 (Unofficial)
Windows Install: 429,854,255 bytes
Linux Install: 473,580,523 bytes
Game Assets: 163,544,331 bytes ~18% of the 1.02 release
Older Changelog
- Features:
- Update to
You must be registered to see the links- Better image compression
You must be registered to see the linksplugin integrated- Translation of variable/switch names (MTL)
- Added screenshots - use F6
- Updated splash screen
- Added option to skip splash screen
- Increased save slots to 999
- Fixes:
- Issue in the core with URLs which had characters with URI encoding
- Swapped automaton animations
- Flashing during automaton animation
- Layer issues
As always, please report any issues you find to me.
Download link for windows doesn't work. (Download doesn't start)Succubus Farm 1.02.01 Release
FAQ
Q: Is this the full game?
A: Yes.
Q: But this is smaller, how is that possible?
A: Assets were recompressed to save disk space. In some cases quality has been reduced. The changes should not be perceptible.
Downloads
Package Size Link JOIPlay 137.6M You must be registered to see the linksWindows 191.6M You must be registered to see the linksLinux 196.3M You must be registered to see the links
Succubus Farm v1.02.01 (Unofficial)
Windows Install: 429,854,255 bytes
Linux Install: 473,580,523 bytes
Game Assets: 163,544,331 bytes ~18% of the 1.02 release
Older Changelog
- Features:
- Update to
You must be registered to see the links- Better image compression
You must be registered to see the linksplugin integrated- Translation of variable/switch names (MTL)
- Added screenshots - use F6
- Updated splash screen
- Added option to skip splash screen
- Increased save slots to 999
- Fixes:
- Issue in the core with URLs which had characters with URI encoding
- Swapped automaton animations
- Flashing during automaton animation
- Layer issues
As always, please report any issues you find to me.
In this case, there was very little coding needed. Just moving files and configuring plugins. That said, you're welcome.Yay for new update! Thank you for your coding work for our community!
Works for me, no idea why you were seeing issues. Unfortunately unofficial updates don't get the same love as official updates on F95, and I don't have an account on nopy for uploading, so I'm stuck with PixelDrain for now.Download button for Windows version doesn't work
Download link for windows doesn't work. (Download doesn't start)
But I could download the Linux version. Thanks!
No. The MC's name is fixed.Is it possible to change the MC's name?
How do I remove message boxes to have a full view of the CG?
I've tried shift, but it doesn't seem to work. Shift does work in seemingly older games like Summer memories or the NPC-world games. The interface on Succubus farm looks different- just like that of Tails of Desire (Shift doesn't work there either).No. The MC's name is fixed.
Does shift not work?
scenario folder next to www. Here's how you decode (python script in that directory, I called it decode.py):Does anyone know where I can find the files where the texts are in English because I want to do a German translation but unfortunately I can't find the files?
#!/usr/bin/env python3
import codecs
import os
import shutil
for entry in os.listdir('.'):
if(entry.endswith(".sl")):
print(entry)
with codecs.open(entry, 'r', encoding='utf-8') as f:
text = f.read()
out = ""
for c in text:
out += chr((ord(c) ^ 255))
with codecs.open(entry[:-3] + ".txt", 'w', encoding='utf-8') as f:
f.write(out)
shutil.copystat(entry, entry[:-3]+'.txt')
#!/usr/bin/env python3
import codecs
import os
import shutil
for entry in os.listdir('.'):
if(entry.endswith(".txt")):
with codecs.open(entry, 'r', encoding='utf-8') as f:
text = f.read()
out = ""
for c in text:
out += chr((ord(c) ^ 255))
with codecs.open(entry[:-4]+'.sl', 'w', encoding='utf-8') as f:
f.write(out)
shutil.copystat(entry, entry[:-4]+'.sl')