LupusOst Posted October 29, 2010 Posted October 29, 2010 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 endifEnd Need help.
gsmanners Posted October 30, 2010 Posted October 30, 2010 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
LupusOst Posted November 1, 2010 Author Posted November 1, 2010 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. :(
Recommended Posts