Squiso là một công cụ tự động hóa miễn phí và mạnh mẽ cho phép bạn tùy chỉnh luồng Twitch của mình bằng các tập lệnh đơn giản.

Cách tự động thực hiện Twitch Shoutout khi bị đột kích

Ví dụ về tập lệnh này sẽ tự động thực hiện thông báo trên Twitch mỗi khi bạn bị đột kích.

Ví dụ về kịch bản

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 onTwitchRaided(OnTwitchRaidedData data, API api) throws SquisoException { // Get the user ID SquisoString userID = data.getUserID(); // Send a shoutout in chat api.sendTwitchShoutout(userID); } }