- Aug 17, 2020
- 465
- 493
- 153
It's pretty much equivalent for all branches now, it really depends on what you want to get out of it.Which class has the most content?
It's pretty much equivalent for all branches now, it really depends on what you want to get out of it.Which class has the most content?
What content do they each have?It's pretty much equivalent for all branches now, it really depends on what you want to get out of it.
H-content? danceWhich class has the most content?
The content type is hinted in each program description now, but the best way to put it is that business is crafting and selling products for the most part. Dance is a skill booster with a small-ish story related to it and some competitions. Acting will unlock a bunch of gigs you can do and is also a skill booster. Homekeeping is more about quality of life, the content is tied to make your life "easier". Finally business is two exclusive story paths. If you choose the last one, do be careful, being late at work or not fulfilling certain requirements will get you fired.What content do they each have?
You need to:please help, what exactly are the requirements for the holt job.
i see that i have the exam passed, but it still gives me fired because of disregard??
Here is my reply.You need to:
-Go to work every day (skipping work will cause issues, you can't bypass the content by not doing it)
-Not be late (start work before 10 am)
-Fulfill the Mrs. Holt requirements (varies, reading is key here, but you requirements are also listed in the Reminders tab)
If, at the end of the week, you end under 3 "writeUp Score" (skipping work causes two, the rest causes one), it will reset the writeUp score on saturday, if you reached 3 on friday due to Mrs. Holt requirements, you will be fired the following week.
<<if $time.days % 7 < 2 && $flags.jobs.holt.active>>
<<if $time.days % 7 !== 6 && $time.days % 7 !== 0 && $time.days >= 57 && $flags.jobs.holt.active>>
Do you belive that i suspected it was the problem?I took a look at the whole code and here is my only finding so far (I also got my tester on the case, just in case I missed anything, more on that when I have an update.) is a typo in the task reminders making it so shaving requirements aren't shown when they are added to the list. If you could send me a save file, that would be greatly appreciated, alongside which version you are playing on. If you are still on 0.4.3a, you can try a fresh save on 0.4.3b, otherwise -I know this stinks- you will have to wait until next version for a fix.
Edit: The issue is really dumb and I am glad to say it was finally found. An issue with the check means it starts from the internship instead of the first day of work. I'll be patching it for next version. For those that want to patch the file themselves, you can edit this code:
toCode:<<if $time.days % 7 < 2 && $flags.jobs.holt.active>>
You can do a search and replace on the file in Twine to switch it up (I don't recommend modifying your game file as I'm not responsible for the game after alterations per policy, but this is safe code that I can confirm will work).Code:<<if $time.days % 7 !== 6 && $time.days % 7 !== 0 && $time.days >= 57 && $flags.jobs.holt.active>>
Frankly, I'm not a professional programmer, so in terms of style I am winging it. I wrote this quickly, but you could actually replace the first two clauses by setup.college0.includes($time.days % 7). It's still three clauses within the same if, but it's a little cleaner. If you followed the game for a while, it used to be much, much worse lolDo you belive that i suspected it was the problem?
Any way nice catch!
ps: this programing stile subverts the advantage of twine engine... you can expect similar stupid bugs in the future... oh well good luck!
You may want to introduce self documentation (there is no way to remember your own code after some time and certain size)Frankly, I'm not a professional programmer, so in terms of style I am winging it. I wrote this quickly, but you could actually replace the first two clauses by setup.college0.includes($time.days % 7). It's still three clauses within the same if, but it's a little cleaner. If you followed the game for a while, it used to be much, much worse lol
Hi there, it is indeed bugged, as listed in the replies above. Due to time being well ahead in the month now, the fix will be with the next main release of the game (0.4.4) on the 2nd of April (or 3rd depending on your time zone). In the meantime you can explore other routes or get a new save going all the way to the interview (do not progress any further because of the aforementioned bug).i applied this and still get fired instantly.
also there is literally no reminder what i should wear or what i should look like on my first day.
please get this fixed in a quick update so that it works 100%, thanks
hmmm i didnt run into that one.I am getting
Error: <<if>>: bad conditional expression in <<elseif>> clause (#14): Unexpected token '<'
when entering vixen. Any fixes?
While this does not address your issue, the gym is all sorts of screwed up right now, you can't get in with regular clothes.bug in the gymYou don't have permission to view the spoiler content. Log in or register now.
<<set _sportTop = setup.playerCode.isWearingItemWithTags('Sport', 'Top')>>
<<set _sportBottom = setup.playerCode.isWearingItemWithTags('Sport', 'Bottom')>>
<<set _sportShoes = setup.playerCode.isWearingItemWithTags('BlackRunningShoes')>>
Unsure if this is the solution, but it is a solution.I am getting
Error: <<if>>: bad conditional expression in <<elseif>> clause (#14): Unexpected token '<'
when entering vixen. Any fixes?
<<elseif visited("RV12p1") > 0 && visited("RV13") == 0 && (($time.days % 7 == 1 && $time.minutes > 300) || $time.days % 7 == < 5 && visited("Club") > 24>>
<<elseif visited("RV12p1") > 0 && visited("RV13") == 0 && (($time.days % 7 == 1 && $time.minutes > 300) || $time.days % 7 == 5 && visited("Club") > 24)>>
i tried to but ended up breaking everything in the gym lol (im dumb when it comes to editing codes) dirty edits i can do but codes not so muchWhile this does not address your issue, the gym is all sorts of screwed up right now, you can't get in with regular clothes.
BlackRunningShoes is the id of the item, and not a tag. Should be checking for Sport and Shoes. Curiously BlackRunningShoes is tagged with Shoes twice. Even fixing this does nothing though, because later on the code looks for '_blackRunningShoes'. That does not exist. Should be checking for '_sportShoes'.JavaScript:<<set _sportTop = setup.playerCode.isWearingItemWithTags('Sport', 'Top')>> <<set _sportBottom = setup.playerCode.isWearingItemWithTags('Sport', 'Bottom')>> <<set _sportShoes = setup.playerCode.isWearingItemWithTags('BlackRunningShoes')>>
Would that fix everything? No. the code also looks for '_sportShorts'. Again, not a thing. Needs to look for '_sportBottom'.
Changing this allows you to wear normal male clothes to the gym.
Your problem is solved.i tried to but ended up breaking everything in the gym lol (im dumb when it comes to editing codes) dirty edits i can do but codes not so much
<<set _hasSportTop = [setup.playerCode.hasItem('SportTop'), setup.playerCode.hasItem('PinkSportTop')>>
<<set _hasSportTop = [setup.playerCode.hasItem('SportTop'), setup.playerCode.hasItem('PinkSportTop')]>>