1
artifact-tracker/Source/Scripts/ETR_NewArtifactsCombinedNotification.psc

10 lines
257 B
Plaintext

Scriptname ETR_NewArtifactsCombinedNotification Hidden
function Show(int iCount) global
if iCount == 1
Debug.Notification(iCount + " new artifact acquired")
else
Debug.Notification(iCount + " new artifacts acquired")
endif
endfunction