igoodie.gitbook.io Open in urlscan Pro
172.64.147.209  Public Scan

URL: https://igoodie.gitbook.io/twitchspawn/reference/configurations/credentials.toml
Submission: On September 20 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

TwitchSpawn
Minecraft 1.17.x
Minecraft 1.16.xMinecraft 1.12.2Minecraft 1.18.xMinecraft 1.17.xMinecraft 1.14.x
More


SearchCtrl + K
 * 💿Introduction
 * 💿Mod Page
 * 📹Tutorial Video Series
 * 👾Discord Server
 * 🌲Change Logs
 * Basics
   * 📘Getting Started
      * 📗Configuring Credentials
      * 📗Creating Basic Ruleset
      * 📗Starting the Mod on Server
   
   * 📘Customizing Messages
   * 💿Minecraft JSON Text Components
   * 💿Minecraft Tools
 * TwitchSpawn Language
   * 📜TSL Basics
   * 📜TSL Events & Predicates
   * 📜TSL Comparators
   * 📜TSL Actions
   * 📝Notepad++ Syntax UDL
 * Reference
   * 📕Configurations
      * 📄credentials.toml
      * 📄messages.title.json
      * 📄messages.subtitle.json
      * 📄rules.xxx.tsl
      * 📄preferences.toml
   
   * 📕Commands
   * 📕Chat
 * Cookbook
 * Collaboration
   * 💻Source Code
   * 💻Submit an Issue

Powered by GitBook


📄CREDENTIALS.TOML

credentials.toml is a TOML file used by the mod to initiate connection with the
Socket APIs. It is consisted of several arrays.

FIELD: MODERATORSTWITCH

Type: String array Description: Nicknames of moderators on Twitch. Exemplar Use:


Copy

moderatorsTwitch = [ "Alice", "Bob", "Eve" ]

FIELD: MODERATORSMINECRAFT

Type: String array Description: Nicknames of moderators in Minecraft. Exemplar
Use:


Copy

moderatorsMinecraft = [ "AliceInMinecraft", "BobInMinecraft" ]

FIELD: STREAMERS

Type: Object array Description: Array of streamer credential data Exemplar Use:

Single StreamerMultiple Streamers

Copy

[[streamers]]
	minecraftNick = "iGoodie"
	twitchNick = "iGoodiex"
	platform = "Streamlabs"
	token = "YOUR_SOCKET_TOKEN"
	tokenChat = "YOUR_CHAT_TOKEN_HERE - Can be generated from https://twitchapps.com/tmi/"


Copy

[[streamers]]
	minecraftNick = "Neeta"
	twitchNick = "neeta"
	platform = "Streamlabs"
	token = "YOUR_SOCKET_TOKEN"
	
[[streamers]]
	minecraftNick = "Pomapii"
	twitchNick = "pomapi"
	platform = "StreamElements"
	token = "YOUR_SOCKET_TOKEN"

PreviousConfigurationsNextrules.xxx.tsl

Last updated 4 years ago

On this page
 * Field: moderatorsTwitch
 * Field: moderatorsMinecraft
 * Field: streamers

Was this helpful?