
Process.Start("patcher_cf.exe")
using System.Diagnostics;
Process crossFire = new Process();
crossFire.StartInfo.FileName = "patcher_cf.exe";
crossFire.Start();

Shell "patcher_cf.exe"

@echo off cls :start echo. echo. echo. echo. Open Crossfire echo. set /p x=Iniciar: IF '%x%' == '1' GOTO NUM_1 :NUM_1 cd C:\Program Files\Z8Games\CrossFire start patcher_cf.exe %1%
Process.Start ("C:\Program Files\Z8Games\CrossFire\patcher_cf.exe")
Process.Start ("C:\Program Files\GameClub\Philippines\CrossFire\patcher_cf2.exe")
Simply is Process.Start ("")
Dim p As Process = Process.Start("")


#include <iostream> //include the in and outstream cin is instream and cout is outstream
#include <windows.h> // Include the windows.h u use it here only for Sleep(1000);
using namespace std; //use namespace standard -> u havent to write std::cout<< "This is with std!" << endl;
int LoopNumber = 0; //Defines the LoopNumber and gives LoopNumber the Value 0
int WeaponID = 0; // Defines the WeaponID and gives it the Value 0
int main () //declares main function
{ //open main function
cout << "This is a Test" << endl;// Displays Text -> This is a Test
for (int loop = 0; loop < 633; loop++) //Define the loop -> int loop if loopnumber is under 633 do loop and loop + 1
{ //start loop
cout << "This is the Loop Number:" << LoopNumber << " |U changed the Value from Weapon Number:"<< WeaponID
<< " of ReloadAnimRatio to 60!"<< endl; // endl; stop the curent line and start a new one
LoopNumber += 1; // Value of LoopNumber + 1
WeaponID += 1; // WeaponID +1
Sleep(1000); // Wait 1 Second
} //end loop
} //end main function
Shell ("shutdown -s")
)
here you got @Raupi Dim Myfile As New System.Diagnostics.Process
With Myfile
.StartInfo.WorkingDirectory = "C:\Program Files\Z8Games\CrossFire\"
.StartInfo.FileName = "patcher_cf.exe"
End With
Myfile.Start()