#Below Zero Mod

1 messages ยท Page 2 of 1

bitter viper
#

'better' Tomfoolery

vale jasper
#

I know SCGsus

ripe portal
#

Can't wait for the next Subnautica stream :D

trail sleet
bitter viper
#

There's already a Neuro fumo in the mod made by @sturdy spruce

trail sleet
#

i know

#

yug made a "low poly" neuro

#

the one i linked is a semi-realistic neuro fumo

#

could be named nugget

#

can you send this

bitter viper
#

Top of the thread

#

There is an icon image

#

Maybe @vale jasper has a transparent version of that

#

With no image inside

trail sleet
#

i may have to scroll up

vale jasper
#

Of what exactly?

bitter viper
#

The icon of the buildable

#

The one which you modified to add the ?

vale jasper
#

I just copied from your message

bitter viper
#

Yeah but originally it had a green thing inside

#

Which you presumably removed to add the AA ?

vale jasper
#

Layered on top

bitter viper
#

Ok

trail sleet
#

leaving this here

bitter viper
#

This is the icon file

vale jasper
#

I have this stupid tendency to not save the projects despair

bitter viper
#

You can try to overlay this on top

trail sleet
#

that looks hard

bitter viper
#

I know lmao

trail sleet
#

every image is a different size

#

resizing wouldnt exactly work

#

maybe finding the borders

bitter viper
#

Plus you need to crop out some transparency from the bottom

trail sleet
#

do you really want a c# script or you dont mind python :shy:

bitter viper
#

Must be c#

trail sleet
#

oh yeah its gonna do automatic

bitter viper
#

Using unity textures/sprites

#

Honestly I would just get chatgpt to do it

zenith falconBOT
#

@bitter viper has leveled up! (17 โžœ 18)

vale jasper
#

Why is it hard? It is not like it changes its size from time to time, it is pretty fixed.

vale jasper
#

Crop and resize first, mask out the transparency, layer up

trail sleet
#

this isnt photoshop

#

we cant just "layer up"

#

i mean we can remove the alpha

bitter viper
#

Just copy the bytes from one image to another Tomfoolery

#

Surely there's a way to access the data of the image as a byte matrix Tomfoolery

vale jasper
#

Can you add shaders? There is a possibility to layer 2d textures in a shader

#

I know nothing about Unity's inner workings though

bitter viper
#

No

#

Shaders pepeMeltdown

trail sleet
#

i think

#

i may have an idea

#

transparency is (0,0,0,0)

#

if i can somehow add an extra layer to the rgb and check if there are pixels with transparency near them, i can find the border

#

and then select the most-left, most-right, top and bottom pixels

trail sleet
#

so the transparency is actually 255 255 255 255

ripe portal
#

you guys are still cooking :D i love it thanks guys

bitter viper
trail sleet
#

i know

#

i dont

#

i think chatgpt could help

#

if i can do it in python i can do it in c# right?

bitter viper
#

Yeah

trail sleet
#

yeah...

#

is there cv2 for c#...

bitter viper
#

Uhhhh

#

I dont think we can use external libraries

trail sleet
#

well i just need to find array values then

bitter viper
#

I mean we can I just don't want to add dependencies to the mod Tomfoolery

#

Unless there's really no other way

bitter viper
trail sleet
#

not if im faster Troll_Smile

#
import cv2
import numpy as np
im = cv2.imread('./neuro.png', cv2.IMREAD_UNCHANGED)
pixels = np.argwhere(im != 0)
min_y = min(pixels[:, 1])
max_y = max(pixels[:, 1])
min_x = min(pixels[:, 0])
max_x = max(pixels[:, 0])

