Como criar um bot de plataforma giratória

<a href=” https://turntable.fm/lobby “target=” blank”> Turntable.FM </a> é um site de compartilhamento de músicas via manchas de DJ em um palco digital. Basicamente, é um concerto virtual. Qualquer pessoa pode criar uma sala, mas para gerenciá-la bem, é necessário usar um bot. Foi difícil para mim reunir algumas informações para finalmente colocar <a href=” http://turntable.fm/electric storm” target=”_blank”> meu bot </a>, KanoBot, em funcionamento e correndo, mas agora que fiz, posso ajudá-lo. </p>

<h2> Etapa 1: Obtendo Node.JS </h2>

Para começar, você precisará acessar o <a href=” http://nodejs.org/ “target=”_blank”> website </a> do Node.JS e clicar no botão verde <span style =” font-family: sans-serif; background-color: # 8BC84B; width: 200px; font-size: 14px; font-weight: bold; padding: 4px 6px; border-radius: 2px; cursor: default; “> INSTALAR < / span> botão. Siga as instruções para instalar o Node.JS corretamente. </p>

<h2> Etapa 2: Baixar e instalar a API Turntable </h2>

Agora, você vai instalar o ttapi. Primeiro, crie uma pasta que você deseja conter seu bot. Em seguida, em seu comando propt, digite o seguinte: </p>
cd [Local da pasta] // Substitua “[Local da pasta]” pelo local real da pasta.

* Isso informará ao seu prompt de comando que você deseja que as próximas linhas de código sejam executadas na pasta especificada. </p>

Então, para baixar e instalar, digite esta linha de código: </p>
npm install ttapi

* <font color = “red”> NPM </font> significa <font color = “red”> N </font> ode <font color = “red”> P </font> ackage <font color = “red “> M </font> anager e também é um prefixo de comando usado ao instalar itens no Node.JS via NPM. </p>

<h2 style = “margin-top: 35px;”> Etapa 3: Baixar o script do bot </h2>

Depois de baixar e instalar a API Turntable, é hora de <a href = ” https://d2.creative.adobe.com/api/assets/ceb524f1-e9bd-44de-be62-2c7648011bd9?download=true&access_token=undefined ” target = ” blank”> baixe </a> o script. Depois de baixado, certifique-se de movê-lo para a pasta do seu bot junto com a pasta denode módulos </code> e renomeá-lo parattbot.js</code>.</p>

<h2> Etapa 4: Configurando seu bot </h2>

Abra o ttbot.js</code> file in your bot's folder. The only thing you need to change right now is this section:</p> var AUTH = 'xxxxxxxxxxxxxxxxxxxxxxxxxx'; var USERID = 'xxxxxxxxxxxxxxxxxxxxxxxxxx'; var ROOMID = 'xxxxxxxxxxxxxxxxxxxxxxxxxx';What you are going to need to do is drag this into your bookmarks bar. Once you've done that, create an account for you bot, enter the room you want it to manage, and if it's not already, make it a moderator.</p>After that, while still in the room on your bot's account, you are going to click the the link that you just dragged into your bookmarks bar, take the codes that pop up on the top left of the window, and replace the xxxxxxxxxxxxxxxxxxxxxxxxxx</code> with the code displayed. Repeat the process for the two other codes as well, just copy the code from the white box, and paste it in between the quotes in your ttbot.js</code> file.</p>Once you are done, be sure to save! You are now ready for the final step, step 5.</p><h2>Step 5: Run Your Bot</h2>I know you are eager to see your bot an action, but don't let that get in the way of your typing skills, it is critical that you don't make an error when typing the upcoming commands. The commands to put your bot in business are: cd [Folder Location] // Replace "[Folder Location]" with your actual folder location. node ttbot.js<h2>That's It, You Are Done!</h2><br /><br /><br /><br />* If you happened to encounter any errors when performing step 5, go to my Coderwall <a href="https://coderwall.com/mnafricano">profile</a> and message me.</p>