5mithers

Member
Aug 3, 2019
313
349
The gang encounters that you need in order to find the medallions for Octavia don't trigger nearly enough. Especially when you need so many. Is there a way to make this easier, or am I praying to RNGesus until the end of time?
Depending on your level of frustration, there is always the console to cheat SugarCube.State.active.variables.backpack.data.tribe_medallion=# your way to end-run RNGesus and find salvation/damnation on another path. ;)
 
  • Like
Reactions: hans_markoff

GamerDaddy

Engaged Member
Feb 6, 2023
2,440
1,467
May I ask how long does it take to add new mission and such not a criticism but just curious and what takes longer scripting or the writing. Love this game. One last question would you ever work with a company to make 3d version of this.
in most cases its the coding part that takes the longest
 

fanevagabontul

Active Member
Jan 3, 2019
764
130
Hello
Plss help :)
Can someone explain to me what is the matter with sexual orientations?
I know some of them, and the rest left me in a fog :(
I know straight, lesbian, bisexual and asexual :(
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,511
1,797
May I ask how long does it take to add new mission and such not a criticism but just curious and what takes longer scripting or the writing. Love this game. One last question would you ever work with a company to make 3d version of this.

It very depends but I would from the updates but in my case I think finding videos, cutting them, sometimes compressing them takes a lot of that time. There hav been times when I have planned already event in my mind and I literally have spent about an hour just to find the video that would match the scene. Then cutting/cropping, etc.
I think that's the most frustrating, that event that players take sometimes 2-3minutes to "play" on my end it can take an hour or even more to make. Also if there is more than one option to choose there, it can even take 2-3 hours just to write down all possible choices endings, etc.

In my case I also feel more comfortable to write a code and not events. That's the main reason I don't want this game be story driven or VN.

As for working with company to make 3rd version. 95% no.
As a guy who balance between work, family etc. I have sometimes max an hour per evening to work on the game so I am good for now as it is.
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,511
1,797
Hello
Plss help :)
Can someone explain to me what is the matter with sexual orientations?
I know some of them, and the rest left me in a fog :(
I know straight, lesbian, bisexual and asexual :(
Code:
setup.displayOrientation = function(person) {
    if (person.likesGuys == false && person.likesGirls == false && person.likesTGuys == false && person.likesTGirls == false) {
        return 'asexual';
    }
    else if (person.likesGuys == true && person.likesGirls == true && person.likesTGuys == true && person.likesTGirls == true) {
        return 'pansexual';
    }
    else if (person.likesGuys == true && person.likesGirls == true) {
        return 'bisexual';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGirls == true) {
        return 'straight';
    }   
    else if ((person.gender == 0 || person.gender == 2) && person.likesGuys == true) {
        return 'straight';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGuys == true) {
        return 'gay';
    }   
    else if ((person.gender == 0 || person.gender == 2) && person.likesGirls == true) {
        return 'lesbian';
    }
    
    return 'straight';
};
gender = 0 - female
gender = 1 - male
gender = 2 - transfemale
gender = 4 - transmale (not implemented in game)
 

hans_markoff

Newbie
May 18, 2023
29
24
It very depends but I would from the updates but in my case I think finding videos, cutting them, sometimes compressing them takes a lot of that time. There hav been times when I have planned already event in my mind and I literally have spent about an hour just to find the video that would match the scene. Then cutting/cropping, etc.
I think that's the most frustrating, that event that players take sometimes 2-3minutes to "play" on my end it can take an hour or even more to make. Also if there is more than one option to choose there, it can even take 2-3 hours just to write down all possible choices endings, etc.

In my case I also feel more comfortable to write a code and not events. That's the main reason I don't want this game be story driven or VN.

As for working with company to make 3rd version. 95% no.
As a guy who balance between work, family etc. I have sometimes max an hour per evening to work on the game so I am good for now as it is.
Consider AI for scene graphics generation. Way less time than searching online imo
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,511
1,797
Consider AI for scene graphics generation. Way less time than searching online imo
I am using already midjourney (Suggest that AI for everyone, best in the field)
I was talking more about sex scene videos (and sometimes but way less, images for sex scenes). NSFW AI has a long way, specially for not "re-rendered positions" for couples. Haven't found good NSFW AI, that would have promt and it would work same as midjourney but with NSFW content. (There are other AI's for single woman models, poses, etc but in my case I am looking something that would create a scene from promt command)
 
  • Like
Reactions: hans_markoff

Han

Member
Nov 13, 2016
101
36
You need car parts to fix the car. I think you can buy them in The Sanctuary shop (I will try to add more random events where to get them)
I have finished all the quests in the journal and there are no car parts in sanctuary.
 

Dukass

New Member
Apr 5, 2024
3
0
Can you help me on how to install a mod for this game? Thank you very much if you can explain with pictures.
 

nikimabb

Newbie
Aug 24, 2019
34
15
Good day to all! I have a problem, I can no longer explore the world with the help of a car, writes that the damage is 100 percent and there is no way to fix it, or I forgot how to do it. Help please
 

GamerDaddy

Engaged Member
Feb 6, 2023
2,440
1,467
Good day to all! I have a problem, I can no longer explore the world with the help of a car, writes that the damage is 100 percent and there is no way to fix it, or I forgot how to do it. Help please
exploring you will find a toxic cave (gas mask needed) explore said cave you will find parts % chance
 
  • Like
Reactions: UncleEd001sex

5mithers

Member
Aug 3, 2019
313
349
OK, I know I come here and talk a lot of smack about messing with the code in the console, etc. But I have a really dumb newbie question:

How do you export/import your saves from one version to the next? I really am enjoying the game, but I must admit to a feeling of burnout from having to start from scratch every single time. It's honestly why I started poking around in the console. lol
 

hans_markoff

Newbie
May 18, 2023
29
24
OK, I know I come here and talk a lot of smack about messing with the code in the console, etc. But I have a really dumb newbie question:

How do you export/import your saves from one version to the next? I really am enjoying the game, but I must admit to a feeling of burnout from having to start from scratch every single time. It's honestly why I started poking around in the console. lol
Saves so far have been compatible between versions.

Did you forget to save to disk, lol?
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,511
1,797
OK, I know I come here and talk a lot of smack about messing with the code in the console, etc. But I have a really dumb newbie question:

How do you export/import your saves from one version to the next? I really am enjoying the game, but I must admit to a feeling of burnout from having to start from scratch every single time. It's honestly why I started poking around in the console. lol
Saves are compatible between versions. You can even load 0.01 version save and it should work for 0.49 version.
If your saves "disappear", you either play from incognito mode or your browser cache gets cleared, or at least for me, once windows update cleared cache too.

Anyways you should never start a new game with newer version, it should always work. If you play incognito mode, you can always use "save to disk" just to be sure your saves are safe.
 

Billshwr

Active Member
Feb 17, 2021
755
216
I noticed you have added a pack performance to assist with larger number of girl packs… will you be added any more to the standard options?
 

5mithers

Member
Aug 3, 2019
313
349
Saves are compatible between versions. You can even load 0.01 version save and it should work for 0.49 version.
If your saves "disappear", you either play from incognito mode or your browser cache gets cleared, or at least for me, once windows update cleared cache too.

Anyways you should never start a new game with newer version, it should always work. If you play incognito mode, you can always use "save to disk" just to be sure your saves are safe.
Interesting. Through both Chrome and Firefox, my saves do not carry over between versions. And I have never had Sugarcube games using the "save to disk" function, then the "load from disk" actually load any saves. It acts like it does something, but the save list remains empty afterwards. In both Chrome/Firefox I have Adblock plus and Privacy Badger installed. Privacy Badger shows it is blocking a cookie for GoogleTagManager


Current run in firefox 0.38a:
1717713795077.png

Then without closing firefox, opening 0.39:
1717713766579.png

This has been my experience with every Sugarcube/Twine based game. Regardless of browser used. Maybe it's ABP/Privacy Badger? But the saves persist in a given version throughout reboots/etc. They just don't survive changing versions.

Honestly, I don't expect anybody to solve this, just assumed this was a weird known bug of Sugarcube. Alas, sounds like it's just my problem/PEBKAC.

*Edit: Weird example. In 0.38a I do a Save to Disk. Then delete a few saves. Then do a Load from Disk. The ones deleted remain deleted. Nothing is restored by doing the Load from Disk, indicating it failed to actually import (or possibly export) the data.
 
Last edited:

hans_markoff

Newbie
May 18, 2023
29
24
Save to Disk has always worked for me for many twine games.

It should generate a text file named apocalyptic-world-yearmonthday-hourminutesecond.save, default location is in your downloads folder.

Obviously, one of your blocking apps/etc is the problem here.
 
  • Like
Reactions: GamerDaddy
3.70 star(s) 51 Votes