Skip to content

Instantly share code, notes, and snippets.

Created May 7, 2012 16:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2628900 to your computer and use it in GitHub Desktop.
Save anonymous/2628900 to your computer and use it in GitHub Desktop.
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s = fso.OpenTextFile("C:\\Test.txt", 8, true, 0);
var name = player.GetVar("TextEntry");
var email = player.GetVar("TextEntry1");
s.WriteLine("Email: " + email);
s.WriteLine("Name: " + name);
s.WriteLine("==========");
s.Close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment