View Single Post
  #28  
Old 07-29-2011, 05:27 AM
TheEnlightenedFlorist TheEnlightenedFlorist is offline
Approved Member
 
Join Date: May 2011
Location: SLC, Utah, USA
Posts: 143
Default

Quote:
Originally Posted by CaptainDoggles View Post
This is an awesome project; please make it open source so others can contribute.
I have attached them. Unfortunately, they are in separate Visual Studio solutions (and not very well written, in my opinion).

Also, it turns out there's a much easier way to reference the dll than using reflection.

Code:
//$reference IL2ServerMasterLibrary.dll
using IL2ServerMasterLibrary;
Then...

Code:
ServerMaster master = new ServerMaster("pass", 27340);
string[] command = master.popCommand();
Attached Files
File Type: zip IL2ServerMaster.zip (1.07 MB, 7 views)
File Type: zip IL2ServerMasterLibrary.zip (42.6 KB, 8 views)

Last edited by TheEnlightenedFlorist; 07-29-2011 at 05:32 AM.
Reply With Quote