att-string-transcoder
v3.1.2
Published
Trancode save strings for A Township Tale.
Downloads
144
Maintainers
Readme
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 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:
npm install --save att-string-transcoder
Usage
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 for more options.