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

!so Shoutout Twitch 명령을 만드는 방법

이 스크립트 예제는 !so를 수신하고 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 onTwitchChatMessage(OnTwitchChatMessageData data, API api) throws SquisoException { // If the chat message starts with "!so " if (data.getMessageText().startsWith("!so ")) { // Get the name by taking everything after 4 characters into th string SquisoString userName = data.getMessageText().substring(4); // Get user data based on their username UserData userData = api.getTwitchUserData(userName); // Send the shoutout in chat api.sendTwitchShoutout(userData.getID()); } } }