All Projects â†’ dofus-remote â†’ otomat

dofus-remote / otomat

Licence: other
🤖 A lightweight easy-to-handle headless game client working on servers for dofus-touch.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to otomat

Araknemu
Simple Dofus server in Java
Stars: âś­ 49 (+133.33%)
Mutual labels:  dofus
dofedex
A Dofus Retro encyclopedia
Stars: âś­ 45 (+114.29%)
Mutual labels:  dofus
Dindo-Bot
🤖 Farming bot for Dofus game
Stars: âś­ 97 (+361.9%)
Mutual labels:  dofus
Datafus
The Dofus database and socket events in JSON files. Includes the source code and more...
Stars: âś­ 16 (-23.81%)
Mutual labels:  dofus
D1Proxy
A simple yet powerful Java 11 TCP MITM proxy for Dofus 1.29.1
Stars: âś­ 17 (-19.05%)
Mutual labels:  dofus

18/12/20, DofusRemote passe désormait close-source. Les prospositions majeures que j'avais à faire sur l'architecture sont faîtes, j'en continuerais le développement en privé pendant un moment.

DofusRemote Client

Otomat est développé par une seule dans le seul but d'obtenir de nouvelles connaissances dans divers domaines. Les fonctionnalités ne seront pas poussées et toute aide est bienvenue afin de fournir une base de projet stable et propre.

Invitation Discord: https://discord.gg/Ctg86d4

Packages

  • ignitor -> CLI permettant l'orchestration de vos diffĂ©rents bots.
  • kernel -> Noyaux gĂ©rant vos bots, plugins.
  • client -> Instance gĂ©rant la connexion d'un bot individuellement.
  • plugin -> Ajoute les fonctionnalitĂ©s aux bots.
  • token -> GĂ©nère les tokens de connexion des bots.
  • version -> RĂ©cupère les dernières versions du jeu.

Exemple

const Kernel = require('@dofus-remote/kernel')
const Client = require('@dofus-remote/client')
const Version = require('@dofus-remote/version')
const AuthPlugin = require('@dofus-remote/plugin/Auth')
const GamePlugin = require('@dofus-remote/plugin/Game')

async function run(login, password, country, language, serverId, characterId) {
  const version = await Version.get(country, language)
  const kernel = new Kernel(version)
  kernel.plugins.add(AuthPlugin)
  kernel.plugins.add(GamePlugin)
  kernel.clients.add(new Client(login, password, country))
  kernel.plugins.flush()
  
  for (const client of kernel.clients) {
    await client.connect()
    await kernel.api.auth.begin(client)
    await kernel.api.auth.play(client, serverId)
    await kernel.api.game.play(client, characterId)
  }
}

run('login', 'password', 'country', 'language', 0, 0)
  .then(console.log)
  .catch(console.error)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].