Sure:
1) Make sure your SWF's are the correct version.
2) Update your DLL.
3) Make sure the DLL is in the same folder as the .exe
4) Run The Emulator.
5) Have fun :lol:
If that doesnt work:
In IO/MemoryWriter.cs
Replace:
Code:
private string Path = "Logging/" + DateTime.Now.ToShortDateString() + ".txt";
With:
Code:
private string Path = "Logging/" + DateTime.Now.ToShortDateString().Replace("/", "-") + ".txt";
P.S. Reason doesnt work is because you cant create names with / in because / is a directory.