Modding Help i made a critter i wanna add to game so it can be spawned in some planets any help

Discussion in 'Starbound Modding' started by amirmiked12, Apr 2, 2017.

  1. amirmiked12

    amirmiked12 Parsec Taste Tester

    i made this
    body.png
    i can use spawncode to spawn it but i dont know how to add spawn to it.
    tnx
     

    Attached Files:

  2. Nexus Of Chaos

    Nexus Of Chaos Parsec Taste Tester

    where are you wanting to spawn it? i can't find how to hav it spawn somewhere, but this may be useful for some1 else
     
  3. amirmiked12

    amirmiked12 Parsec Taste Tester

    i wanna spawn it in bamboo planet that is in FU mod.
    right now im not able to find it unless using the cheat spawnmonster.
    i wann make it like more critter mod to be spawned by itself in specific place.
    know what i mean?
     
  4. projectmayhem

    projectmayhem Spaceman Spiff

    If the FU mod uses its own biome file, you need to look in it for code like this..

    {
    "select" : 4,
    "pool" : [
    [ 1, "birdcritter" ],
    [ 1, "squirrelcritter" ],
    [ 1, "snailcritter" ],
    [ 1, "sporelingcritter" ],
    [ 1, "owlcritter" ],
    [ 1, "blipcritter" ],
    [ 1, "mousecritter" ],
    [ 1, "fireflyspawner" ],
    [ 1, "fishcritter" ]
    ]
    }


    I am assuming that it what you need to create a patch file for. That code is from the Forest Biome
     
  5. Sparklink

    Sparklink Ketchup Robot

    There are two files you will need to make your pandas appear. The first is the spawn types file (found in the spawntypes folder in your packed assets) the spawn type specifies the conditions a monster will spawn in (how often, underground, at night). Then you will have to add the pandas to the .biome file selection pools. Starbound randomly selects monsters from a pool. Select 4 means that Starbound will select four monsters the number next to the monster name states its chances of being selected.
     

Share This Page