- Jul 24, 2018
- 1,011
- 942
How do you get to this amazon camp?
- Added the final bad end content for Lunexis in the Amazons' camp.
How do you get to this amazon camp?
- Added the final bad end content for Lunexis in the Amazons' camp.
Yeah, certain money-making strats were nerfed because... Hell if I know. There's no damned time limit on the game, so it'll just take longer to make the same money. As if money was ever a problem in the first place, between milking, selling slaves, selling slaves' clothes, and selling fluid transformatives with that water perk. A solution looking desperately for a problem.Say did Inno changed the prices of stuff? playing new version and Demon slaves shouldn't be this CHEAP when it comes to selling them (neither Milking a slave should only give 1.000 flames, were the prices dropped to avoid the "get rich fast" milk strategy?)
If so then I guess I'll just have to capture and sell slaves for a living nowm at least 75.000 flames per catch is decent (demon slaves that is)
Bold of you to assume the excuses stopped at some point. And yes, I'm saying excuses because year round 'life issues' for several years seems more like a reason to shut down development and get your shit together than slowing progress to a crawl.Good old Inno back at it again with her life issues
Just play through the main story.How do you get to this amazon camp?
Inno seems to think that stuff like fairies, kobolds, and goblins are common garbage. Maybe not quite in those words, but it has been expressed that she is not adding those.Is there a way to make yourself a fairy in this game? If not someone needs to seriously get on that for a mod or something........
by my memo, in smartphone u can make elemental do that.is there a way to make elementals join in "activities", or is it only combat?
Well, I looked on the discord and people have been talking about how fairies are planned about one or two months ago. And Inno used to say years ago that fairies would be a thing. So I don't exactly think Inno's all that against fairies or anything. Feel free to prove me wrong though, I just skimmed through things like #lilith-chat real quick.Inno seems to think that stuff like fairies, kobolds, and goblins are common garbage. Maybe not quite in those words, but it has been expressed that she is not adding those.
Someone is likely working on a common fantasy race mod, which will probably make Inno need to take another week off to throw a fit, but I wouldn't trust any mods more complex than clothing. I used a kobold race mod not too long ago, and it fucked parts of the game I didn't think would be affected. Like time passing while sleeping in my room.
I just assumed fairies were off the table since similarly stereotypical stuff like elves and goblins were, since they're all under the same sort of 'contemporary fantasy' umbrella.Well, I looked on the discord and people have been talking about how fairies are planned about one or two months ago. And Inno used to say years ago that fairies would be a thing. So I don't exactly think Inno's all that against fairies or anything. Feel free to prove me wrong though, I just skimmed through things like #lilith-chat real quick.
I honestly don't understand the aversion to 'contemporary fantasy races' when Inno already added Griffons, Dragons, Harpies, Arachne, Lamia, and she's even adding a kitsune race - that should have been added years ago but hey what's new with that?I just assumed fairies were off the table since similarly stereotypical stuff like elves and goblins were, since they're all under the same sort of 'contemporary fantasy' umbrella.
If there's a list that says they're in, then they're probably in, but that also means you're in for a big fucking wait. Especially when they get pushed back several times to make way for... I don't know, a 'rub penis/clit on navel' action or something.
There's a reason I'm not in the LT Discord
Well, I don't know about list, but here's what I was talking about when I mentioned fairies being discussed.I just assumed fairies were off the table since similarly stereotypical stuff like elves and goblins were, since they're all under the same sort of 'contemporary fantasy' umbrella.
If there's a list that says they're in, then they're probably in, but that also means you're in for a big fucking wait. Especially when they get pushed back several times to make way for... I don't know, a 'rub penis/clit on navel' action or something.
There's a reason I'm not in the LT Discord
That's odd. I've modded a race into the game before, and while i didn't check for this bug (since i didn't know it existed), i don't see how it could affect time. Adding a race into the game causes a lot of compilation errors by design. By being fault intolerant, it's hard to believe the game would compile, and effected something unrelated.I used a kobold race mod not too long ago, and it fucked parts of the game I didn't think would be affected. Like time passing while sleeping in my room.
When selecting the elemental, click on "Form: Passive" wich toggles passive/ active status, and select the "active" form.is there a way to make elementals join in "activities", or is it only combat?
That's odd. I've modded a race into the game before, and while i didn't check for this bug (since i didn't know it existed), i don't see how it could affect time. Adding a race into the game causes a lot of compilation errors by design. By being fault intolerant, it's hard to believe the game would compile, and effected something unrelated.
Forgive me, but i haven't messed with the src in years, and i'm talking from memory.
races are/were based on a set of part with traits. Lets simplify this to 3 parts [head, torso, legs] but it's more like 9 or even 16+ parts.
These body parts have something like a skin, and this skin will have idk.... texture or pattern. these traits could have their own traits, and go 3 traits deep. I think the eyes were one of these examples. You had shape, pupil.... and something else. Alright, so how were these traits store/coded into the game?
Now the game relies heavily on two things called ENUMS and SWITCH STATEMENTS. Enums are list of objects with constant values. For any C or Cpp devs, this will sound odd since i believe those languages treat Enums like primitives (numbers). These Enums are then fed into switch statements (This is very common Enum use). When you add a item to a Enum, all switch statements require you add a listing for that item or the game wont compile. I believe it was 2 separate sections you had to edit/append. So given my mock numbers, i'd have 16 lines of code to edit, just to add all 3 body parts for a new race. I seem to remember having 230 compilation errors at one point, but some of those were double counting errors. I also don't believe any of the required code edits touches things outside of body part list, NPC spawned inventory, and spawning NPC.
Basically what i'm trying to say is.... How?! but given the retarded code, maybe it makes sense.
Things changed a bit since then. These days you can add in races, body parts, etc, by dropping in XML files.That's odd. I've modded a race into the game before, and while i didn't check for this bug (since i didn't know it existed), i don't see how it could affect time. Adding a race into the game causes a lot of compilation errors by design. By being fault intolerant, it's hard to believe the game would compile, and effected something unrelated.
Yeah, enums in C/C++ are just glorified ints. Java enums, on the other hand, are fucking wild. Very powerful by comparison, but with great power comes great responsibility.Now the game relies heavily on two things called ENUMS and SWITCH STATEMENTS. Enums are list of objects with constant values. For any C or Cpp devs, this will sound odd since i believe those languages treat Enums like primitives (numbers).
Look up the word 'otters' in this thread, my post talking about what should have been a simple race mod will be one of them. You should get a kick out of it.Basically what i'm trying to say is.... How?! but given the retarded code, maybe it makes sense.
This, if anything only "contemporary" fantasy races I can think of are Hobbits and Orcs (AFAIK they were both created by Tolkien)I honestly don't understand the aversion to 'contemporary fantasy races' when Inno already added Griffons, Dragons, Harpies, Arachne, Lamia, and she's even adding a kitsune race - that should have been added years ago but hey what's new with that?
also, i dont know what she considers the word 'contemporary' to mean, but applying that to elves, fairies, fey, etcetera is just so wrong it borders ignorance; those things have been around in human myths, legends, and stories since people first began thinking beyond themselves. Elves have been around since, in the very least, the old Norse mythos was created. Goblins have been in literally every mythos in one form or another. Fairies, pixies, fey have been around for thousands of years. what part of that is 'contemporary'?
knowing Inno, the actually interesting things have been pushed back for [Insert Pointless Sexual Activity] and would get pushed back even more when she 'needs a break because she's so stressed' or something.