#Jenson Nuclear Research Centre

263 messages ยท Page 1 of 1 (latest)

subtle trellis
#

Lead Builder: @lime eagle
Builder/Scripter: @crystal mantle

Lead Scripter: @subtle trellis

Title will likely be renamed once a name has been found

#

Fission Reactor Game

sweet galleon
#

siwlber win :3

subtle trellis
sweet galleon
#

silverwind :3

subtle trellis
#

WAT

sweet galleon
#

bid's group

#

i think

subtle trellis
#

yes

regal smelt
#

swilber wibm :3

sweet galleon
#

swilberr wminm :3

subtle trellis
regal smelt
#

yes

lime eagle
#

It exitsign group

#

But him leave the silverwind dead

timber thorn
#

ver y noice!!!!!!!

#

orange chamber atmosphere dots look a little odd tho imo

#

add fog or sum

lime eagle
#

It just we use other one because how foggy is it

timber thorn
#

๐Ÿ‘Œ

gray shell
#

Topic: The Glow of the Alarm System.

The Alarm System glow really light which results in me (Others tho) not seeing what warning is it. I would suggest the developers to make it more darker by changing the colers to more dark color.

lime eagle
#

and the thing called Annunciators

#

plus there is a reason why i dont color it black

#

because how weird is it

gray shell
#

Good.

#

What is the lore?

lime eagle
#

The years is 5-12-1991

gray shell
#

Alright.

#

Is there any group?

subtle trellis
#

scripting resumes tomorrow woo

lime eagle
#

RCR no longer facing with the reactor

lime eagle
delicate quail
#

Looking nice

subtle trellis
#

oh yeah the rod indexing fucked up so the panel controls rods in the wrong order

#

but will be fixed

#

so @lime eagle we're doing this classic core game style, or exactly like foxtrot with all those damn calculations

#

need to plan the coding

delicate quail
delicate quail
#

Nuclear reactor calculations are surprisingly not that complex

lime eagle
#

okay we do classic core game style

subtle trellis
#

I haven't scripted rod tracking so it can't exactly match to neutron flux, it only marks it's last state but I can change this maybe

lime eagle
#

doesnt like make player brain explode, by these math

delicate quail
#

It just involves less addition with constants, more multiplication

subtle trellis
delicate quail
#

For example, the control rods correspond to reactivity

#

Like uhhh

lime eagle
#

well it still complex at some point

subtle trellis
#

so gmhs does this sound viable, there will be a big variable storage module that each control module will apply values to. the main loop will read this data and make calculations off it to affect core temperature.

#

each control module will apply temperatures to add/remove per cycle

delicate quail
#
local k = 1.001 - cr/50000 -- where CR ranges from 0-100
flux *= k -- (a *= b) == (a = a * b)
#

However, this can lead to an out of control reactor, so you also want to factor in temperature

#
local k = 1.005 - cr/10000 - temp/100000 -- shove in some abstract high number basically lol
#

Alternatively, you can convert to some other value, like actual reactivity in rho or PCM, then convert that to k (the multiplier value)

#

Hm actually I miscalculated with my numbers a lil

#

Alright those are more sane values

#

PCM is quite easy to convert to/from

#

As it's equal to reactivity*10^5

#

You can use the equation "k=1/(1-r)" to convert reactivity to k

#

The biggest difference is that with k, 1=critical, while with reactivity, 0=critical

#

Also, I'd suggest running these calculations 10/s

#

For different rates you'll have to correct them with some extra math

#

Oh also for coolant, just make it a factor of temperature

#

Like (temp/200)*coolSpeed

lime eagle
#

Old lore of an old PWR game before this, yes there was a PWR game before but it fail

#

YES it in ohio

#

for a fucking reason

subtle trellis
#

ok we do basic core game style but might change

lime eagle
#

some are complex

#

some are basic

#

but yeah

subtle trellis
#

it won't be stupid like coolant = instant cool!!! it'll have coolant temperature and efficiency and stuf

lime eagle
#

im not a nuclear engineering

#

๐Ÿ’€

#

but i still can help

#

plus even you cool the core but the Annu say "Loss of coolant" it still doesnt cool the core

subtle trellis
#

loss of cool

lime eagle
#

Annu_beep_soundeffect x51

subtle trellis
#

English be like

lime eagle
#

cool and cool

#

what the diffrent?

subtle trellis
#

no no it's the way you said it

lime eagle
#

yeah bad english anyway

subtle trellis
#

i get it's your second language so i will point it out

subtle trellis
#

use "have" instead of "are" here

lime eagle
#

guess have to learn english again, but thank

subtle trellis
#

not mocking you just helpin a fellow out

lime eagle
#

okay back to the topic

subtle trellis
#

but yes

#

but yes @lime eagle you can test the rod control (it does not have continuous yet)

subtle trellis
#

and the buttons match to the wrong rods but it will be fixed

subtle trellis
#

the panel I scripted

#

the buttons

lime eagle
#

sure

subtle trellis
#

ok wiat

#

it wont fucking work

#

because

#

the dial it was linked to is missing

#

