Search results

  1. TheShepard256

    Forced LIs/ROs

    I never found it particularly difficult to avoid unwanted relationships in BioWare games; in fact, I had the opposite problem with Juhani. No comment on other RPGs, since none of the other ones I've played through have romance options. And yeah, Jacob is pretty bland; so much so that in my Mass...
  2. TheShepard256

    Can't get Brandy to hook up with Sally

    It takes a week before they start their relationship.
  3. TheShepard256

    TiTs Wiki Thread

    You missed elasticity; half-gryvain start with 1.25 while humans start with 1.
  4. TheShepard256

    Female.

    Proof that there really should be limits on how far hair length makes your gender appearance more feminine. For that matter, the same should be true of hip and lip ratings, too; it's already true for breast size (which caps at 50).
  5. TheShepard256

    Small Belle butt stuff expansion

    Yeah, he only really goes on the forums to check bug reports. He's much more active on Discord; tag him there, or email him at fenoxo@gmail.com.
  6. TheShepard256

    Maximum level

    Yeah, I'm the kind of person who goes everywhere and does every sidequest they can find.
  7. TheShepard256

    Maximum level

    10. I'm not sure why, given that you're probably going to be level 5-6 at the end of Act 1 (i.e. the Winter Palace dungeon) in a three-Act story. Then again, I'm assuming PC level is linearly proportional to story progress, which might not be the case (especially if XP to level up increases...
  8. TheShepard256

    What character left you speechless? TiTS Edition.

    The most reliable way to raise it is through the cleanup scene that occurs after going back to her place without selecting "Lemme Out"; it also happens after getting her collar. You can raise it up to 6 that way. The scene still occurs if you pick "Lemme Out", but it won't raise pet level. The...
  9. TheShepard256

    What character left you speechless? TiTS Edition.

    It's listed under Jerynn's stats in the Codex's Encounters menu, Uveto section.
  10. TheShepard256

    How do i get Erra's inessa collar scene to trigger?

    There is no such scene. Erra cannot be present during the purchase, and Inessa otherwise does not figure into Erra's content.
  11. TheShepard256

    How do i get Erra's inessa collar scene to trigger?

    Take her for walkies. Afterwards, Dee will have a talk with you about Erra's feelings, then talk with Erra about those feelings and reciprocate them. Then the option to purchase her a collar will be available.
  12. TheShepard256

    What character left you speechless? TiTS Edition.

    Yes. There are two ways to get it: both of them start by being rescued by her. Pay attention to the tooltips! The first is to get your pet level with her to 8; upon being rescued, you'll automatically take the option to share her coat. Once that's done, take the "More Pls" option (tooltip: "Why...
  13. TheShepard256

    Newb questions

    Except for the "Test Drive" scenes. Unless that was changed recently.
  14. TheShepard256

    Small Belle butt stuff expansion

    Players aren't going to expect that simply doing a specific scene with Belle would cause a Bad End with no warning, so I don't think the Bad End should be based on chance. Rather, I think it should be based on the player doing a specific set of actions (with maybe a specific set of status...
  15. TheShepard256

    Fruity Milk Flavors

    Yes; I'd do: choice = randomInCollection("strawberry","banana","orange","melon","blueberry") switch(choice) { case "strawberry": flavor = "strawberries and milky cream" case "banana": flavor = //whatever complex flavour you want case "orange": flavor = //etc. case "melon": flavor = //etc. case...
  16. TheShepard256

    Measurements in the Metric System

    The option already exists; go to Codex -> Options, and you can toggle between Imperial, metric, both and default for each of length, weight, fluid volume and cubic length volume.
  17. TheShepard256

    Fruity Milk Flavors

    The gem colours use the 'simple' colour for a given fluid rather than their actual colour; so, "light orange" would become "orange", "light yellow" would become "yellow", etc. The full list of gem colours is as follows: case "white": return RandomInCollection("pearl", "opal"); case...
  18. TheShepard256

    Fruity Milk Flavors

    And another thing: Chocolac and Honeydew (which are fundamentally similar items, but for chocolate and honey milk respectively) have additional effects which you could include with these if you wanted to. Namely, they both follow the format: First, text for applying the transformative. Then, if...
  19. TheShepard256

    Fruity Milk Flavors

    It's actually quite simple to code; choice = randomInCollection("strawberry","banana","orange","melon","blueberry") switch(choice) { case "strawberry": //flavour text for getting strawberry milk case "banana": //banana text case "orange": //etc. case "melon": case "blueberry": default: //error...