66492854ee6a3

66492854eec6e
1 Guest is here.
 

Topic: SSR: System Shock Kickstarter
Page: « 1 ... 68 [69] 70 ... 84 »
Read 123966 times  

66492854ef576sarge945

66492854ef5f3
>1999
>Irrational's textures are so low res that we need a texture mod to make the game look good
>2023
>NightDive's textures are so low res that we need a texture mod to make the game look good.

The more things change, the more they stay the same. Gaming is basically a meme at this point.
66492854efa95
It looks like they seriously tagged. Every. Single. Texture asset as "texture filtering: nearest neighbour."

The prospect of editing every single texture file (which includes BaseColour, Normal, AO/Roughness/Metal, and Emmisive maps) in the entire game to change that setting is a bit daunting.
If it's just some file property, cant it be automated with a batch console command?

66492854efd6eXkilljoy98

  • Company: N/A
66492854efdeb
I beat the Remake and I was supposed to get my name in the credits, well it was there in the Beta but it was wrong and I was told they would fix it but they just took it out and it didn't but it back in

I'm a little mad ngl

66492854f017bsarge945

66492854f01dc
I beat the Remake and I was supposed to get my name in the credits, well it was there in the Beta but it was wrong and I was told they would fix it but they just took it out and it didn't but it back in

I'm a little mad ngl

Lodge a formal complaint with kickstarter

66492854f04eficemann

66492854f054a
I love that already we have a mod for the game to improve stuff. Good work :). If someone would make a mod to increase items to stack to 99 instead of 10 (like SS2 does it) that would be great. 10 is just stupid. I would recommend making a separate thread for it, though where to put it I dunno, as we don't have a separate forum section for SS1 remake mods.

Played through Maintenance:

Pretty much identical layout to original. No music (beyond ambience). Laser rapier is excellent, though you now hold it a few centimetres away from the fingers of your left hand (weapon held in right hand) which is just plain odd. Why would anyone hold a weapon that way? You'd be fingerless in no time. You can now slice up bodies with it, which is admittedly quite cool, though you can only chop up certain bodies and not others (those others just flop about when you hit them with it).

The invisible mutants are now floating fish-like creatures that have gained the ability to explode on contact. Got me killed once, as was not expecting that. I am fine with this change, as they looked like stingrays in the original. More new audio logs on this level than the levels, quite a few were pretty good. Loved one where the person complained that if they'd just been able to blow Shodan out of the ship, then she'd have gotten several days of missed sleep. Amusing.

Also encountered this hilarious bug:

https://www.youtube.com/watch?v=l8GuFNLKuqk

(if the link does not jump to the correct timestamp, jump to 31:02)
« Last Edit: 05. June 2023, 06:09:37 by icemann »

66492854f0810Xkilljoy98

  • Company: N/A
66492854f086e
sarge945Would that even do anything?, I would just talk to NDS but I can't get in their discord to tell them, tho idk i they would even fix it

66492854f0af8Berathraben

  • Company: Social Worker by day, Night Dive Studios-Discord Moderator by night
66492854f0b56
Xkilljoy98
Just DM me your email used for backerkit along with the name you want in the credits and I will update the entry for you at Backerkit and then forward it to the rewards manager to make sure they see it.

66492854f1038ThiefsieFool

66492854f1091
It looks like they seriously tagged. Every. Single. Texture asset as "texture filtering: nearest neighbour."

The prospect of editing every single texture file (which includes BaseColour, Normal, AO/Roughness/Metal, and Emmisive maps) in the entire game to change that setting is a bit daunting.

Perhaps a smaller-scale test on some of the Medical textures?
All unreal assets can be exported to JSON and back, so it should be possible to automate the process somehow.
Acknowledged by: Nameless Voice

66492854f1315voodoo47

66492854f136d
Most of the textures are so low-res that with filtering enabled they'd still look bad, just in a different way.
I'd take filtered bad over unfiltered bad any day.

66492854f173dsverXRazum

66492854f179a
Also encountered this hilarious bug:

https://www.youtube.com/watch?v=l8GuFNLKuqk

(if the link does not jump to the correct timestamp, jump to 31:02)

I also had the same bug with this robot, just on flight deck. Although mine stuck before dying, so I guess they like walls.

By the way, if NDS will make controller setup for consoles the way I think they do (with buttons for quick use explosives and consumables) I would like to use this system on PC as well. But make enemy AI better first, please?

66492854f1bf4Nameless Voice

66492854f1c4e
How moddable is this game exactly? I would like to make some pretty major changes to it to really make it work well.

It's Unreal Engine, so you can modify its assets, so things like object properties or animation speeds, or changing models/textures/animations.
However, we don't have access to the game's source code.


Most of the textures are so low-res that with filtering enabled they'd still look bad, just in a different way.

There're not quite as low-res as I'd feared.  Yes, most characters are a single 512x512 map, but larger surfaces like walls and floors are in the 512-2048 range.

66492854f204eThiefsieFool

66492854f20ad
However, we don't have access to the game's source code.

It should be noted that the recent trend for Unreal Engine development is to lean heavily on blueprints and script bytecode when implementing game logic, probably due to the awkwardness in working with Unreal's huge C++ codebase. You can make tweaks to a game that get very close to having the source code available.



You can see the script bytecode contains some low-level stuff like displaying UI elements, handling inputs..
It is pretty difficult and awkward to deal with code in a JSON format, but you can definitely make tweaks, and the door is open for someone making a more user friendly bytecode editor in the future.
Acknowledged by: Nameless Voice

66492854f24f1Nameless Voice

66492854f259c
If someone would make a mod to increase items to stack to 99 instead of 10 (like SS2 does it) that would be great. 10 is just stupid.

Seems a bit like cheating to me, but it should be easily done.

I can't test if it works right now bit you're welcome to try it if you want to be a guinea pig.

Changed max stack count of batteries, patches, explosives, first aid kits, and rare ammo types to 100.
Changed max stack count of plentiful ammo types to 1,000.

Edit: To use, go to "System Shock Remake\SystemShock\Content\Paks\", create a subdirectory named "~mods", and drop the pak in there.
[NVHigherMaxStackCounts_P.pak expired]
« Last Edit: 02. June 2023, 13:08:25 by Nameless Voice »

66492854f28eesarge945

66492854f2946
It should be noted that the recent trend for Unreal Engine development is to lean heavily on blueprints and script bytecode when implementing game logic, probably due to the awkwardness in working with Unreal's huge C++ codebase. You can make tweaks to a game that get very close to having the source code available.



You can see the script bytecode contains some low-level stuff like displaying UI elements, handling inputs..
It is pretty difficult and awkward to deal with code in a JSON format, but you can definitely make tweaks, and the door is open for someone making a more user friendly bytecode editor in the future.

I'm interested. Tell me more.

Do you know of any guides for this stuff?

66492854f2c1bicemann

66492854f2c80
Seems a bit like cheating to me, but it should be easily done.

I can't test if it works right now bit you're welcome to try it if you want to be a guinea pig.

Changed max stack count of batteries, patches, explosives, first aid kits, and rare ammo types to 100.
Changed max stack count of plentiful ammo types to 1,000.

Edit: To use, go to "System Shock Remake\SystemShock\Content\Paks\", create a subdirectory named "~mods", and drop the pak in there.

Was that "~mods" or "mods" for folder name? I put it in ~mods. Will give it a test a bit later tonight when I go onto the Storage level.

66492854f2d72Nameless Voice

66492854f2dc9
It was "~mods", but I don't think the name of the folder actually matters at all.  Just them being in a subfolder forces them to be loaded after the paks in the main directory, which you want.
Acknowledged by: icemann

66492854f2f05Nameless Voice

66492854f2f5d
Also, looks like someone else has already made a "stack everything" mod, and they went crazier than me, as they apparently let you stack junk too?

https://www.nexusmods.com/systemshock2023/mods/14


Also, yes, there are already 13 other mods for the game on nexusmods.

66492854f3238ThiefsieFool

66492854f328c
I'm interested. Tell me more.

Do you know of any guides for this stuff?
Nah, I just experiment with this stuff. Far as I can tell you are on your own when going deep into bytecode while modding, all you can do is piece together knowledge from Unreal's documentation and whatever you can find. For instance Unreal's docs allowed me to replace one function call with another, without breaking things or having to guess at function names.

66492854f352eicemann

66492854f358a
Also, looks like someone else has already made a "stack everything" mod, and they went crazier than me, as they apparently let you stack junk too?

https://www.nexusmods.com/systemshock2023/mods/14


Also, yes, there are already 13 other mods for the game on nexusmods.

Now that's crazy lol. I just wanted things in line with how SS2 handled stacks of items.

66492854f36eeNameless Voice

66492854f374a
For anyone interested in modding the game, I've been using three tools:

1) FModel lets you browse Unreal pak files and view or export the data inside.
2) UAssetGUI lets you edit packaged Unreal asset files.
3) A tool helpfully named "Asset Editor", which has a handy option for create patch pak files without having to do it on the command line.  While the other two are their top search results, I have no idea where you'd find this for download (I got it off @ThiefsieFool)
« Last Edit: 02. June 2023, 15:56:14 by Nameless Voice »

66492854f3b08Xkilljoy98

  • Company: N/A
66492854f3b62
Nameless Voice
How would I edit the music and add custom if I wanted to?

Berathraben
Will do thanks

66492854f3f5aNameless Voice

66492854f3fb7
Nameless Voice
How would I edit the music and add custom if I wanted to?
It's a lot of hassle.  I gave a very brief summary of it here.

66492854f417eicemann

66492854f41e3
Tested the item stack mod you put together Nameless. Worked like a charm, and had zero negative effect on the game. Brought the game more in line with the original if anything. Especially as this remake is super stingy on health packs, which makes holding onto every 1 you can find essential.

Just cleared Storage. Zero music in this one. Not even ambience. Mostly new audio logs, with a couple of original ones thrown in here and there, but mostly new ones. Overall layout is the same, but many of the areas felt completely new. Very challenging level. I died A LOT. 2 weapon upgrade machines present (1 for the shotgun and 1 for the magnum), as well as 1 very easy to miss item pack upgrade that adds a couple of extra slots to it. The pack upgrade could have been more generous, as a few extra makes only a small difference. But I'll take any extra.

Still finding the spark gun on max setting as the best weapon against most of the enemies. Compare that to when I play SS1 standard, and be Magnum all the way at this point. 1 new enemy, with the power loader cyborg. Very difficult enemy, up there with the Cortex Reaver. Boots upgrade, and later the level 2 of that present in the level, which you will need to get to a particular easter egg in the Reactor level.
« Last Edit: 05. June 2023, 06:10:33 by icemann »
Acknowledged by 2 members: Nameless Voice, ThiefsieFool

66492855000f8JosiahJack

664928550014a
That's odd as the youtube with the full soundtrack I listened to earlier today had only one single enjoyable track and it was Storage Combat.

Your name:
This box must be left blank:

Name the company that developed System Shock 2:
1 Guest is here.
I might come across very disillusioned but I do crossword searches all night.
Contact SMF 2.0.19 | SMF © 2016, Simple Machines | Terms and Policies
FEEP
66492855002ce