The site's search function works really well, you know. But anyway, here are two saves that have been posted to the thread--one old and one from just yesterday!
Oh, right; Didn't know elite status was class level.
Here's the code of GenChildSet() (comments and variable names changed for comprehension) as of 0.4.4.8:
Code:
public void GenChildSet(CommonStates child, CommonStates mom)
{
CommonStates dad = mn.npcMN.GetFriend(mom.pregnant[0]);
CommonStates momOrDad = mom;
if (dad != null && UnityEngine.Random.Range(0, 2) == 0)
momOrDad = dad;
for (int index = 0; index < child.colors.Length; ++index)
child.colors[index] = momOrDad.colors[index];
switch (child.npcID)
{
case 142: // Under Ground Girl
case 143: // Under Ground Boy
case 181: // Under Ground Young Man
if (momOrDad == mom && mom.npcID == 44 /* Under Ground Woman */ && mom.colors[0] == Color.white)
{
// Set first 3 colors to #323232 (dark charcoal)
for (int index = 0; index < 3; ++index)
child.colors[index] = new Color32(50, 50, 50, byte.MaxValue);
break;
}
break;
}
switch (momOrDad.npcID)
{
case 1: // Man
case 89: // Young Man
child.colors[1] = child.colors[0];
break;
}
switch (child.npcID)
{
case 10: // Male Native
case 11: // Big Native
case 14: // Native Boy
case 141: // Large Native Boy
case 143: // Under Ground Boy
case 180: // Large Young Man
case 181: // Under Ground Young Man
LoadGen(child.gameObject);
break;
case 15: // Female Native
case 16: // Native Girl
case 140: // Large Native Girl
case 142: // Under Ground Girl
LoadGenGirl(child.gameObject);
break;
case 44: // Under Ground Woman
child.parameters[0] = mom.parameters[0];
child.parameters[4] = mom.parameters[4];
LoadGenUnder(child);
break;
}
if (mom.status[7] > 0) // mom was elite?
mn.npcMN.NPCClassUp(child); // child is now also elite
child.status[8] = mom.pregnant[0]; // friendID of dad (friend who made mom pregnant)
child.status[9] = mom.friendID; // friendID of mom
}
I did manage to find all npcIDs stuck somewhere in Assets\Resources\npcstats, which I used to fill up the comments above. Here they are:
question lulu-quest:
I'm at the point to find a burial spot, butthe guide somewhere earlier says I can take cassie to the lab and resurrect lulu. but there's no questmarker there...
any ideas what I'm missing?
question lulu-quest:
I'm at the point to find a burial spot, butthe guide somewhere earlier says I can take cassie to the lab and resurrect lulu. but there's no questmarker there...
any ideas what I'm missing?
The site's search function works really well, you know. But anyway, here are two saves that have been posted to the thread--one old and one from just yesterday!
Hi, sorry to bother you, is there an easier way to get Crimson Meat? I mean, where are those deformed things in the cave? I'm only getting them one at a time. Are there any other mobs or loose ones I can find? I need them to resurrect my new character. Thanks.
Hi, sorry to bother you, is there an easier way to get Crimson Meat? I mean, where are those deformed things in the cave? I'm only getting them one at a time. Are there any other mobs or loose ones I can find? I need them to resurrect my new character. Thanks.
Can only NPC abducted? or Reika and the female protagonist too?
For me Reika is a NPC too.. but i never triggered an abduct event.. i died sometimes now..
Nah, more in the sense of "How does a game dealing with such extreme stuff manage to have more than one dev on it?" and the answer is that the devs are a couple, which means they probably have similar perversions.