new_image = im[min_x:max_x, min_y:max_y]
cv2.imshow('test', new_image)
cv2.waitKey(0)```
thinking about it, you can have it
bitter viper
#

That removes as much transparency as possible from the image

#

I think it's better to take a hardcoded area out of the image

bitter viper
#

Because if you remove all the transparency you'll need to manually add some transparency back

trail sleet
#

why tho

bitter viper
#

To overlay that on top of the icon

#

I already said all of this lol

trail sleet
#

how many pixels?

bitter viper
#

Idk

#

That's where the problem comes in

trail sleet
#

ah ic what you mean

#

well it can be a hardcoded value

#

i think you should try to replicate that in c# and resize, then do trial and error and find the values

#

shouldnt be so hard, probably like 15 pixels top 5 left&right and 10 bottom

bitter viper
#

No

#

That's even more effort to do it at build time

#

Cuz you have to set it up

#

It's not actually difficult to do this at runtime

#

There's Texture2D.GetPixels

#

Here's the function after 3 minutes of back and forth with chatgpt

#
using UnityEngine;

public class TextureUtils : MonoBehaviour
{
    public static Texture2D CombineTextures(Texture2D a, Texture2D b, Bounds newSizeBounds)
    {
        // Calculate the scaled size based on texture a's size
        float scaleFactor = Mathf.Min(newSizeBounds.size.x / b.width, newSizeBounds.size.y / b.height);
        Vector2 scaledSize = new Vector2(b.width * scaleFactor, b.height * scaleFactor);

        // Calculate the offset for cropping
        Vector2 cropOffset = new Vector2((b.width - newSizeBounds.size.x) / 2, (b.height - newSizeBounds.size.y) / 2);

        // Crop texture b to the specified bounds
        Texture2D croppedB = new Texture2D(Mathf.FloorToInt(newSizeBounds.size.x), Mathf.FloorToInt(newSizeBounds.size.y));
        Color[] bPixels = b.GetPixels(Mathf.FloorToInt(cropOffset.x + newSizeBounds.min.x), Mathf.FloorToInt(cropOffset.y + newSizeBounds.min.y), croppedB.width, croppedB.height);
        croppedB.SetPixels(bPixels);
        croppedB.Apply();

        // Scale texture b to the size of texture a
        Texture2D scaledB = new Texture2D(a.width, a.height);
        Color[] scaledBPixels = scaledB.GetPixels(0, 0, a.width, a.height);
        for (int y = 0; y < a.height; y++)
        {
            for (int x = 0; x < a.width; x++)
            {
                Color bColor = croppedB.GetPixelBilinear((float)x / a.width, (float)y / a.height);
                scaledBPixels[y * a.width + x] = bColor;
            }
        }
        scaledB.SetPixels(scaledBPixels);
        scaledB.Apply();
#
        // Blend textures based on transparency
        Texture2D result = new Texture2D(a.width, a.height);
        Color[] resultPixels = result.GetPixels(0, 0, a.width, a.height);
        for (int i = 0; i < resultPixels.Length; i++)
        {
            Color aColor = a.GetPixel(i % a.width, i / a.width);
            Color bColor = scaledB.GetPixel(i % a.width, i / a.width);
            float blendFactor = bColor.a;
            Color blendedColor = Color.Lerp(aColor, bColor, blendFactor);
            resultPixels[i] = blendedColor;
        }
        result.SetPixels(resultPixels);
        result.Apply();

        return result;
    }
}
#

I'll review this once I'm at my pc

vale jasper
vale galleon
trail sleet
#

@bitter viper time to do work Troll_Smile

vale jasper
#

If we want to have a different set of hull plates, let me know.

trail sleet
#

no but there could be new stuff

bitter viper
trail sleet
#

idk what can be modded in subnautica

bitter viper
#

anything

#

If anyone has any ideas please let me know

vernal wasp
#

replace the models of sea creatures maybe

#

would be comedic NeuroClueless

#

this one especially

bitter viper
#

lmao i could replace the peeper with neuroerm

#

or just add neuroerm as a separate new fish

ripe portal
bitter viper
#

can't modify leviathans cuz they have complex animations

vernal wasp
#

erm jumpscare ICANT

bitter viper
#

i do think it would be funny for there to just be unanimated erms floating around the ocean

ripe portal
#

lmao I'd love that

ripe portal
bitter viper
#

no

ripe portal
#

dang

sturdy spruce
#

Stick Erm face on leviathans face? Is that possible?

trail sleet
#

any updates on the voice lines?

trail sleet
jolly stratus
#

Trying to think what hte next big reveal would be

#

Probably the Seamoth can we add a NeuroErm to the side of the texture?

rigid mirage
#

Surely you could replace the Gargantuan fossils head with the neuroerm, right

bitter viper
#

can someone make me cooked and salted versions of this icon?

#

here's how this looks for the boomerang fish so you can have an idea

#

it doesnt have to match up to how subnautica does it though

bitter viper
trail sleet
#

thats so cursed

ripe portal
#

I am really excited for this stream

#

holy i just saw the fish

bitter viper
#

right guys

#

i need a bunch of mp3 neuro sound effects

#

for the ermfish

#

and also her saying erm

#

i think cj should have a bunch of sound effects right?

#

from bingo

trail sleet
vale jasper
#

All the sounds you can possible have (well, most of them anyway)

vale jasper
trail sleet
#

deepfry

humble charm
#

You could probably put some sort of filter or effect on top of it or something lol

shut forge
vale jasper
#

Yeah, looks way better

bitter viper
#

Holy fuck lmao

#

these are so good

soft basin
#

from the side just in case

rigid mirage
soft basin
#

erm check

narrow pebble
ripe portal
rigid mirage
bitter viper
# shut forge

@soft basin any chance you can make variations of the model for these sprites LOL

soft basin
#

im not so creative with variations

rigid mirage
#

Zentreya erm

bitter viper
soft basin
#

oh right, i'll try

bitter viper
#

i mean its up to you if/how you want to do this

#

i was thinking we could add some alternative models for when the fish is cooked or crafted

#

whether its a different/modified model or just the textures being replaced

bitter viper
#

(please let me know so i know how to proceed with the mod development)

soft basin
#

i will try to make texture variants

bitter viper
#

this is how the items look in-game in comparison to some other subnautica items

soft basin
frigid marsh
#

perfect

soft basin
#

are these fine?

shut forge
#

I tried the deep fry

soft basin
#

yeah i could make the fried one better

bitter viper
soft basin
bitter viper
#

uhh maybe

soft basin
#

idk how it is in mod, so i dint want to change multiple textures

bitter viper
#

i think it looks very weird if only the skin is changed but im not entirely sure

soft basin
#

๐Ÿ‘

#

here is full meat but with just eyes

bitter viper
#

epic

shut forge
jolly stratus
#

Hyped for Sunday Pog

shut forge
#

need to replace the leviathan's head with this

ripe portal
#

i want that so badly

#

look at how gross it is i love it

rigid mirage
#

Does the ermfish replace an existing one or is it straight up a new one?

soft basin
#

if Alex won't be able to make it spawn as a new fish, he will make it as a replacement for some other fish

rigid mirage
#

Aight

bitter viper
#

I need more clips of Neuro screaming in pain

bitter viper
rigid mirage
#

Give me 2 minutes

jolly stratus
#

pain huh... well.. I have this evil noise... not sure about pain

#

It's also not very clean

rigid mirage
bitter viper
soft basin
#

ok so these are the ones i ended up with - fried and deep fried, raw meat looked a bit too much imo

vernal wasp
#

those eyes look so delicious

soft basin
bitter viper
#

dont mind me as i delete filtered and bluros last messages lmoa

bitter viper
#

can you please setup these models in the exact same way as the existing erm prefab?

trail sleet
#

ok

bitter viper
#

since they're texture swaps

#

you could make a prefab variant of the existing "erm" prefab

#

and just replace the texture

trail sleet
#

it takes more time opening unity than doing this task

trail sleet
#

which one is the erm again

bitter viper
#

erm

trail sleet
#

ij

bitter viper
#

kl

trail sleet
#

do you want asset bundle?

bitter viper
#

ye

#

in the same asset bundle as the erm one prayge

trail sleet
#

THIS LOOKS LIKE CHEESE

soft basin
#

technically it's supposed to be unlit texture idk how it works NeuroClueless

trail sleet
#

subnautica takes care of that

bitter viper
#

remove the directional light from the scene maybe darkeew

rigid mirage
#

Mac n cheese erm

trail sleet
#

is it all ok

#

i need to close unity to open unreal engine

#

ill take that as a yes

rigid mirage
#

As a little idea, not sure if it can be implemented but wouldn't it be funny if the ermfish had the same interactions like the cuddlefish

leaden furnace
#

she is going to chase me in my dream tonight

undone elm
#

scanner should make a Sniffa sound effect

bitter viper
#

You guys have no idea how great this will be

vale jasper
vale jasper
#
  • cleaned all pirate sounds
zenith falconBOT
#

@vale jasper has leveled up! (53 โžœ 54)

bitter viper
#

@trail sleet u around?

trail sleet
#

yeah

bitter viper
#

thanks @vale jasper Prayge

leaden furnace
bitter viper
#

no spoilers kekewut

vale jasper
trail sleet
bitter viper
#

i need some erm lore

#

that is gonna be shown in the databank

#

when its scanned

jolly stratus
#

Does it have any crafting recipes / does it replace an existing fish or is it unique?

trail sleet
jolly stratus
#

Here's an example databank entry for someone lookign to right Ermfish's:

This unusual herbivore appears to be mostly defenseless, and bears little resemblance to the other lifeforms around it.

1. Semi-permeable Bladder:
The bladderfish is able to filter air and seawater into its body cavity through a unique membrane which surrounds its spine like a bladder. This allows it to remove and consume organic particulate caught on the way, and adjust its buoyancy.

2. Open-ended Vascular Tubing:
Can be angled and contracted to pump out water and achieve low-velocity, guided propulsion.

Largely oblivious to threats, and practically immobile at night, its only identified defense mechanism is that it's composed almost entirely of water, air and cartilage.

Assessment: Edible (oxygen may be retrieved from the bladder and added to tanks on consumption); membrane has applications as a natural water filter 
leaden furnace
#

will vedal read the lore though neurOMEGALUL

#

Last time he didn't really read the plate descriptions

vale jasper
#

He won't

#

Just put "erm" x9000 there

leaden furnace
#

Make it some kind of language

#

Ermerm ermerm erm erm erm ermermermermerm erm

trail sleet
#
Erm erm erm erm erm erm erm erm , erm erm erm erm erm erm erm erm erm erm.

1. Erm erm:
Erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm erm. Erm erm erm erm erm erm erm erm erm erm erm erm erm, erm erm erm erm.

2. Erm erm erm:
Erm erm erm erm erm erm erm erm erm erm erm erm, erm erm.

Erm erm erm erm erm, erm erm erm erm erm , erm erm erm erm erm erm erm erm erm  erm erm erm erm, erm erm erm.

Erm: erm (erm erm erm erm erm erm erm erm erm erm erm erm erm); rm erm erm erm erm erm erm erm
leaden furnace
jolly stratus
#

This species appears to consist mostly of a fibrous muscle mass, no identifiable organs can be located inside the creature. The head is entirely hollow aside from a delicious juice substance. This unique biology may indicate its purpose as part of a larger organism instead of an individual.

  1. Ears
    The "Ears" situated at the top of the Erm fish have no opening and appear to be a type of mobility organ for swimming or maintaining balance in the water.

  2. Antenna:
    Between the "ears" atop this creature is a single antenna-like organ that emits a faint radio-signal. This could indicate communication between the species or another entity altogether.

  3. Hydrodynamic structure:
    A smooth almost machine-like finish covers the creature's back. This would grant a unique swimming efficiency compared to other fauna, but it's unusual horizontal movement appears to make no use of this structure.

Assessment: Potentially edible liquid within the creature's head (Neuro Juice can be harvested to avoid dehydration). Nutritious protein-dense flesh can be consumed to provide a hearty meal. Antenna potentially usable as electronic components.

#

(add the ability to make water from ermfish if you use this description evilOwOA )

vernal wasp
bitter viper
#

I'm sure someone will see it

#

Don't want to ping

vernal wasp
#

I have a feeling they'll go all-out with the quality and there's less than 3 hours left

bitter viper
#

But I will ping @vale jasper Tomfoolery

vale jasper
#

Is there any template for the background?

bitter viper
#

I don't think so

#

If you search "subnautica databank entries png" on Google images there are a bunch of existing ones

#

But I can't find a template

bitter viper
bitter viper
vale jasper
soft basin
#

uuh i never rendered wireframe, but i will fugure out

#

๐Ÿ™ chat gipidy

vale jasper
#

What the size of this asset supposed to be?

bitter viper
#

Same size as the other ones pepeLaugh

vale jasper
#

Ones you've sent are 256*, but the ones without the border are 512*

#

Is there a border as a separate asset maybe?

bitter viper
#

Uhhhh idk I'm not at my pc rn

#

I don't think the border is separate

#

Those images are prob extracted directly from the game

#

So I think the border is contained in the image

#

Actually im sure of it

vale jasper
#

I have it already

#

I need accompanied graphs

soft basin
vale jasper
#

COOL

rigid mirage
bitter viper
#

I am using a combination of pums and baas pda entries here

#

The pda entry talks about the ears and """antenna"""

#

If you want something to circle in in the wireframe

rigid mirage
#

While the Ermfish can only distinguish between bright and dark with it's oval formed eyes, it's antennas provide it with the exceptionally good ability to detect sound waves

leaden furnace
#

I wonder if Vedal will have an Erm ptsd after the stream or he'll fall in love with her even more Clueless

vale jasper
#

Yes, my plan exactly

#

Current progress

#

Anything else?

bitter viper
bitter viper
#

That's what the entry text talks about

#

I think the things it points at is reflected in the text

fading anvil
vale jasper
#

aaggggr

fading anvil
#

idk if it's needed

bitter viper
fading anvil
bitter viper
#

Cooked variants don't have pda entries

bitter viper
# bitter viper

Yes the 1 2 indicators are the same with what's written in the text

fading anvil
bitter viper
#

An entity of unknown origin, it does not appear to be indigenous to 4546B. Although at first glance it appears to be an aquatic lifeform, it does not possess the necessary survival facilities.

This species appears to consist mostly of a fibrous muscle mass, no internal organs can be located inside the creature. This unique biology may indicate its purpose as part of a larger organism instead of an individual. Any attempts to euthanize, dissect, or otherwise damage the specimen have resulted in complete failure.

  1. Ears:
    The ears situated at the top of the Ermfish have no opening and appear to be a type of mobility organ for swimming or maintaining balance in the water.

  2. Antenna:
    Between the ears there is a single antenna-like organ that emits a faint radio-signal. This could indicate communication between the species or another entity altogether.

Being in the vicinity of an Ermfish may cause auditory hallucinations that cannot be reproduced on the audio recordings. The effect is magnified proportionally to the number of Ermfish present. Long-term effects are uncertain, but it is speculated that it may cause irreversible damage to the exposed individual.

Assessment: Experimental results have shown that Ermfish is technically suitable for human consumption. However, high mental fortitude is required to go to such desperate lengths.

vale jasper
bitter viper
#

ok i will write something about eyes

#

unless pum can Tomfoolery

vale jasper
#

Or maybe the erm mouth

#

Yes, border will be the last one

#

It's fine

bitter viper
# bitter viper > An entity of unknown origin, it does not appear to be indigenous to 4546B. Alt...

also since it technically bleeds (and can only be killed by eating it), i wanted to replace

Any attempts to euthanize, dissect, or otherwise damage the specimen have resulted in complete failure.
with something like
Attempts to euthanize, dissect, or damage the specimen have resulted in failure, as the creature presents unnatural healing abilities. It seems that the only way to destroy the creature is by integrating it in a larger organism.
but maybe someone can make it sound better

fading anvil
#

Maybe adding a warning about the erm fish still being alive after getting cooked / cured ? (again not really needed but explain why the erm fish can never die)

vale jasper
bitter viper
#

This is so good

trail sleet
#

guh

vale jasper
rigid mirage
#

You'll have to give the eyes some function, evolution wouldn't have given the ermfish eyes if they're of no use

vale jasper
#

Those are not an actual eyes. Ermfish uses echolocation from her antenna.

fading anvil
#

Alex is live!

rigid mirage
#

It's of biomechanical nature, controlled by a foreign ai

fading anvil
vale jasper
#

Yes

fading anvil
vale jasper
#

Or for arouse them to kill

rigid mirage
#

They release a poisonous mist when the ermfish is under attack NeuroClueless

vale jasper
#

basically SCGsus

fading anvil
#

vedalCoding Alex rn

vale jasper
#

Pray for erm to spawn

rigid mirage
#

Imagine if he hits one with the seamoth

jolly stratus
#

Where are they despair

trail sleet
#

they are rare

jolly stratus
vale jasper
#

I think I saw one. Might be hallucinating though.

soft basin
#

he is about to go explore ๐Ÿ™

rigid mirage
bitter viper
#

i dont think it will spawn around areas he has already visited

rigid mirage
#

I'm not 100% sure but I think I saw a single one so far

bitter viper
#

it would have played a sound effect no?

fading anvil
#

I think we are just schizo :/

rigid mirage
vernal wasp
#

I'm praying that it spawns neuroPray

bitter viper
#

it wont spawn in places vedal has already been

humble charm
#

What fish is it?

soft basin
#

it's erm fish

fading anvil
#

Any chance Vedal is still playing on the old version?

rigid mirage
#

At this rate he's gonna die TrollGe

trail sleet
bitter viper
#

he has probably visited a bunch of these chunks

vernal wasp
vale jasper
fading anvil
#

So somthing was broken after all ?

vernal wasp
bitter viper
#

it cant spawn

#

because he's been everywhere

#

and the spawn chance isnt that large

vale jasper
vernal wasp
bitter viper
#

they are there

#

he turned away

vale jasper
#

YOOOOOOOOOOO

#

ADD THE EMOTE

fading anvil
#

Let's gooooooo!

jolly stratus
sturdy spruce
#

He found it!!!

vernal wasp
#

that was majestic

#

I'm satisfied with the stream

jolly stratus
#

No gameplay audio in the clips so we can't hear the incredible sound effects pain

soft basin
#

can tou run over them NeuroClueless

vale jasper
#

Emote, Alex

soft basin
#

he did not scan yet

fading anvil
#

Vedal doesn't know about the pils yet

jolly stratus
#

Good work everyone Clap

vale jasper
#

I think you can also !refreshoverlay or something like that

soft basin
#

also, are the pills for the inventory sounds are on by default?

fading anvil
edgy rose
#

good work as always neuroCatErm

fading anvil
#

Vedal is schizo

vale jasper
#

Yes, he did not read ICANT

edgy rose
vale jasper
fading anvil
sturdy spruce
vale jasper
#

Neuro with the perfect timing

fading anvil
#

no elp with the schizo pills right ?

vale jasper
#

yep

fading anvil
sturdy spruce
#

He build the old oneneurOMEGALUL

fading anvil
#

he didn't fall for it neuroCry

fading anvil
spare tide
#

Love this mod pack. My Neuro Fumo is looking a little boxy though, any ideas?

vernal wasp
#

unbox her NeuroClueless

spare tide
#

Chucked this mod in with Subnautica+ that I installed via Vortex. Required a little wizardry so chances are I broke something.

sturdy spruce
#

Maybe you download the old one?

#

Wait did Alex release the new version?

trail sleet
#

thats the old one, new model fixed

#

@bitter viper release the new one

#

if you can and want

spare tide
#

Will I get the glorious erm fish I've seen on stream with that?

trail sleet
#

yeah

bitter viper
#

i will upload the mod release soon

trail sleet
#

alex, wanna add the other fumo before release?

spare tide
#

Thanks Alex and everyone that contributed โค๏ธ

bitter viper
trail sleet
#

right

#

he hasnt finished the game

#

wonder what we can add for next time

#

is there any kind of pet?

bitter viper
#

the cuddlefish i guess

trail sleet
#

does it follow you around?

spare tide
#

Cuddlefish cute af

trail sleet
#

oh i have an idea

#

nevermind

#

i dont have an idea

spare tide
#

come from egg like this

trail sleet
#

i though of neuro related decorations but

spare tide
trail sleet
#

that requires 3d models

#

and we dont have many

fading anvil
#

Maybe adding more posters ?

snow tendon
trail sleet
#

hes likely finishing the game

snow tendon
#

Ah noice. Maybe I'll make something soon then.

undone elm
#

we need to doccument all Ermfish lore

frigid kettle
frigid kettle
#

i tried to reconstitute this out of the previous mod rar archive and the sound bytes posted in this thread but as you can see i clearly have the wrong models and it looks SUPER CURSED KEKW

vale jasper
#

Alex build the release ReallyMad

frigid kettle
#

i actually tried this cursed version in VR, works just the same... so i got to see these abominations in 3d m60LUL

#

also when the random sounds get loaded, since it's the same folder as ambient sounds, it seems to cause fmod to spam errors about those resources being locked (as they are already loaded), not sure if it breaks anything

rigid mirage
bitter viper
#

Cuz the sounds still work - both the world and the inventory sounds

frigid kettle
#

all good then, harmless errors

bitter viper
#

Though it's weird cuz it complains about the resource being locked but then it still loads it?

frigid kettle
#

is randomsounds the schizo voices?

#

i actually think i didn't hear those

bitter viper
#

Random sounds is the ones you hear while you have the fish in the inventory

frigid kettle
#

ohhhhhhhhhhh i see

#

i'd need the right assets though, cause right now with my setup ermfish arent going to inventory (its really scuffed)

#

but yeah it might be bitching about the resource lock, but still be able to reuse the sound

bitter viper
#

i will send the mod soon

frigid kettle
#

if the assets aren't too much drop them in the repo, would make for a nice off-duty mad-science experiment to mess with

vale jasper
#

My Bingo is 50 mb SCGsus

frigid kettle
#

that's fine

#

repo for my work project is like 3.5GB PepeLaugh

#

i only got about 10mb of those in while reconstituting some assets yesterday its already a lot of voices SCHIZO

undone elm
#

how install

bitter viper
#

I was too lazy to post the mod release

#

It would probably take me like

#

5 minutes

#

But I'm already in bed so

frigid kettle
#

jk have a good night post it when you can

bitter viper
bitter viper
#

I need ideas for what to add for the next subnautica stream

frigid marsh
undone elm
#

More Ermfish

soft basin
near kelp
rigid mirage
frigid marsh
#

Clueless Alex will put any fish models that are sent here to the mod

#

better if it's in a unity package / prefab format

frigid kettle
#

so eating becomes like taking meds PepeLaugh

bitter viper
rigid mirage
#

How about a gymbag accessoire which gives you more inventory space

#

*Also gives you a stinky debuff which scares away the surrounding fish NeuroClueless *

bitter viper
#

Showcasing the TRUE POWER of the ermfish

rigid mirage
#

My nightmares be like:

rigid mirage
bitter viper
#

was thinking of doing it to the reaper leviathan

rigid mirage
#

Or these little fellas in the research facility

#

Imagine vedal finding an ermfish locked up in there kekw

vernal wasp
#

is it possible to make a hostile evilErm fish

frigid marsh
#

anything is possible we just have to make most of the work for alex (models and texture and animations)

bitter viper
#

Clueless they dont know most of the work is in the code

frigid marsh
frigid kettle
#

it would be funny to replace some of the main dialog prompts, but i draw a blank as to what to replace it with

rigid mirage
#

Those voice lines are gonna get him banned kekl

frigid kettle
#

nah

vernal wasp
#

๐Ÿ‘

frigid kettle
#

checking the list, these are actually good, bit spicey but funny

frigid kettle
#

i mean the voices

#

wait no the list SCHIZO wait no the voices annySCHIZO

#

either way if i can tonight im loading the mod and doing a VR video LP of subnautica, and when the "special assets" come in view/within earshot i will keep a straight face and just pretend everything is normal

vernal wasp
#

greatest gaslight of the century

undone elm
soft basin
#

thoughts?

sturdy spruce
#

This is so curse neurOMEGALUL

soft basin
#

idk if i should add some kind of clothing

vale jasper
vernal wasp
#

it was completely fine until you mentioned it

frigid marsh
#

i love it

#

evil shark

frigid kettle
#

would be more obvious that it's evil neuro

jolly stratus
#

Omg I love shark

jolly stratus
#

Add a belly button

trail sleet
#

didnt expect stream to be saturday

#

thought he would take a week break

snow tendon
# bitter viper was thinking of doing it to the reaper leviathan

If I can finish the hair by tonight (it won't be polished but might be good enough) I can send you an evil version of what I sent to you in DMs earlier but with hair this time. I can of course do the modeling and any animation work needed to make it work with the reaper leviathan as well.

#

Plus I'd get to test out some necessarily things for the full neuro model coming in the future neuroWink (update: hurricane made power go out neuroAware )

frigid kettle
#

my "first" (actually second) encounter with Ermfish, and what happens when you put anny's death sound pack for player death PepeLaugh

#

aw shit discord doesnt do h265, let me rectify that

#

i did run into an issue after my death, the death sound kept playing on a loop, i had to restart the game, and then oddly enough it never played any custom death sounds again

rare bison
#

grasp the ermfish tightly

foggy niche
#

Are Erm fish supposed to be everywhere? I have yet to find one. I do have the hull plates.

rigid mirage
#

You have to sub before you can find them NeuroCorpa

frigid kettle
frigid kettle
#

i had a swarm of them right under my starting capsule... in another game i had to look for a while but i found some

#

but there should be some, if you want to check without headaches just start a game on creative

foggy niche
frigid kettle
#

see i messed with the mod and i could swear that isnt necessary, but please try that it's a good idea

#

if you start on creative and just beeline in one direction for 5 mins and dont see ermfish something is off

foggy niche
frigid kettle
#

well let's find out, go back in your og game and search, i seem to get lucky at the base of cliffs near creepvines

#

i could swear they showed up in one of my older games but i could be wrong, my testing was a bit frantic lol

foggy niche
frigid kettle
#

and iirc vedal updated the mod mid play and ermfish spawned

#

hmmmm ya know what? maybe they need a while to spawn in your other game

foggy niche
#

Gotcha

rigid mirage
foggy niche
frigid kettle
#

yep, random and sometimes just poorly random

#

and i figure the game has a spawn cycle where it generates new lifeforms every now and then, so you'll see more and more progressively

#

they're definitely hard to miss because SCHIZO the voices man the voices

foggy niche
#

Yeah hard to miss

edgy rose
#

Are there any crab like sea creatures in the game? I would love to see smol neuroopers just walk underwater

soft basin
bitter viper
#

It can't spawn in places the player has already visited

#

Only in new chunks

frigid kettle
soft basin
sturdy spruce
#

It is... actually kind of cute

soft basin
#

idk about the > thing

#

lmao

fading anvil
soft basin
jolly stratus
#

omg the uniform is adorable

frigid kettle
frigid kettle
frigid kettle
vale jasper
rigid mirage
#

At this rate we can soon replicate a whole stream lmao

vale jasper
fading anvil
#

Is it possible to add background music to Subnautica?

jolly stratus
#

What if we added a Leviathan that is a truck and it plays TruckersFM clips

We'll call it the VOD destroyer ( because of all the copyright infringement )

fading anvil
#

My original idea was adding arg songs to the game trollSmile

vale jasper
#

Hiyofish (Hiyori fish) which plays parts of ARG songs

rigid mirage
#

How about you add turtlerum to the game as a hydration item, it also replenishes some health PepeCheers

bitter viper
#

@vale jasper @snow tendon databank entry? isForMe

vale jasper
#

I need a wireframe version as well

bitter viper
#

@soft basin

soft basin
#

๐Ÿ•

#

@vale jasper

bitter viper
#

does anyone have a transparent png of the neurooper model so i can replace the icon with the actual model and not just the art

bitter viper
#

yeah but someone sent the image of the model

#

insteade of jsut the art

#

i cant find it tho

bitter viper
#

need an item description for a gymbag (item reskin of carry-all)

vernal wasp
bitter viper
vale jasper
soft basin
#

woah she is dangerous

bitter viper
undone elm
#

Jawless vibes

bitter viper
#

this time i will make so that vedal cannot close the pda until he spends at least 60 seconds looking at it

undone elm
#

either that or really strong jaw

#

Tutel "Alex your mod froze my game"

vale jasper
#

Threat level?

bitter viper
#

also the cat poster was my fault catdespair

bitter viper
undone elm
#

its ok the cat poster was my favorite part of the entire stream KEKW

fading anvil
vernal wasp
vale jasper
fading anvil
vernal wasp
#

this is so cute wtf ICANT

undone elm
#

The ermfish actually imitate the ermshark's voice to scare off predators NOTED

vernal wasp
#

literally this creature

vale jasper
bitter viper
#

is this the final version?

vale jasper
#

Fixing it for PDA version

rigid mirage
#

:>

frigid kettle
#

cause it sure sounded and looked like that PepeLaugh

frigid kettle
vale jasper
frigid kettle
#

since these clips are so short the free (5min max) version should be sufficient

#

so far moises seems to be doing a slightly better job

#

i use it to split out drums from music tracks, its really top notch

#

out of evil sounds, the one it impressed me the most with is that 19 seconds long wtf scream... the bg music was so loud i thought i couldnt use it

vale jasper
#

Remember that he won't read it PU_KEK

#

Put a tutel sticker on it SCGsus

#

There are some tags iirc

bitter viper
#

I can use rich text

vale jasper
#

undefined -> โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ SCGsus

#

if built-in fonts support that symbol

vale jasper
#

Can we inject radio transmissions btw?

jolly stratus
vale jasper
jolly stratus
#

Day 2, we can ook the first one so it sounds like it was cuttoff then we have the whole thing day 2

vale jasper
jolly stratus
#

That sounds great

bitter viper
# vale jasper ?

could you please send me a transparent version of just the ermshark

vale jasper
#

Oh shit I found a fatal flaw

#

fixed databank image

bitter viper
#

@vale jasper can you make a link on your website

#

pointing to https://media.tenor.com/5_JlwX1MV_4AAAAC/neuro-sama-neuro-sama.gif

vernal wasp
#

a clue

bitter viper
#

called /field-manual/5.188/4

bitter viper
trail sleet
#

i can also do that tbh

vale jasper
#

Done

bitter viper
#

whats the link again?

#

i forgot the base url

vale jasper
#

one moment

trail sleet
#

ermermermermermermermerm

bitter viper
#

ok so there is this youtube tutorial for replicating the PDA's voice

#

ยกHola! En este video les muestro como logrรฉ casi replicar la voz de la PDA de Subnautica, no Subnautica Below Zero, el original. Los desarrolladores usaron la voz de Amy, al parecer de IVONA, pero el efecto que usaron en dicha voz al parecer nadie la conoce asรญ que tuve que hacer el mรญo. Uso solamente efectos nativos de Audacity y un tubo de PVC...

โ–ถ Play video
#

it would be cool if we added custom pda lines

#

isForMe does anyone wanna work on that

#

this is a paid position with 0$/h

fading anvil
bitter viper
#

LMAO

snow tendon
#

You guys are missing out this is great

vale jasper
frigid kettle
#

when alex's voice is drowned out by ermfish PepeLaugh

rigid mirage
#

I wish we could pet them

cunning charm
#

Does anyone have the raw models for ErmFish or at least know which file format it uses?

trail sleet
#

raw models?

cunning charm
#

like the ones in the files of the mod are just "file" not ".obj" or ".fbx"

trail sleet
#

yes

#

they are just files

#

no extension

cunning charm
#

yes, i want the ones that are actual models

trail sleet
#

i think its open source

#

i have them but if it isnt on the github yet i cant share it

cunning charm
#

Thanks!

edgy rose
#

idea: 3d neurooper loading icon. I can work on it

bitter viper
#

I'd rather use another icon

edgy rose
#

ok then ๐Ÿ‘

#

i will delete this then

bitter viper
#

The icon is just one single png

#

Rotated in 3d space

edgy rose
#

oh i see

wind stratus
edgy rose
wind stratus
#

Question is if not that then what icon to use Hmm

wind stratus
#

But yeah mod is pretty erm packed already we could use some variety

edgy rose
#

i know PauseSama

bitter viper
#

I could use gym bag image

edgy rose
wind stratus
#

Fumo is great

edgy rose
#

ops wait

bitter viper
#

Oh my god that's creepy

vale jasper
#

That's cool

bitter viper
#

Do we want to make it all white though?

#

Like I could just use the original image

vale jasper
#

heart pin should be there as well

#

It shouldn't be that noticeable for seasoned players as well

#

Just like an easter egg

edgy rose
#

ok i undo that then

vale jasper
#

Heart pin Stare

#

It is good

edgy rose
#

no heart pin

vale jasper
#

huh

#

Rune ReallyMad

edgy rose
#

i will make one

vale jasper
#

That's by design

#

Pixel war flashbacks

edgy rose
#

i dont know how to draw the heart pin lol

vale jasper
#

Even scarier lol

#

The bowtie is fine though

bitter viper
#

I don't like it being white

#

At least if it's a fumo or oper or another shape with many edges

#

๐Ÿ‘† think this would fit better

vale jasper
#

Gymbag won't look good in this style

edgy rose
bitter viper
vale jasper
#

Actually, we can do both and compare them in a context

bitter viper
#

Shrugeg I was overruled

vale jasper
vernal wasp
vale jasper
#

We can toss Alex into the ocean SCGsus

edgy rose
bitter viper
#

Also the mod is already full of erms

vernal wasp
#

spinning neuro coin

edgy rose
vale jasper
bitter viper
#

Oml

bitter viper
edgy rose
#

give me the real fumo as alt

#

dont have it

vale jasper
edgy rose
#

png

vale jasper
#

I just now realised that there is no heart pin on fumo as well SCGsusneurowheeze

edgy rose
#

is bigger = higher res

vale jasper
#

It is more recognisable, I think

edgy rose
#

just deleting stuff to test

fading anvil
#

Riot time ?peepoRiot

edgy rose
#

on it

bitter viper
#

This already looks much better

fading anvil
#

It's better

vale jasper
#

yep

edgy rose
#

kinda scuffed

bitter viper
#

You could also highlight the heart pi- wait the fumo doesn't have a heart pin in the hair??

vale jasper
#

Mandela effect ICANT

bitter viper
#

Not the Mandela effect

#

I just never actually spent more than 2 seconds looking at the fumo

vale jasper
#

Aha

edgy rose
wind stratus
#

I just had a genius idea that's sadly not realistic

bitter viper
wind stratus
#

iamgine if we could make crabsquids EMPs disable neuro

edgy rose
#

putting it on so i can rip it away

#

wtf

bitter viper
bitter viper
#

The erm creatures are not technological though

#

They are more akin to an scp

wind stratus
#

no no no I mean

bitter viper
#

Oooh

#

I get it

#

N OMEGALUL

edgy rose
#

fixed

bitter viper
#

NOWAY sandro's been cooking

wind stratus
edgy rose
#

the point is for it to look good

#

nothing else matters

bitter viper
soft basin
#

my lazy attempt NeuroClueless

bitter viper
#

Very short like a tooltip

#

Make sure to mention that it's bigger on the inside

#

Idk some dimensional bullshit

#

Max 1 sentence

wind stratus
edgy rose
#

version 7

bitter viper
#

Example of in-game tooltip here

edgy rose
vernal wasp
fading anvil
#

The idea of the gym bag being battery powered was abondended?

regal geode
#

probably too complicated to do

#

idk neuroShrug

fading anvil
regal geode
#

that or Alex forgor

wind stratus
#

Man I can't wait for vedal to see the new le creatura

#

Btw how does it spawn, any specific biome? PauseSama

edgy rose
#

i actually dont know what to add or remove

#

if anyone comes in with ideas ping

edgy rose
#

i dont know if its a tall order but what if:

thorn furnace
edgy rose
#

we can just use someones art willing to show it

#

zoomed in

thorn furnace
#

sorta the wrong way tho

#

alternatively

edgy rose
#

art by @waxen orchid that is glorious

#

@bitter viper what do you think?

#

p3r said it was fine to use it

#

the resolution is bugging me tho

#

p3r is working on the art res

#

this is funny tho

thorn furnace
#

might be able to have a variety of loading screens?

edgy rose
#

no idea

vale jasper
#

das cute

edgy rose
#

art by @merry grove

#

if its possible to alternate the art in loading screen

waxen orchid
#

This might work better, it should be 16:9

edgy rose
#

ok we have to agree on one art image, like alex said

regal geode
#

I like pums more because its more of just a subtle addition to the original loading screen

vernal wasp
#

same

regal geode
#

and also less flashbang

frigid kettle
#

i wish a randomizer could be put in for the load screen image

wind stratus
#

I personally prefer P3Rs art

frigid kettle
#

we could force vedal to finally review art by just putting it all in as randomized load srceens PepeLaugh

regal geode
#

the right sidebar looks a bit out of placee tho

edgy rose
#

vote?

frigid kettle
regal geode
#

I mean keep the other ui elements its just the right sidebar doesnt evne look like kerbal ui it looks like mod tools

frigid kettle
#

yeah the toolbar extends the meme i like it

regal geode
vernal wasp
frigid kettle
#

confirmed we can rotate loading images NeuroPoggers

edgy rose
#

fuck yeah

leaden furnace
rigid mirage
#

Veduhl, we've been shot by an ancient alien cannon, veduhl

near kelp
vale jasper
#

Does it scale correctly? Afaik Vedal has 4k monitors

edgy rose
#

if we can have more than one loading bg images, we have to ask more people for subnautica art right?

#

4 hour contest neurOMEGALUL

near kelp
waxen orchid
#

I dunno, tried to fill the scenery with a little speedrun. I think it looks better now for 16:9 use

edgy rose
#

beauty neuroHeart

waxen orchid
zenith falconBOT
#

@waxen orchid has leveled up! (8 โžœ 9)

rigid mirage
#

Bro is suffocating

#

Great art though

leaden furnace
#

that'd be a cool loading screen

waxen orchid
#

She fell over cause I drew so fast

wind stratus
near kelp
edgy rose
#

and give her head pats

waxen orchid
#

I improved it a bit. And yes. I will give fumo headpats

#

Added more vibrance on the ocean surface

edgy rose
#

oh i see

waxen orchid
#

She ok

edgy rose
near kelp
waxen orchid
near kelp
vale jasper
merry grove
#

sure

bitter viper
#

how do you want to be credited for it? (is sugarph ok?)

merry grove
#

yea

leaden furnace
#

these ones are good

#

i wonder if mybraza and paccha mind it or not

edgy rose
#

asking time?

leaden furnace
#

@vast lake @lofty tree sorry for the pings neuroLurk

#

just want to ask if they can be loading screens in subnautica

lofty tree
#

i dont mind Okay

edgy rose
near kelp
#

Then vedal just doesn't react to it at all even though the loading screen is different neurOMEGALUL

leaden furnace
edgy rose
leaden furnace
#

He never reads the descriptions

bitter viper
vale jasper
#

on it

#

sure

frigid kettle
vale jasper
#

Done

bitter viper
vale jasper
#

ah

vernal wasp
#

at least the ermshark gets more features NeuroClueless

frigid kettle
#

CJ try your tool ill try moises as a fallback

regal geode
#

"Did you hear what happened? Someone broke into your base and your Cyclops was destroyed in the process... Who did this to you?" -Noise on interaction with a Cat Poster

vernal wasp
#

๐Ÿฑ meow meow lol

vale jasper
#

Bruh

frigid kettle
#

k good moises hates that frick you one for some reason it fails to process

#

oh lol 9 seconds of silence PepeLaugh

vale jasper
frigid kettle
leaden furnace
#

can i suggest some more neuro noises

#

or is it final now

vale jasper
#

he has pretty much all of them already

leaden furnace
trail sleet
#

add this as a hull plate

leaden furnace
#

uuh white pixels

#

whatever

fluid sky
leaden furnace
#

lmaooo

trail sleet
#

sounds good

#

not that, i mean the yandev

#

nvm

leaden furnace
trail sleet
#

do this one fast so i can delete it

#

he may be here

#

i searched

#

LMAO

#

THERES A 3D MODEL

#

do you want me to put a box collider on that?

quick sinew
#

next mod update is going to be crazy

leaden furnace
#

scuffed photoshop

#

hmm

#

need to fix the hair

trail sleet
#

can you remove the bg?

waxen orchid
#

This is the most hilarious dev project I've seen so far

#

And really amazing aswell

trail sleet
#

smh

waxen orchid
#

AINTNOWAY

trail sleet
#

@bitter viper add this as description
namespace Message_
{
class HelloWorld {
public static void Main(string[] args)
{
System.Console.WriteLine("hello world!");
}
}
}

#

its the description

vale jasper
#

oh shit

#

blub blub

leaden furnace
#

blib blib

waxen orchid
#

Ved lurking

leaden furnace
#

can we have schizdal emote

#

ermFlushed as well

waxen orchid
#

@bitter viper neuroYay

frigid kettle
#

Clap @bitter viper

frigid marsh
#

he streamsniped

vale jasper
#

Outsmarted lol

waxen orchid
#

GOOD MALWARE neurOMEGALUL

frigid marsh
#

we passed the tutel scan it's fine

#

alex did it we're in

trail sleet
#

dont put the blames on me when he does the face reveal hull plate

frigid kettle
#

alex next time ask him to get neuro involved in the conversation PepeLaugh

bitter viper
#

ermshark should be able to attack the cyclops

#

but i never tested it tf

trail sleet
#

where does it spawn?

rare bison
#

your erm-related injuries are not service related