SLHH Expansion 3.3V LE/SE Public (Patreon)
Downloads
Content
Description(모드설명)
https://www.patreon.com/posts/slhh-expansion-3-35661575
Change Log 3.2V (변경사항)
- Added new choke animations(These motions will be played by a different script code from the original code. Please refer to Modder's Note)
- In SLHH events with a troll, escape chance will drastically decrease.
- In SLHH events with Choke motions, escape chance will decrease.
- 초크 에니메이션 추가(본 모션은 특정 코드에 의해서만 재생이 됩니다.)
- 트롤과의 이벤트에서의 탈출 확률이 큰 폭으로 감소합니다.
- 초크 에니메이션 이벤트는 일반 이벤트보다 탈출 확률이 더 감소합니다.
Change Log 3.3V (변경사항)
- Minor bug fixes
- Damage actor value feature: As the event occurs, both an aggressor and a victim's actor values(can be chosen in MCM) are damaged. Each ratio of AVs of Aggressor and Victim affects the probability of escaping.
- 사소한 버그 수정
- 액터 밸류 데미지: 이벤트가 시작될 떄 '공', '수' 각각의 액터 밸류 값이 감소하게 됩니다. 액터 밸류 값은 MCM에서 고를 수 있습니다. 공수 각각의 액터밸류값의 비율에 따라 탈출 가능성에 영향을 미칩니다.
How to Update
- Just replace with the old version.
For Modders Note(모더들을 위한 노트)
you can activate the harrasment trigger immediately by using this function.
(아래 함수를 이용해 해당 모드를 바로 발동시킬 수 있습니다. )
1) Normal Event
Function SLHHActivate(Actor pTarget, Actor pTargetFriend = None); Basically you don't need pTargetFriend. pTarget will become a criminal, who will try to rape you.
Keyword SLHHScriptEventKeyword = Game.GetFormFromFile(0x0000C510, "SexLabHorribleHarassment.esp") as Keyword
SLHHScriptEventKeyword.SendStoryEvent(None, pTarget, pTargetFriend)
endFunction
2) Choke Event
Function SLHHActivate(Actor pTarget, Actor pTargetFriend = None); Basically you don't need pTargetFriend. pTarget will become a criminal, who will try to rape you.
Keyword SLHHScriptEventBCKeyword = Game.GetFormFromFile(0x0233C6, "SexLabHorribleHarassment.esp") as Keyword
SLHHScriptEventKeyword.SendStoryEvent(None, pTarget, pTargetFriend)
endFunction