Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Morlok

#1
Strange behavior when using Cave mod.

Game setup
400x400 desert map.
game run fine for hours, then out of nowhere lag.
Did a few tests using dev mode.
Problem was solved when destroying all the plants from Cave mod (I suspect its related to the devil tongue plant).

There are no information in the error log indicating what the problem is related to.
Is experiencing the same issue when playing on the cave maps, just faster.

I suspect the issue may be related to the glow effect of the fauna. tough I never experienced the issues with the Caveworld flora mod. (that the issue is due to lighting is pure intuition and due to have experienced same kind of issues elsewhere).
#2
Quote from: Owlchemist on August 03, 2016, 10:21:27 PM
Quote from: Zakhad on August 03, 2016, 01:18:16 AM
Finally P.S/Edit how many of you actually check the work speed of various machines that you place? Because building them from different materials changes how fast they work.

Wait... really? Can anyone second this? Would be worth knowing before I invest in the time and resources to rebuild some stuff. Afaik, material doesn't matter in the vanilla game, at least, aside from its HP.

Btw I got 2 questions I can't find an answer to. How do you use fungiponics? I got it to work for 1 batch of shrooms, but now I just get "unadapted soil" and can't find any reason why. I've tried cycling to different shrooms and rebuilding it even. And two, what can I do with the 80mm mortar crates I loot from sieges? I can't find where to assemble it like I can all the other turrets. I'm beginning to guess they're only intended to be pawn off for silver.

Yep machine speed varies, Cast Iron have 110% work speed vs steels 80% if I remember correct.
I have seen "end game" metals giving 150% or higher.

As for fungiponics, you most likely make the same mistake I keep making... having a pawn with access to the area they are in, and with Growing skill prioritized. (Unlike Cave fungi they need to be grown).
#3
Quote from: lunatikus on July 13, 2015, 06:50:32 AM
100 gold for 1 vancidium craft with 1 gold taking from fissure? Are you kidding me?
???

P.S.: thanks a lot for awesome modpack!

I think the 100 gold pr vancidium is an error, in the Expanded Prosthetics and Organ Engineering mod, the modifier for gold have been changed from x20 to x1, so it would only cost 5 gold to craft one vacadium ore.

If you go to your mods folder Mods\EPOE_SK\Defs\RecipeDefs\Recipe_VancidiumRefinery.xml
You can edit it to only use 20 gold, just edit the 5 to a 1 (remember gold and silver need x20 the amount, so it would have been 100 and then 20 gold).

<li>
        <filter>
          <thingDefs>
            <li>Gold</li>
          </thingDefs>
        </filter>
        <count>5</count>
      </li>
#4
Quote from: projecttemp on July 11, 2015, 05:43:47 PM
Quote from: Morlok on July 11, 2015, 12:03:44 PM
In the latest two verions of the mod, I have been running into the error below, after playing for a long time...
It seems like its related to the amount of time the colonist have been with the colony/ingame.
As the bug can be "fixed" by killing off the colonist. Then after a short while it will happen to the next colonist that joined.

I currently use the SK Global Modpack 1.8c, with the exception of the seeds please mod.
Note: The bug seems to be related to the bug where rendering fires would cause problems, so may be a A11 bug not related to the mod, still hope that someone got a solution :)


Exception drawing Fischer: System.IndexOutOfRangeException: Array index is out of range.

  at Verse.RoofGrid.Roofed (IntVec3 c) [0x00000] in <filename unknown>:0
  at Verse.Graphic_Shadow.DrawWorker (Vector3 loc, Rot4 rot, Verse.ThingDef thingDef, Verse.Thing thing) [0x00000] in <filename unknown>:0
  at Verse.Graphic.Draw (Vector3 loc, Rot4 rot, Verse.Thing thing) [0x00000] in <filename unknown>:0
  at Verse.PawnRenderer.RenderPawnAt (Vector3 drawLoc, BodyDrawType bodyDrawType) [0x00000] in <filename unknown>:0
  at Verse.Pawn.DrawAt (Vector3 drawLoc) [0x00000] in <filename unknown>:0
  at Verse.Thing.Draw () [0x00000] in <filename unknown>:0
  at Verse.ThingWithComps.Draw () [0x00000] in <filename unknown>:0
  at Verse.DynamicDrawManager.DrawDynamicThings () [0x00000] in <filename unknown>:0
(Filename: C:/buildslave/unity/build/artifacts/StandalonePlayerGenerated/UnityEngineDebug.cpp Line: 56)


