Jump to content

Recommended Posts

Posted

PipBoy is unequipped. Executing this script will crash the game. Script linket to PipBoy.

 

Begin GameMode

if IsPC1stPerson == 1

if player.GetEquipped 00015038 == 0

player.equipitem PipBoy 1 1

ResetPipboyManager

endif

endif

End

 

Need help.

Posted

Your mod is a little lacking in robustness, there. I think it should be more:

 

Begin GameMode
If ( IsPC1stPerson == 0 && Player.GetEquipped PipBoy == 1 )
	Player.UnequipItem PipBoy 1 1
Endif

If ( IsPC1stPerson == 1 && Player.GetEquipped PipBoy == 0 )
  	Player.EquipItem PipBoy 1 1
	ResetPipboyManager
Endif
End

Posted
  On 10/30/2010 at 10:11 AM, gsmanners said:

Your mod is a little lacking in robustness, there. I think it should be more:

It's the same code :)

 

Code works fine whith everything except PipBoy. :(

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...