Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
emist committed Sep 14, 2011
1 parent ffcc4c9 commit 214498a
Showing 1 changed file with 4 additions and 61 deletions.
65 changes: 4 additions & 61 deletions Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System.Drawing;
using System.Runtime.InteropServices;
using System.Diagnostics;

using Syringe;
using System.Text;
using System.IO;
Expand Down Expand Up @@ -68,61 +69,6 @@ static void Main()
{
Thread.Sleep(300);
}


/////DEBUGGING STUFF


/*
Executor injector = new Executor();
String dll = "C:\\Black.dll";
injector.Inject(dll, "ExeFile");
if (injector.getSyringe() == null)
return;
injector.getSyringe().CallExport(dll, "dropServer");
//Communicator comm = new Communicator("\\\\.\\pipe\\TestChannel");
injector.getSyringe().CallExport(dll, "startServer");
/*
Response resp = (InterfaceResponse)comm.sendCall(FunctionCallFactory.CALLS.FINDBYNAMELOGIN, "username", Response.RESPONSES.INTERFACERESPONSE);
if (resp == null)
return;
resp.HandleResponse();
*/

/*
Response resp = (InterfaceResponse)comm.sendCall(FunctionCallFactory.CALLS.FINDBYTEXTLOGIN, "Username", Response.RESPONSES.INTERFACERESPONSE);
if (resp == null)
return;
resp.HandleResponse();
*/


/*
Response resp = (InterfaceResponse)comm.sendCall(FunctionCallFactory.CALLS.FINDBYTEXTMENU, "BOURYNES VII - ASTEROID BELT 1", Response.RESPONSES.INTERFACERESPONSE);
if (resp == null)
return;
resp.HandleResponse();
Console.WriteLine("Response name " + ((List<string>)resp.Data)[0]) ;
while (true)
{
Thread.Sleep(1000);
}
*/


cWindow.createBot();

Expand All @@ -134,10 +80,7 @@ static void Main()


WindowHandler BotHandle = bot1.getHandle();





while (true)
{

Expand All @@ -149,8 +92,8 @@ static void Main()
System.Threading.Thread.Sleep(1000);
}


}



}
}

0 comments on commit 214498a

Please sign in to comment.