Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdingena/att-string-transcoder
Trancode integer strings for A Township Tale.
https://github.com/mdingena/att-string-transcoder
binary township-tale transcoder virtual-reality
Last synced: 3 months ago
JSON representation
Trancode integer strings for A Township Tale.
- Host: GitHub
- URL: https://github.com/mdingena/att-string-transcoder
- Owner: mdingena
- License: mit
- Created: 2021-07-22T12:00:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T11:14:24.000Z (10 months ago)
- Last Synced: 2024-10-25T18:38:57.133Z (3 months ago)
- Topics: binary, township-tale, transcoder, virtual-reality
- Language: TypeScript
- Homepage:
- Size: 1.15 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
README
ATT String Transcoder
---
Allows you to decode _A Township Tale_'s save strings for analysing, and encode JS objects into ATT save strings for spawning.
⚠️ Use this library primarily when creating bots for ATT, or when building your own ATT save string project. **If you just want to make string weapons, check out our [ATT String Workshop](https://github.com/mdingena/att-string-workshop) project.**
## :speech_balloon: Join the community
Join the ATT string creators community for sharing and troubleshooting strings built with _ATT String Transcoder_.
## :sparkles: Quickstart
### Installation
Add this library to your project's dependencies:
```shell
npm install --save att-string-transcoder
```### Usage
```ts
import { Prefab } from 'att-string-transcoder';const blade = new Prefab('Large_Longsword_Blade').setMaterial('Mythril');
const handle = new Prefab('Handle_Short_Cool')
.addChildPrefab('Slot_Large_SwordType_Craft_33946', blade)
.setKinematic()
.print();
```Read the [API Reference Documentation](docs/README.md) for more options.