diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js
index 89ca3686b26810b462a513e385bdf6aa97bb8ee7..ea1f11f96a23ed92488d74bd3c863bbc9df83f14 100644
--- a/js/003-data/gameVariableData.js
+++ b/js/003-data/gameVariableData.js
@@ -1468,6 +1468,8 @@ App.Data.resetOnNGPlus = {
 		("...from the Free Cities have become increasingly common clientele for the black market..."),
 		("...a risky gamble on the three-hour-long hardcore sex scene, but the box office figures for just..."),
 	],
+
+	murderAttemptWeek: 80,
 };
 
 App.Data.ignoreGameStateVariables = [
diff --git a/src/events/scheduled/murderAttempt.js b/src/events/scheduled/murderAttempt.js
index d8becef0de6380cd95ba428354099694751c3fbc..893a4cbdb4e429337885cae734ea6c59ac772aa8 100644
--- a/src/events/scheduled/murderAttempt.js
+++ b/src/events/scheduled/murderAttempt.js
@@ -1,12 +1,14 @@
 App.Events.murderAttempt = function() {
-	V.nextButton = " "; // disable Continue
-	const nextPassage = "Main"; // TODO
+	// setup next time, 2-4 months
+	V.murderAttemptWeek += 8 + Math.floor(Math.random() * 8);
+	// disable Continue
+	V.nextButton = " ";
+	const nextPassage = "Random Nonindividual Event";
 	const perceptiveCareers = ["mercenary", "gang"];
 	// event unique
 	const variation = jsEither(["trade", "slave", "drug", "military"]);
 	const companyName = "RealTec"; // TODO generate name
 	const isSincere = Math.random() > 0.6;
-
 	const {he, his, him, woman: man, himself} = getPronouns(V.arcologies[0].FSGenderRadicalist === "unset"
 		? {pronoun: App.Data.Pronouns.Kind.male} : {pronoun: App.Data.Pronouns.Kind.female});
 
@@ -284,7 +286,7 @@ App.Events.murderAttempt = function() {
 
 	/**
 	 * @param {string} [argument]
-	 * @returns {function(): Array<string>}
+	 * @returns {function(): DocumentFragment}
 	 */
 	function accept(argument) {
 		return function() {
diff --git a/src/uncategorized/nonRandomEvent.tw b/src/uncategorized/nonRandomEvent.tw
index 65e8e6899b2def5d9c7d5fb7eaa42410d0c6a74b..035ea4631dadedefdf78b9d8ef6cfaf4d6f431c4 100644
--- a/src/uncategorized/nonRandomEvent.tw
+++ b/src/uncategorized/nonRandomEvent.tw
@@ -181,6 +181,8 @@
 	<<goto "secExpSmilingMan">>
 <<elseif ($rivalOwner == 0) && ($seeFCNN == 1) && ($FCNNstation == 0) && ($week > 95) && ($cash > 200000) && ($rep > 7500)>>
 	<<goto "SE FCNN Station">>
+<<elseif  _effectiveWeek >= $murderAttemptWeek>>
+	<<goto "Murder Attempt">>
 <<else>>
 	<<if random(1,100) > _effectiveWeek+25>>
 		<<goto "RIE Eligibility Check">>