I was just in the market for a decent community and it said I had to post something "useful".
I use this to bypass the loaders that most F2P games require you to launch the game with.
Just compile it and rename it to the name of the game client to see what arguments are being passed from the loader to the client.
Useful or not, here it is.
Code:MsgBox(0, "Args", " Arguments: " & $CmdLine[0]) For $i = 1 To $CmdLine[0] MsgBox(0, "Args", "Argument " & $i & ": " & $CmdLine[$i]) Next