Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
turn off styling
  • Loading branch information
Sadzurami authored Jun 5, 2023
1 parent e37e19e commit e0e3558
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -30,7 +30,7 @@ Typically, steam session contains:

### From source

```bash
```
git clone
cd steam-sessions-creator
npm install (or yarn install)
Expand All @@ -50,132 +50,132 @@ Allows you to create steam session from scratch.

Create steam session with provided account credentials:

```bash
```
ssc create -a <username>:<password>
```

Example:

```bash
```
ssc create -a username:password
```

---

Create steam session with provided 2 account credentials:

```bash
```
ssc create -a <username1>:<password1> <username2>:<password2>
```

Example:

```bash
```
ssc create -a username1:password1 username2:password2
```

---

Create steam session with provided account credentials in file:

```bash
```
ssc create -a <path/to/accounts/file>
```

Example:

```bash
```
ssc create -a ./accounts.txt
```

---

Create steam session with provided account credentials in asf json files:

```bash
```
ssc create -a <path/to/asf/json/files>
```

Example:

```bash
```
ssc create -a ./asf/*.json
```

---

Create steam session with provided account credentials and proxy:

```bash
```
ssc create -a <username>:<password> -p <proxy>
```

Example:

```bash
```
ssc create -a username:password -p http://example.com:8080
```

---

Create steam session with provided account credentials and maFile:

```bash
```
ssc create -a <username>:<password> -s <path/to/maFile>
```

Example:

```bash
```
ssc create -a username:password -s ./username.maFile
```

---

Create steam session with provided account credentials and maFiles glob:

```bash
```
ssc create -a <username>:<password> -s <glob/to/maFiles>
```

Example:

```bash
```
ssc create -a username:password -s ./maFiles/*.maFile
```

---

Create steam session with provided account credentials asf db files:

```bash
```
ssc create -a <username>:<password> -d <path/to/asf/db/files>
```

Example:

```bash
```
ssc create -a username:password -d ./asf/*.db
```

---

Create steam session with provided account credentials and output path:

```bash
```
ssc create -a <username>:<password> -o <path/to/output>
```

Example:

```bash
```
ssc create -a username:password -o ./output
```

---

More info about `Create` command:

```bash
```
ssc create --help
```

0 comments on commit e0e3558

Please sign in to comment.