1. Please be advised of a few specific rules and guidelines for this section.

RELEASED Supper's Monster Additions 2018-11-19b

Many improvements to rando-monsters, including different stats and behaviors.

  1. SentientSupper

    SentientSupper Scruffy Nerf-Herder

  2. SentientSupper

    SentientSupper Scruffy Nerf-Herder

  3. amirmiked12

    amirmiked12 Parsec Taste Tester

  4. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    Can you provide some information on what you were doing before the error came up? Does this happen with all monsters, or only a select few? Does the issue get resolved if another mod is removed?
     
  5. amirmiked12

    amirmiked12 Parsec Taste Tester

    I don't know I was just fighting some randomly generated monsters
    some people say it's not compatible with FU..!!
    I'm sure I don't have any other mod that edits the monster.lua .
     
  6. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    Looks like the FU compatbility patch didn't work then. I recognize the error to be FU-related. It will take some time to fix this.
     
  7. matthew57778

    matthew57778 Phantasmal Quasar

    I was getting a similar thing too glad to see it wasn't just me.
    Good luck with the fix i love this mod too.
     
  8. amirmiked12

    amirmiked12 Parsec Taste Tester

    my game crashed
     

    Attached Files:

  9. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    Access violations are very hard to reproduce. I've only had this twice before and have no idea what's causing it.
     
    amirmiked12 likes this.
  10. amirmiked12

    amirmiked12 Parsec Taste Tester

    What about those lua error things?
     
  11. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    Likely caused by FU. Haven't investigated exactly what yet.
     
  12. gvancamp

    gvancamp Scruffy Nerf-Herder

    Here's the error I'm getting. I have FU, AnTiMonsters, and your monster parts mod. Crash occurs after a few minutes of wandering around on starter world.

    https://pastebin.com/MGqX3dMW
     
  13. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    The crash happens when monsters are spawned. I've been able to go through 10000 monsters with only one crash. Monster.lua is causing the issue. The culprit within is the function responsible for giving the monster abilities. How exactly it causes the problem, I am not sure. It picks a string from a table randomly and inserts it into "baseSkills" or "specialSkills" while increasing "skillCount" by one. I can't see anything wrong with the code yet. Monsters sharing seeds can still cause the error.
     
    Last edited: Jul 8, 2018
  14. amirmiked12

    amirmiked12 Parsec Taste Tester

    another crash and another Access violations error after I met a randomly generated monster.
    arent u gonna fix this?
     
  15. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    Gonna be hard without removing key features of the mod including different behaviors. Turns out the crash is an underlying bug with the spawnmonster function.
     
  16. notanaccount2

    notanaccount2 Big Damn Hero

    Getting an error when this is used with pandoras-box mod
    [23:51:09.131] [Error] Could not apply patch from file /items/active/unsorted/filledcapturepod/npcpetcapturepod.activeitem.patch in source: ../mods/pandoras-box. Caused by: (JsonPatchException) Could not apply patch to base. (JsonPatchException) Could not apply operation to base. (TraversalException) Could not remove element after end of array

    This was fixed by replacing
    [
    {
    "op":"replace",
    "path":"/pets",
    "value": [
    "smallbiped",
    "smallquadruped",
    "smallflying"
    ]
    }
    ]


    with

    [
    {
    "op": "add",
    "path": "/pets/98",
    "value": "smallbiped"
    },
    {
    "op": "add",
    "path": "/pets/99",
    "value": "smallquadruped"
    },
    {
    "op": "add",
    "path": "/pets/100",
    "value": "smallflying"
    }
    ]

    on npcpetcapturepod.activeitem.patch
    I'm guessing this error occurred due to sup-monsters having a "replace" instead of "add" for "path":"/pets",
    There's probably a better way to fix this error, but this works for now.
     
  17. Starbounder01

    Starbounder01 Scruffy Nerf-Herder

    I found one invisible monster (he shoot a blue particule) I think its a bug. Please verify and fix it. I don't want to be killed by a invisible monster.

    I like your mod :):)
     
  18. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    Feature. I'll keep this in because the chances of finding such a monster are very low. Around 0.16%
     
  19. SentientSupper

    SentientSupper Scruffy Nerf-Herder

  20. SentientSupper

    SentientSupper Scruffy Nerf-Herder

    SentientSupper updated Supper's Monster Additions with a new update entry:

    An update

    Read the rest of this update entry...
     

Share This Page