- Aug 4, 2017
- 1,146
- 12,752
cpenalty = Major DIK choices.but i still have an issue, could the find anywhere the variable that toggle the "major choice scale". if some one can find it it will be cool. cheers
dpenalty = Major CHICK choices.
affinity is calculated based on the ratio of cpenalty vs dpenalty.
Code:
if cpenalty > dpenalty + 1:
affinity = "DIK"
specialMessage = "Current affinity: DIK"
elif dpenalty > cpenalty + 1:
affinity = "CHICK"
specialMessage = "Current affinity: CHICK"
else:
affinity = "NEUTRAL"
specialMessage = "Current affinity: NEUTRAL"