Story Teller Def Editing.

Started by T-Wrecks, December 18, 2014, 02:58:29 AM

Previous topic - Next topic

T-Wrecks

Hi I was wondering if anyone would tell me what the following variables do, specifically for the randy random storyteller.

random_GeneralWeight
random_ThreatSmallWeight
random_LargeThreatWeight

Rikiki

#1
It determines the nature of an incident.
Each time an incident occurs, a random number is computed.
If number < random_GeneralWeight => general event :) or ???
else If number < random_GeneralWeight + random_ThreatSmallWeight => small threat :(
else (so number < random_GeneralWeight + random_ThreatSmallWeight +random_LargeThreatWeight) => big threat >:(

A big threat will also occur when random_MaxThreatBigIntervalDays is reached.

Use ILSpy to look into the Assembly-CSharp.dll assembly. This is very usefull if you want to mod and understand what do the parameters you play with. :)

T-Wrecks

Hahaha.
As helpful as your comment is, I don't have a clue what you just said. Can anyone explain it in laments terms?