Starbound

Starbound

90 arvostelua
[Crew Patches] "dialogMode":"random"
   
Palkinto
Lisää suosikkeihin
Lisätty suosikkeihin
Poista suosikeista
Tiedostokoko
Julkaistu
Päivitetty
95.992 KB
10.3.2021 klo 13.56
29.3.2021 klo 19.04
3 muutosilmoitusta ( näytä )

Tilaa ladataksesi
[Crew Patches] "dialogMode":"random"

2 kokoelmassa, tekijä Z'uldiss
Thunderspy Mod Collection
106 luomusta
Z'uldiss's personal collection
114 luomusta
Kuvaus
Wasn't expecting "random" to work. Happy surprise.

If you, like me, find your crew a bit lacking in vocabulary, always using the same follow/unfollow messages, this little mod fixes that by patching the base crew npctype files, with this bit of information:

[
{
"op": "add",
"path": "/scriptConfig/dialogMode",
"value": "random"
}
]

When a crewmember respawns, is ordered to stop following, starts following, or they just can't reach you, they'll now pick a random line from their race's related message group ("respawned", "unfollow", "follow", "cantreach"), which should make things a bit more interesting.

This is a patch for "crewmember.npctype", "fu_crewmember.npctype", or "catcrewmember.npctype", and thus affects every crewmember type that uses one of these files as a base. If other base crew npctype files are brought to my attention, I'll add them in.


Thanks to Zarra from the frackinuniverse Discord chat for pointing out the correct path.
8 kommenttia
AnomNom 28.3.2022 klo 20.36 
Fun fact I learned following some investigation into the dialogue script I was doing for my own mod; specifying the value as "random" is not actually required! Interestingly, as long as the string is not nil (which, as far as I can tell, means you give the dialogue mode a value, but it doesn't really matter what), it will randomize, because the script uses an else statement at the end.

In short, if you patched the dialogueMode to have the value of "urmom" instead of "random," it would still randomize. It only does not randomize if the string is nil, or if the values are either "static" or "sequence." I thought that was pretty interesting.
Obsidian_mantis 24.7.2021 klo 10.02 
Does It work whith other npc?
Bodoc Calado 21.6.2021 klo 14.48 
That clarifies it, thank you! +subbed
Z'uldiss  [tekijä] 18.6.2021 klo 12.16 
They'll say their lines in random order, within the related groups.

Say your crewmember's a human. By default, there's no "dialogMode" entry in crewmember.npctype, so every time they're made to stop following, they'll pick only one line from the default part of the "unfollow" section in that file and use it every single time:

"I'll just wait here.",
"I'll stay here. Come back when you need me, captain!",
"I'll stay here for now, captain.",
"Do you need me to stay here?",
"I'll stay here for now, then.",
"I'll stay here."

Adding "dialogMode":"random" to crewmember.npctype makes every type that uses this file as a base instead pick a random line from that lot when told to stay put.

The "follow" lines of course will still only be said when you get them to follow you, don't worry. If it didn't work like that, I'd never have put this up.
Bodoc Calado 17.6.2021 klo 13.36 
What do you mean, say their lines in random order? Will they say "I'll stay here." when you order them to follow?
skelazia 16.3.2021 klo 19.06 
cool
Lami. 12.3.2021 klo 9.13 
Noice
Lukiwarble 11.3.2021 klo 9.11 
interesting