diff --git a/xtrn/3rdp-install/foodfite-wilson.ini b/xtrn/3rdp-install/foodfite-wilson.ini
new file mode 100644
index 0000000000000000000000000000000000000000..4bf25d4f815613e6fb4dffb6c08f0839186d4a66
--- /dev/null
+++ b/xtrn/3rdp-install/foodfite-wilson.ini
@@ -0,0 +1,56 @@
+; Install instructions for FoodFight, Mike Wilson
+; supports door.sys, callinfo.bbs, dorinfox.def, pcboard.sys
+Name: Food Fight
+Desc: Find money, buy food, and throw it at other players
+By:   Mike Wilson
+Cats: Games
+Subs: Multiplayer, RPG
+exe:  FOODFITE.EXE
+; 591c73daff36feb8ba36ebb8b322307e 4.61
+; 591c73daff36feb8ba36ebb8b322307e 4.6
+; b42ed4a7d5cb0689d835def10a86b67b 4.5
+; bde3e380329a902c5fcf1391ec06f440 4.4
+; b8a9e177e208df0b496cad7f7c77aec2 4.0
+; 939bb5189d4535f6388e6c35b96cc45f 3.3
+; 33cd35708a5cf17ce2415636f715f196 3.2
+; 36be50db6c3ef653ff1024bdd4e8f0dc 3.0
+; fe15a026d4fd10db3f67997c2ac146d2 2.5
+; 94ba5e82ab234124ddad72eaa7dc4658 2.0
+md5:  591c73daff36feb8ba36ebb8b322307e,bde3e380329a902c5fcf1391ec06f440,b42ed4a7d5cb0689d835def10a86b67b,591c73daff36feb8ba36ebb8b322307e,b8a9e177e208df0b496cad7f7c77aec2,939bb5189d4535f6388e6c35b96cc45f,33cd35708a5cf17ce2415636f715f196,36be50db6c3ef653ff1024bdd4e8f0dc,fe15a026d4fd10db3f67997c2ac146d2,94ba5e82ab234124ddad72eaa7dc4658
+
+[prog:FOODFITE]
+;      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+name = Food Fight
+;      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+cmd  = foodfite FOODFITE.CFG %f
+ars = DOS
+execution_ars  = NOT GUEST
+settings = XTRN_ANSI | XTRN_MULTIUSER
+type = XTRN_GAP
+
+[exec:../3rdp-install/foodfite-wilson.js]
+prompt = false
+
+[event:FFBULL]
+prompt = false
+cmd = ffbull FOODFITE.CFG
+name = Food Fight Bulletin Generation
+; all days
+days = 127
+freq = 4
+
+[event:FFMAINT]
+prompt = false
+cmd = ffmaint 30
+name = Food Fight Maintenance Purge Players
+; sat
+days = 64
+time = 0:00
+
+[event:FFMAINT2]
+prompt = true
+cmd = ffmaint LOG=24
+name = Food Fight Maintenance Purge Daily Log
+; all days
+days = 127
+time = 0:00
\ No newline at end of file
diff --git a/xtrn/3rdp-install/foodfite-wilson.js b/xtrn/3rdp-install/foodfite-wilson.js
new file mode 100644
index 0000000000000000000000000000000000000000..2e60414d7f52e3f965ad87c44549dc8cf0a88654
--- /dev/null
+++ b/xtrn/3rdp-install/foodfite-wilson.js
@@ -0,0 +1,30 @@
+"use strict";
+
+var cfg_filename = js.startup_dir + 'FOODFITE.CFG';
+
+var file = new File(cfg_filename);
+if (!file.open("r")) {
+    writeln("Error " + file.error + " opening " + file.name);
+    exit(1)
+}
+
+var lines = file.readAll();
+file.close();
+
+lines[0] = "LINE";
+lines[1] = system.name;
+lines[2] = system.operator;
+lines[9] = "NONE";
+lines[10] = "";
+lines[11] = "";
+lines[12] = "";
+lines[13] = "";
+lines[16] = "PORT:F:1";
+
+var file = new File(cfg_filename);
+if (!file.open("w")) {
+  writeln("Error " + file.error + " opening " + file.name + " for writing");
+  exit(1)
+}
+file.writeAll(lines);
+file.close();
\ No newline at end of file