ok nvm its here

#

ok wait @lime eagle something fucked up in the script since i last used

lime eagle
#

oh bruh

#

the coolant tower are unanchors

subtle trellis
#

yues they fly around

#

ok it works

#

try it now

lime eagle
#

and stop when the rods stop moving

subtle trellis
#

yes i havent scripted it yet

#

they'll be scripted together

lime eagle
#

yeah just tell you that

subtle trellis
#

yes

#

thx

#

we need some panels to tell rod position

#

because other than the average insertion dial

#

we no know

lime eagle
#

okay the dials point down

subtle trellis
#

this is the only one assigned

#

it only displays average rod insertion

#

also we need different patterns for usable switches/levers because they'll just blend in and get confused with the decoration ones

#

also i just realised this isnt dev chat but our creators corner ๐Ÿ’€

lime eagle
#

oh

#

yeah

#

lmao

subtle trellis
#

also @lime eagle if you want more dials, copy this one

#

it has a surfacegui that you can change the text on

#

unlike the other ones having the text within the actual texture itself

lime eagle
#

hmm okay

subtle trellis
#

Basic controls and switches

#

All OOP based so you can just do

local MyDial = DialModule:Link(workspace.Dial)
MyDial:SetValue(50) -- percent

local Switch = SwitchModule:Link(workspace.Switch)
Switch.Activated:Connect(function(State)
    print(State) -- true or false
end)

RodModule:SetInsertionOfRod(13,50) -- Rod ID, Percentage
#

It's why I love OOP

#

@delicate quail thoughts ? it's a super modular system as of now

#

also tell me if i should shut up and stop pinging you, it could be annoying lol

delicate quail
#

Oo yeah nice

subtle trellis
#

But yeah when :Link() is called on a valid model, it'll become fully functional

#

You can do things like Switch.State, Switch:Set(false), Switch:Disable(), etc

#

Though I might find a way to make a few variables hidden like C# does it with "private", perhaps just local or something

lime eagle
subtle trellis
lime eagle
crystal mantle
#

@subtle trellis can you do uh switch my family drag me to holiday

#

and i cant do shit til wednesday

subtle trellis
#

hur hur hur

subtle trellis
crystal mantle
#

ll

#

kk

subtle trellis
#

we are not naming it juan @lime eagle ๐Ÿ˜ญ

lime eagle
#

it not ethan nuclear PL

#

it other NPL

#

๐Ÿ’€

subtle trellis
#

ok uh why was it in game

#

in our game

lime eagle
#

because im borin

subtle trellis
#

oh ok

#

can we rename it from ethan it strange

#

as a npp name

#

what was that one i suggested

lime eagle
#

RENAME ETHAN NUCLEAR POWER PLANT?

lime eagle
subtle trellis
#

not a common name for time it was set

#

i suggested Noel Huffmann

#

Seems way more fitting imo

lime eagle
#

NOEL

#

WHAT

#

it not even christmas

subtle trellis
#

You gave us a list of names

lime eagle
#

move to group chat

sweet galleon
subtle trellis
#

ethan gamer

subtle trellis
#

Jenson Nuclear Research Centre

subtle trellis
#

Coding project for today

subtle trellis
subtle trellis
#

might do neutron flux rate still, not sure on what we're doing

#

600 damn lines of code for that

#

oh yeah and scripts are able to lock the module and set positions

delicate quail
#

Jeebus man 600 lines is a lot

subtle trellis
subtle trellis
#

but i think its worth it

lime eagle
#

that cool lmao

crystal mantle
#

nd welocme to SILVERfish projekt

sweet galleon
#

SILVERFISH!?!?!

gray shell
#

You could use textures.

lime eagle
#

Some are having texture

#

Some arent

gray shell
#

Alright

subtle trellis
#

need to put more progress into this

sweet galleon
#

dead post ๐Ÿ˜ญ

gray shell
#

life

crystal mantle
#

Yes we need to put progresses

#

, I am busy with school work and Bid is ded Taffo also have things to do irl

sweet galleon
#

adnes

subtle trellis
#

yep

gilded sierra
#

that's what I'm about to script

#

Looks pretty cool overall, only one suggestion, move the reactor chamber far away from the control room. It isn't logical for the reactor chamber and control room to be separated only by one layer of glass if the reactor is larger than a research scale TRIGA.

subtle trellis
#

viewing room

#

its far away

subtle trellis
#

im about 1000 lines in and its just rod and dial movement

gilded sierra
subtle trellis
#

Important update

gray shell
crystal mantle
subtle trellis
real ridge
stable loom
sweet galleon
sage swan
tepid trellis
crystal mantle
raw atlas
burnt bloom
raw atlas
crystal mantle
#

Fuck jenson in space we go wawa research centre

real ridge
crystal mantle
sweet galleon
#

wawa

crystal mantle
#

Funny Clock

sweet galleon
#

THE DOOMSDAY CLOCK

#

wait is the reactor an pwr

lime eagle
#

yes

sweet galleon
#

epic

#

when game out?

crystal mantle
sweet galleon
crystal mantle
#

I got the reference from