Index: trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
===================================================================
--- trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java	(revision 76)
+++ trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java	(revision 155)
@@ -45,4 +45,18 @@
     public String radioFile = "";
 
+    /**
+     * Returns the contents of the CHPRadioEvent to make recording easier.
+     * @return a string with the script to be said 
+     */
+    public String toScriptFile()
+    {
+        String fileContents = "";
+        for(int lineIndex=0;lineIndex<lines.size();lineIndex++)
+        {
+            fileContents += roles.get(lineIndex) + " " + lines.get(lineIndex) + "\n";
+        }
+        return fileContents;
+    }
+    
     @Override
     public String toXML()