Edit:
Tried to figure out what was causing the problem and played around with the savegame data.
"Fixed" the problem, by editing out some missing bodyparts from the pawn. This fixed the issue for now.
Look like the issue may be related to adding to many implants to the pawn, this cause a lot of missing bodyparts (not shown in game, but still shown in save data), as example a leg will remove foot and toes.

Not sure if the out of range exception is related to the whole pawn or just the list of surgeries.

Example of data removed.

<li Class="Hediff_MissingPart">
<def>MissingBodyPart</def>
<creationTick>10228212</creationTick>
<partIndex>56</partIndex>
<lastInjury>SurgicalCut</lastInjury>
<isFresh>True</isFresh>
</li>
<li Class="Hediff_MissingPart">
<def>MissingBodyPart</def>
<creationTick>10228212</creationTick>
<partIndex>57</partIndex>
<lastInjury>SurgicalCut</lastInjury>
<isFresh>True</isFresh>
</li>
<li Class="Hediff_MissingPart">
<def>MissingBodyPart</def>
<creationTick>10228212</creationTick>
<partIndex>58</partIndex>
<lastInjury>SurgicalCut</lastInjury>
<isFresh>True</isFresh>
</li>

This is actually a bug cause by any pawn moving when it's total speed is greater than 21. Floor speed value affect this.

Thanks a million times. look like a small part of my base had some floor that boosted speed by 44%, combined with my colonists new implants and a double amount of caffeine, make for a game breaking experience :P
#5
In the latest two verions of the mod, I have been running into the error below, after playing for a long time...
It seems like its related to the amount of time the colonist have been with the colony/ingame.
As the bug can be "fixed" by killing off the colonist. Then after a short while it will happen to the next colonist that joined.

I currently use the SK Global Modpack 1.8c, with the exception of the seeds please mod.
Note: The bug seems to be related to the bug where rendering fires would cause problems, so may be a A11 bug not related to the mod, still hope that someone got a solution :)


Exception drawing Fischer: System.IndexOutOfRangeException: Array index is out of range.

  at Verse.RoofGrid.Roofed (IntVec3 c) [0x00000] in <filename unknown>:0
  at Verse.Graphic_Shadow.DrawWorker (Vector3 loc, Rot4 rot, Verse.ThingDef thingDef, Verse.Thing thing) [0x00000] in <filename unknown>:0
  at Verse.Graphic.Draw (Vector3 loc, Rot4 rot, Verse.Thing thing) [0x00000] in <filename unknown>:0
  at Verse.PawnRenderer.RenderPawnAt (Vector3 drawLoc, BodyDrawType bodyDrawType) [0x00000] in <filename unknown>:0
  at Verse.Pawn.DrawAt (Vector3 drawLoc) [0x00000] in <filename unknown>:0
  at Verse.Thing.Draw () [0x00000] in <filename unknown>:0
  at Verse.ThingWithComps.Draw () [0x00000] in <filename unknown>:0
  at Verse.DynamicDrawManager.DrawDynamicThings () [0x00000] in <filename unknown>:0
(Filename: C:/buildslave/unity/build/artifacts/StandalonePlayerGenerated/UnityEngineDebug.cpp Line: 56)


Edit:
Tried to figure out what was causing the problem and played around with the savegame data.
"Fixed" the problem, by editing out some missing bodyparts from the pawn. This fixed the issue for now.
Look like the issue may be related to adding to many implants to the pawn, this cause a lot of missing bodyparts (not shown in game, but still shown in save data), as example a leg will remove foot and toes.

Not sure if the out of range exception is related to the whole pawn or just the list of surgeries.

Example of data removed.

<li Class="Hediff_MissingPart">
<def>MissingBodyPart</def>
<creationTick>10228212</creationTick>
<partIndex>56</partIndex>
<lastInjury>SurgicalCut</lastInjury>
<isFresh>True</isFresh>
</li>
<li Class="Hediff_MissingPart">
<def>MissingBodyPart</def>
<creationTick>10228212</creationTick>
<partIndex>57</partIndex>
<lastInjury>SurgicalCut</lastInjury>
<isFresh>True</isFresh>
</li>
<li Class="Hediff_MissingPart">
<def>MissingBodyPart</def>
<creationTick>10228212</creationTick>
<partIndex>58</partIndex>
<lastInjury>SurgicalCut</lastInjury>
<isFresh>True</isFresh>
</li>