Jump to content

Insert argument in patcher


Recommended Posts

Hello all, I have a little problem. I just took a look in this topic and I built the launcher with @arves100's code (thank you). The launcher now requires to be run by the autopatcher.

The problem is that I don't know how to paste the argument in the patcher. I use official 2013 patcher (that one with torrent).

How can I do that?

Thank you.

Link to comment
Share on other sites

  • Management

I use this on my patcher to start the client with an argument:

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "metin2client.bin";
startInfo.Arguments = "--argument";
Process.Start(startInfo);

 

raw

raw

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.