diff --git a/Artifact Tracker.esp b/Artifact Tracker.esp index a2669f0..0c747ce 100644 Binary files a/Artifact Tracker.esp and b/Artifact Tracker.esp differ diff --git a/Scripts/ETR_TrackNewItems.pex b/Scripts/ETR_TrackNewItems.pex index 05f045a..9e83b59 100644 Binary files a/Scripts/ETR_TrackNewItems.pex and b/Scripts/ETR_TrackNewItems.pex differ diff --git a/Source/Scripts/ETR_TrackNewItems.psc b/Source/Scripts/ETR_TrackNewItems.psc index 80407fa..d99f7c6 100644 --- a/Source/Scripts/ETR_TrackNewItems.psc +++ b/Source/Scripts/ETR_TrackNewItems.psc @@ -8,6 +8,8 @@ FormList Property ETR_ItemsStored Auto FormList Property ETR_PersistentStorageList Auto FormList Property ETR_FoundAndStored Auto +GlobalVariable Property ETR_NotifyNewArtifact Auto + event OnInit() OnPlayerLoadGame() @@ -60,6 +62,8 @@ event OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemRefere ETR_ItemsFound.AddForm(akBaseItem) ETR_ItemsStored.RemoveAddedForm(akBaseItem) - Debug.Notification("New artifact acquired: " + akBaseItem.GetName()) + if ETR_NotifyNewArtifact.Value + Debug.Notification("New artifact acquired: " + akBaseItem.GetName()) + endif endevent