diff --git a/pymule/vegas.py b/pymule/vegas.py
index aa2b41f93379e92fd428bd3afeef5342930987da..23b3d63a53b9275a77ff3df4c9da51c00c0c2050 100644
--- a/pymule/vegas.py
+++ b/pymule/vegas.py
@@ -158,3 +158,28 @@ def exportvegas(dic, filename="", fp=None):
     plots = sorted(list(set(dic.keys()) - {
         'SHA','chi2a','iteration','msg','value','time','ndo','randy','xi'
     }))
+
+    y,e = dic['value']
+
+    write_record(fp, 'c', 'v3N       ')
+    write_record(fp, 'c', dic['SHA'])
+    write_record(fp, 'i', dic['iteration'])
+    write_record(fp, 'i', dic['ndo'])
+    write_record(fp, 'd', y/e**2)
+    write_record(fp, 'd', 1/e**2)
+    write_record(
+        fp, 'd',
+        dic['chi2a']*(dic['iteration']-1) + y**2/e**2
+    )
+
+    write_record(fp, 'd', dic['xi'])
+    write_record(fp, 'i', dic['randy'])
+
+    nrbins = len(dic[plots[0]])
+    nrq = len(plots)
+
+    write_record(fp, 'i', [
+        nrq,
+        nrbins,
+        max(max([len(i) for i in plots]),6)
+    ])