diff --git a/README.md b/README.md index fca5ef3..f980618 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ All you need to know, thats steam session represents all-in-one data for manipul Typically, steam session contains: -```sh +``` { "Username": "...", // steam username "Password": "...", // steam password @@ -30,7 +30,7 @@ Typically, steam session contains: ### From source -```bash +``` git clone cd steam-sessions-creator npm install (or yarn install) @@ -50,13 +50,13 @@ Allows you to create steam session from scratch. Create steam session with provided account credentials: -```bash +``` ssc create -a : ``` Example: -```bash +``` ssc create -a username:password ``` @@ -64,13 +64,13 @@ ssc create -a username:password Create steam session with provided 2 account credentials: -```bash +``` ssc create -a : : ``` Example: -```bash +``` ssc create -a username1:password1 username2:password2 ``` @@ -78,13 +78,13 @@ ssc create -a username1:password1 username2:password2 Create steam session with provided account credentials in file: -```bash +``` ssc create -a ``` Example: -```bash +``` ssc create -a ./accounts.txt ``` @@ -92,13 +92,13 @@ ssc create -a ./accounts.txt Create steam session with provided account credentials in asf json files: -```bash +``` ssc create -a ``` Example: -```bash +``` ssc create -a ./asf/*.json ``` @@ -106,13 +106,13 @@ ssc create -a ./asf/*.json Create steam session with provided account credentials and proxy: -```bash +``` ssc create -a : -p ``` Example: -```bash +``` ssc create -a username:password -p http://example.com:8080 ``` @@ -120,13 +120,13 @@ ssc create -a username:password -p http://example.com:8080 Create steam session with provided account credentials and maFile: -```bash +``` ssc create -a : -s ``` Example: -```bash +``` ssc create -a username:password -s ./username.maFile ``` @@ -134,13 +134,13 @@ ssc create -a username:password -s ./username.maFile Create steam session with provided account credentials and maFiles glob: -```bash +``` ssc create -a : -s ``` Example: -```bash +``` ssc create -a username:password -s ./maFiles/*.maFile ``` @@ -148,13 +148,13 @@ ssc create -a username:password -s ./maFiles/*.maFile Create steam session with provided account credentials asf db files: -```bash +``` ssc create -a : -d ``` Example: -```bash +``` ssc create -a username:password -d ./asf/*.db ``` @@ -162,13 +162,13 @@ ssc create -a username:password -d ./asf/*.db Create steam session with provided account credentials and output path: -```bash +``` ssc create -a : -o ``` Example: -```bash +``` ssc create -a username:password -o ./output ``` @@ -176,6 +176,6 @@ ssc create -a username:password -o ./output More info about `Create` command: -```bash +``` ssc create --help ```