Squiso는 간단한 스크립트를 사용하여 Twitch 스트림을 사용자 정의할 수 있는 무료의 강력한 자동화 도구입니다.

Twitch Chat에서 주기적으로 소셜을 알리는 방법

이 스크립트 예제는 가능한 채팅 공지 목록을 만든 다음 20분마다 그 중 하나를 무작위로 Twitch 채팅 공지로 전송합니다.

비디오를 보세요

스크립트 예제

import com.squiso.*; import com.squiso.exception.*; import com.squiso.scripting.*; import com.squiso.scripting.data.*; import com.squiso.keyboard.*; import com.squiso.twitch.*; import com.squiso.datatypes.*; import com.squiso.utils.*; // Important - Please do not change the row below - otherwise you will get a compilation error! public class Script_Example extends SquisoScript { @Override public void onEveryMinute(OnEveryMinuteData data, API api) throws SquisoException { // Every 20 minutes if (data.is(20)) { // Create a list of different text messages to send SquisoList<SquisoString> list = new SquisoList<>(); // Compose and add the first message into the list SquisoString message1 = new SquisoString("Please follow me on socials! youtube.com/squiso ⭐ twitter.com/squiso ⭐ tiktok.com/squiso"); list.add(message1); // Compose and add the first message into the list SquisoString message2 = new SquisoString("Have you checked out my latest YouTube? 🤩 https://www.youtube.com/watch?v=2F-SnbeaBUw"); list.add(message2); // Get a random message from the list SquisoString messageToSend = list.getRandom(); // Send it in chat api.sendTwitchChatAnnouncement(messageToSend); } } }