Search results

  1. Alder

    Alder pls comeback bro

    Thanks for the support, but I'd feel bad for taking money for nothing. I made a statement recently here: https://www.patreon.com/posts/foe-0-4-22-20751070
  2. Alder

    I can't question the Legomorphs

    Can you save to file and post that here. There's probably a loophole/edge case that causes it to break.
  3. Alder

    [FoE 0.4u] terry-tf.js unfixed copypaste

    Fixed on github. Thanks for the report!
  4. Alder

    how to play offlline version

    This is the latest release: https://www.fenoxo.com/play/FoE/FoE_04u.zip
  5. Alder

    FoE Save Locations?

    Saving is only available in certain locations. Keep an eye out for the text "This is a safe location, you can sleep and save here." Examples include the Tent location in the Nomad Camp.
  6. Alder

    FoE Wiki

    They are in the game, but pretty hard to get hold of without cheating.
  7. Alder

    FoE Wiki

    I asked the people hosting the wiki to take a look at it. Hopefully it can be solved! Thank you for your work in restoring the FoE wiki.
  8. Alder

    Building the game

    I'm around, just not active on FoE. As to the question, the only thing the build process really does is to package the game files into a more portable format, at the loss of code readability. Since FoE is written in JavaScript, there isn't any need to "compile" the code - it will be interpreted...
  9. Alder

    A way to play the current version of FoE on Phone

    FoE is HTML/CSS/JS (ie a regular website). It does use some fanciness that might not work in some JavaScript sandboxes (save-to-file is unlikely to work on mobile for example), and is not necessarily compatible with older browsers. Like stated above tho, most modern browsers should play it just...
  10. Alder

    A way to play the current version of FoE on Phone

    It should be mentioned that FoE isn't Flash. It's likely to work in any modern browser, phone or not.
  11. Alder

    Minor Additions and/or Complaints

    For actual bugs, please make separate threads in the bug reports subforum.
  12. Alder

    Minor Additions and/or Complaints

    It's a simple enough fix, that's I've pushed to the develop branch on github. Will probably take a while to make it to the play page here on fenoxo.com.
  13. Alder

    Possible Bug? (Not Sure)

    Meaning that it's something that could be subject to future balance changes. That or introduce more ways for NPCs to increase stretch, which will allow for bigger insertions.
  14. Alder

    Possible Bug? (Not Sure)

    Technically not a bug, but I can see why there would be confusion. This is due to a size restriction (cock being too thick, specifically). It worked when I went to the CockSmith and reduced cock thickness. One could debate if these restrictions are too stringent tho.
  15. Alder

    Possible Bug? (Not Sure)

    Can you upload a save file?
  16. Alder

    Alchemy broken? Roa error, And i can't find any Vulpinix?

    Like stated above, I added a polyfill for it. I've pushed it as a fix to the site, but won't make a release (only affects IE).
  17. Alder

    What language is Fall of Eden coded in?

    Minor bits of HTML and CSS for presentation. Majority is coded in JavaScript. Full source here: https://github.com/AlderArts/foe
  18. Alder

    Alchemy broken? Roa error, And i can't find any Vulpinix?

    if(Math.random() < 0.01) drops.push({ it: Items.Vulpinix }); 1% odds to get it. It will stay that way. If you don't want to grind, just use the debug ITEM option in the Nomad Tent area.
  19. Alder

    Alchemy broken? Roa error, And i can't find any Vulpinix?

    This is Internet Explorer being Internet Explorer. The Object.assign method is an ecmascript 6 feature, not supported on that browser. I've added a polyfill for it to the latest github code, but until I make a release, please play on Chrome or Firefox. In fact, do that anyways. You can export...