Jump to content

pxd730615

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by pxd730615

  1. Based on your suggestion, finally found a solution. 1. Modify PlayerFollowerPackage and add condition : GetInSameCell = 1 2. Add a teleport Package for follower, condition : GetInSameCell = 0, and add script: Scriptname PlayerFollowerTeleport Extends Package Hidden Actor property PlayerRef Auto Function Fragment_0(Actor akActor) if akActor.IsPlayerTeammate() akActor.SetPlayerTeammate(false) Utility.Wait(0.1) akActor.moveto(PlayerRef) akActor.SetPlayerTeammate(true) endif EndFunction 3. tests are perfect.
  2. Thank you for your reply. I already know the method you mentioned, which is to equip armor (set non replaceable). The problem I want to solve here: if the follower is naked and there is a armor in the bag. When switching cells, followers will automatically equip this armor. I am looking for a way to stay naked without equip armor. that is, find a way to SetPlayerTeammate(false) before switching cells. this is what i looking for.
  3. Thank you, I have tried this method. In fact, before the magic is activated, the followers have already been automatically equipped (following the player to another cell).
  4. My English is very poor, maybe I haven't understood your method yet. I'll try again. Thank you very much.
  5. thank, I try to find a way to call a event , before follower auto equiped, not after. your method use OnCellDetach() is after.
  6. 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
×
×
  • Create New...