स्क्विसो एक निःशुल्क, शक्तिशाली स्वचालन उपकरण है जो आपको सरल स्क्रिप्ट का उपयोग करके अपनी ट्विच स्ट्रीम को अनुकूलित करने की सुविधा देता है।

!so Shoutout Twitch कमांड कैसे बनाएं

यह स्क्रिप्ट उदाहरण !so को सुनता है और ट्विच चैट में शाउटआउट को ट्रिगर करता है।

स्क्रिप्ट उदाहरण

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()); } } }