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: Nuka-World DLC
Category: Papyrus
Assigned To: Nobody
Platform: Windows PC
Severity: Low
Votes: 0
Watching: N/A
Opened By Sclerocephalus on Jun 7, 2016 8:17 am
Closed By Arthmoor on Jun 10, 2016 7:21 pm
Resolution: Fixed

Issue #20606: hc_managerscript - Cannot call show() on a None object

 
[05/27/2016 - 04:03:36PM] error: Cannot call show() on a None object, aborting function call

stack:

[HC_Manager (0000080E)].hardcore:hc_managerscript.ApplyEffect() - "<unknown file>" Line ?

[HC_Manager (0000080E)].hardcore:hc_managerscript.HandleSleepDeprivationTimer() - "<unknown file>" Line ?

[HC_Manager (0000080E)].hardcore:hc_managerscript.OnTimerGameTime() - "<unknown file>" Line ?

[05/27/2016 - 04:03:36PM] warning: Assigning None to a non-object variable named "::temp217"

stack:

[HC_Manager (0000080E)].hardcore:hc_managerscript.ApplyEffect() - "<unknown file>" Line ?

[HC_Manager (0000080E)].hardcore:hc_managerscript.HandleSleepDeprivationTimer() - "<unknown file>" Line ?

[HC_Manager (0000080E)].hardcore:hc_managerscript.OnTimerGameTime() - "<unknown file>" Line ?

A nice one !
Lines 858-865 of hc_managerscript:

<pre class="_prettyXprint _lang-">
; There has been no change... nothing to see here.
if IncrementEffectBy &gt; 0 &amp;&amp; newVal == oldVal
EffectMessageToShow = none
endif

if bDisplayMessage &amp;&amp; EffectMessageToShow != PreviousEffectMessageToShow
EffectMessageToShow.show()
endif
</pre>
Amend this to:

<pre class="_prettyXprint _lang-">
; There has been no change... nothing to see here.
if IncrementEffectBy &gt; 0 &amp;&amp; newVal == oldVal
EffectMessageToShow = none
elseif bDisplayMessage &amp;&amp; EffectMessageToShow != PreviousEffectMessageToShow
EffectMessageToShow.show()
endif

</pre>

Comments

1 comment(s) [Closed]
Arthmoor said:
 
Fixed for UFO4P 1.0.3.

Showing Comments 1 - 1 of 1