GetArgv /Application and system

string GetArgv(int n)

Retrieves an application argument sent by the user usually through command line.

Sample:

// List all arguments e.g.: machine.exe -test -customArg -playerInfiniteLives
for (int c = 0; c < GetArgc(); c++)
{
    print(GetArgv(c));
}

Output:

-test
-customArg
-playerInfiniteLives