Перейти к содержимому
View in the app

A better way to browse. Learn more.

Zloplay community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Опубликовано:

Ok, so i don't want to use the original IW4M updater, i am a coder so i got a aIW2 (alterMW3) Updater source code, but the thing is i can't seem to launch iw4mp.dat,

the original code is Process.Start("iw5mp.exe"), but when i change it to Process.Start("iw4mp.dat"), it asks me with what program it should open .dat file.

 

Please help.

Опубликовано:

Yes but i need a code for starting .xxx files as .exe.

Опубликовано:

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "???";
startInfo.Arguments = ???;
Process.Start(startInfo);

 

ProcessStartInfo:

Stores information about the process—specifically how the process is started and its configuration.

 

FileName:

The program or filename you want to run.

 

Arguments:

Stores the arguments, such as -flags or filename. This is a string property.

 

CreateNoWindow:

Allows you to run a command line program silently. It does not flash a console window.

 

WindowStyle:

Use this to set windows as hidden.

 

UserName, WorkingDirectory, Domain:

These control OS-specific parameters—for more complex situations.

Опубликовано:

Ok, but now opens the iw4mp.dat in HxD.

Опубликовано:

Think I got it now. Using CreateProcess.

Опубликовано:

Looked up into preloader's source code from aIW, understood everything when i saw that.

Опубликовано:

l0ck th3 t0p1c

  • 3 weeks later...
Опубликовано:

ProcessStartInfo psi = new ProcessStartInfo();

psi.FileName = "iw4mp.dat";

psi.UseShellExecute = false;

Process.Start(psi);

 

just to let you know, how easy it can be fixed.

Опубликовано:

oh :D thx anyway

Опубликовано:

Admins, can you please lock the topic? Cause I got it working. And it is really unneeded to have the topic open.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Гость
Ответить в тему...

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу

Важная информация

Используя этот сайт, вы соглашаетесь Условия использования.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.