Welcome to the AFK Mods bug tracker. In order to report an issue, you need to have a VALIDATED account to post one. Once you have followed the link the registration email sent you, please select a project from the drop down menu below. Select “Open New Issue” and fill out the form with as many details as possible.

Please also consider sending your bug report to Bethesda if you are reporting on an issue with Skyrim Special Edition, Fallout 4, or Starfield. Doing so will help everyone on all platforms.

Issue Data
Status: Closed
Issue Type: Bug Report
Project: Unofficial Fallout 4 Patch
Component: Fallout 4: Vanilla
Category: Papyrus
Assigned To: Nobody
Platform: Windows PC
Severity: Low
Votes: 0
Watching: N/A
Opened By Sclerocephalus on Jun 13, 2016 7:46 am
Last Edited By BlackPete on Mar 13, 2019 6:38 am
Closed By Arthmoor on Jun 16, 2016 9:46 pm
Resolution: Fixed

Issue #20634: ProjectorScript - Array index 5 is out of range (0-4)

 
[06/05/2016 - 02:23:00PM] error: Array index 5 is out of range (0-4)


stack:


[ (001BB407)].ProjectorScript.PlaceMyLights() - "<unknown file>" Line ?


[ (001BB407)].ProjectorScript.OnCellAttach() - "<unknown file>" Line ?





Lines 59 & 87 of ProjectorScript:


59 if startingSlide > -1 && startingSlide <= Slides.length


87 if SlideNumber > -1 && SlideNumber <= Slides.length


should be:


59 if startingSlide > -1 && startingSlide < Slides.length


87 if SlideNumber > -1 && SlideNumber < Slides.length





Likewise, at lines 167 & 179:


while slideNumber <= count


should be:


while slideNumber < count





plus, delete line 166 ("MySlides";)

Comments

2 comment(s) [Closed]
Sclerocephalus said:
 
Should add that this error appears on the log while you are in vault 81. Haven't encountered it anywhere else yet.

Arthmoor said:
 
Fixed for UFO4P 1.0.3.

Showing Comments 1 - 2 of 2