Skip to content

Commit af3d1ad

Browse files
committed
update README.md
1 parent ee8b547 commit af3d1ad

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Go Report Card](https://goreportcard.com/badge/github.com/vitalick/d2s)](https://goreportcard.com/report/github.com/vitalick/d2s)
44
[![GoDoc](https://godoc.org/github.com/vitalick/d2s?status.svg)](https://godoc.org/github.com/vitalick/d2s)
55

6-
Simple Go package for reading and writing Diablo 2 saves. Supports version 1.10 through Diablo II: Resurrected (1.15).
6+
Go package for reading and writing Diablo 2 saves. Supports version 1.10 through Diablo II: Resurrected (1.15).
77
Supports reading both d2s (player saves) ~~and d2i (shared stash)~~ files.
88

99
## Installation

d2s-conv/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Diablo 2 Save editor CLI
2+
3+
CLI for convert .d2s to JSON and vice-versa
4+
5+
## Installation
6+
7+
To install command line program, use the following:
8+
9+
```bash
10+
go install github.com/vitalick/d2s/d2s-conv@latest
11+
```
12+
13+
## Usage
14+
### CLI
15+
16+
For convert JSON to .d2s, use the following:
17+
```bash
18+
d2s-conv -fromjson <input files>
19+
```
20+
21+
For convert .d2s to JSON, use the following:
22+
```bash
23+
d2s-conv -tojson <input files>
24+
```

0 commit comments

Comments
 (0)