I am working on an outfit mod, and when NPC is a follower and switching cells, the clothing will change. I tried using Event On CellDetach(), but it didn't work. I want to ask what event or other methods can be called before switching cells. or how to disable follower auto equiped?
I found follower auto equiped before call event oncelledtach.
thank .
Event OnCellDetach()
if iactor.IsPlayerTeammate()
IsFollower = true
iactor.SetPlayerTeammate(false)
else
IsFollower = false
endif
EndEvent
Event OnLoad()
if iactor.IsPlayerTeammate()
Debug.Notification("...is PlayerTeammate")
else
Debug.Notification("...not PlayerTeammate")
endif
OutfitManageNative.SetHairColor(iactor, haircolor)
EndEvent