thealtening-free
v1.0.0
Published
An API wrapper for thealtening.com's free alts with its authenticator.
Downloads
1
Maintainers
Readme
thealtening-free
An API wrapper for thealtening.com
's free alts with its authenticator.
A package that allows you to use thealtening.com
's API to generate free alts with its authenticator (not its payed alts), and even login to them. It supports mineflayer
ande minecraft-protocol
, with builtin functionality to create clients and bots with them.
Features
- Generating alts with the The Altening API
- Logging into servers
- Creating
minecraft-protocol
clients - Creating
mineflayer
bots
Usage
npm install thealtening-free
Examples
Creating a mineflayer bot to log the chat
const bot = await altening.bot();
bot.on('chat', (player, message) => {
console.log(`${player}: ${message}`);
});