diff --git a/old/01_basics.py b/deprecated_scripts/01_basics.py
similarity index 100%
rename from old/01_basics.py
rename to deprecated_scripts/01_basics.py
diff --git a/old/02_chomsky_grammar.py b/deprecated_scripts/02_chomsky_grammar.py
similarity index 100%
rename from old/02_chomsky_grammar.py
rename to deprecated_scripts/02_chomsky_grammar.py
diff --git a/old/04_minimize_dea.py b/deprecated_scripts/04_minimize_dea.py
similarity index 100%
rename from old/04_minimize_dea.py
rename to deprecated_scripts/04_minimize_dea.py
diff --git a/old/05_nea_to_dea.py b/deprecated_scripts/05_nea_to_dea.py
similarity index 100%
rename from old/05_nea_to_dea.py
rename to deprecated_scripts/05_nea_to_dea.py
diff --git a/deprecated_scripts/README.md b/deprecated_scripts/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..5f9441fe252f8656772cf2ee2751c4febc613293
--- /dev/null
+++ b/deprecated_scripts/README.md
@@ -0,0 +1,3 @@
+These scripts can no longer function with Hallgrim, since they rely on autoilias
+which will become obsolete once hallgrim is feature complete. They are kept here
+so their logic can be translated into proper scripts.
diff --git a/old/__init__.py b/deprecated_scripts/__init__.py
similarity index 100%
rename from old/__init__.py
rename to deprecated_scripts/__init__.py
diff --git a/old/util.py b/deprecated_scripts/util.py
similarity index 100%
rename from old/util.py
rename to deprecated_scripts/util.py
diff --git a/templates/free.class.php b/templates/free.class.php
deleted file mode 100755
index 5c058b0fb6633eb87071783d361824fa8ca035bd..0000000000000000000000000000000000000000
--- a/templates/free.class.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-	class autoILIASscript{
-		function autoILIASscript(){
-			$this->qType = "FREE";
-			$this->qTitle = "Freitext Frage";
-			$this->qAuthor = "Vorname Name";
-			$this->qNumber = 100;
-			$this->qPoints = 10;
-		}
-
-		function exe(){
-			$question = "Fragentext...";
-			$ml = "Musterl&ouml;sung...";
-			return array("q" => $question, "m" => $ml);
-		}
-	}
-?>
diff --git a/templates/gap.class.php b/templates/gap.class.php
deleted file mode 100755
index 7dcdb7d3cc8f4bef938ab20a120e1873a6cfa622..0000000000000000000000000000000000000000
--- a/templates/gap.class.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-	class autoILIASscript{{
-		function autoILIASscript(){{
-			$this->qType   = "{type}";
-			$this->qTitle  = "{title}";
-			$this->qAuthor = "{author}";
-			$this->qNumber = {number};
-			$this->qPoints = {points};
-			{isComment}$this->gapLength = {gapLength};
-		}}
-
-		function exe(){{
-			$question = "{question}";
-			$ml = "{solution}";
-			return array("q" => $question, "m" => $ml);
-		}}
-	}}
-?>
diff --git a/templates/generic.class.php b/templates/generic.class.php
deleted file mode 100755
index 7b23e929c7f13de633edd20c70d1e02be64efe3c..0000000000000000000000000000000000000000
--- a/templates/generic.class.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-	class autoILIASscript{{
-		function autoILIASscript(){{
-			$this->qType   = "{type}";
-			$this->qTitle  = "{title}";
-			$this->qAuthor = "{author}";
-			$this->qNumber = {number};
-			$this->qPoints = {points};
-			{gapComment}$this->gapLength = {gapLength};
-		}}
-
-		function exe(){{
-			$question = "{question}";
-			$ml = "{solution}";
-			return array("q" => $question, "m" => $ml);
-		}}
-	}}
-?>
diff --git a/templates/multi.class.php b/templates/multi.class.php
deleted file mode 100755
index 21b8d08c4174035dcc42df3a1a756a14dfbaa8cb..0000000000000000000000000000000000000000
--- a/templates/multi.class.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-	class autoILIASscript{
-	
-		function autoILIASscript(){
-		
-			$this->qType = "MULTI";
-			$this->qTitle = "Mehrfach Auswahl Frage";
-			$this->qAuthor = "Vorname Name";
-			$this->qNumber = 100;
-			$this->qPoints = 10;																	// Gesamtpunktzahl = |Antwortmoeglichkeiten| * $this->qPoints
-		
-		}
-		
-		function exe(){
-
-			$question = "Fragentext...";
-			
-			$answer = array(array("A", true), array("B", false), array("C", true));
-			
-			$ml = "Musterl&ouml;sung...";
-		
-			return array("q" => $question, "a" => $answer, "m" => $ml);
-		
-		}
-	
-	}
-
-?>
\ No newline at end of file
diff --git a/templates/numeric.class.php b/templates/numeric.class.php
deleted file mode 100755
index 8751992454fbeeb7fd7e64654e23c4cb7fbfdcf9..0000000000000000000000000000000000000000
--- a/templates/numeric.class.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-
-	class autoILIASscript{
-	
-		function autoILIASscript(){
-		
-			$this->qType = "NUMERIC";
-			$this->qTitle = "Numerische Frage";
-			$this->qAuthor = "Vorname Name";
-			$this->qNumber = 100;
-			$this->qPoints = 10;
-			//$this->numericFormatstring = "";
-		
-		}
-		
-		function exe(){
-
-			$question = "Fragentext...";
-			
-			$answer = 42;
-			
-			$ml = "Musterl&ouml;sung...";
-		
-			return array("q" => $question, "a" => $answer, "m" => $ml);
-		
-		}
-	
-	}
-
-?>
\ No newline at end of file
diff --git a/templates/order.class.php b/templates/order.class.php
deleted file mode 100755
index 7c00c66da3d7c5df297936bd5fcff8c78a40496f..0000000000000000000000000000000000000000
--- a/templates/order.class.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-
-	class autoILIASscript{
-	
-		function autoILIASscript(){
-		
-			$this->qType = "ORDER";
-			$this->qTitle = "Anordnungs Frage";
-			$this->qAuthor = "Vorname Name";
-			$this->qNumber = 100;
-			$this->qPoints = 10;
-		
-		}
-		
-		function exe(){
-
-			// <span style=\"font-size: x-small;\"><b>Hinweis: </b>GgF. m&uuml;ssen die Terme in der richtigen Reihenfolge durchnummeriert werden.</span>
-			$question = "Fragentext...";
-			
-			$answer = array("A", "B", "C", "D");
-			
-			$ml = "Musterl&ouml;sung...";
-		
-			return array("q" => $question, "a" => $answer, "m" => $ml);
-		
-		}
-	
-	}
-
-?>
\ No newline at end of file
diff --git a/templates/select.class.php b/templates/select.class.php
deleted file mode 100755
index 2b95cf399a7acf24188a88945de6efc0e2a17712..0000000000000000000000000000000000000000
--- a/templates/select.class.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-	class autoILIASscript{
-	
-		function autoILIASscript(){
-		
-			$this->qType = "SELECT";
-			$this->qTitle = "Auswahll&uuml;cken Frage";
-			$this->qAuthor = "Vorname Name";
-			$this->qNumber = 100;
-			$this->qPoints = 10;
-		
-		}
-		
-		function exe(){
-
-			$question = "Fragentext mit L&uuml;cken zum Ausw&auml;hlen [select][i(2P)]richtig[/i][i(0P)]falsch[/i][/select]...";
-			
-			$ml = "Musterl&ouml;sung...";
-			
-			return array("q" => $question, "m" => $ml);
-		
-		}
-	
-	}
-
-?>
\ No newline at end of file
diff --git a/templates/single.class.php b/templates/single.class.php
deleted file mode 100755
index cb440d15a82d291eb5b99cc04ad96c12d9723a0f..0000000000000000000000000000000000000000
--- a/templates/single.class.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-	class autoILIASscript{
-	
-		function autoILIASscript(){
-		
-			$this->qType = "SINGLE";
-			$this->qTitle = "Auswahl Frage";
-			$this->qAuthor = "Vorname Name";
-			$this->qNumber = 100;
-			$this->qPoints = 10;
-		
-		}
-		
-		function exe(){
-
-			$question = "Fragentext...";
-			
-			$answer = array(array("A", false), array("B", false), array("C", true));
-			
-			$ml = "Musterl&ouml;sung...";
-		
-			return array("q" => $question, "a" => $answer, "m" => $ml);
-		
-		}
-	
-	}
-
-?>
\ No newline at end of file