स्क्विसो एक निःशुल्क, शक्तिशाली स्वचालन उपकरण है जो आपको सरल स्क्रिप्ट का उपयोग करके अपनी ट्विच स्ट्रीम को अनुकूलित करने की सुविधा देता है।
ट्विच चैट में अपने वर्तमान !memory और !specs कंप्यूटर विनिर्देशों को कैसे दिखाएं
यह स्क्रिप्ट उदाहरण ट्विच चैट में !memory और !specs को सुनता है और फिर आपके सिस्टम और कंप्यूटर विनिर्देशों के बारे में विभिन्न जानकारी ट्विच चैट उपयोगकर्ता को वापस लिखता है।
वह वीडियो देखें
स्क्रिप्ट उदाहरण
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 equals "!memory"
if (data.getMessageText().equals("!memory")) {
// Retrieve various information about your system
SystemInfo si = api.getSystemInfo();
// Compose a chat message
SquisoString chatMessage = new SquisoString("@" + data.getUserName() + " - Current memory usage is " + si.getUsedMemoryGB() + " / " + si.getTotalMemoryGB() + " GB");
// Send it to Twitch chat
api.sendTwitchChatMessage(chatMessage);
}
// If the chat message equals "!specs"
if (data.getMessageText().equals("!specs")) {
// Retrieve various information about your system
SystemInfo si = api.getSystemInfo();
// Compose a chat message
SquisoString chatMessage = new SquisoString("");
chatMessage.append("@" + data.getUserName() + " ");
chatMessage.append("OS: " + si.getOS() + " ");
chatMessage.append("CPU: " + si.getCPU() + " ");
chatMessage.append("GPU: " + si.getGPU() + " ");
chatMessage.append("Current memory: " + si.getUsedMemoryGB() + " / " + si.getTotalMemoryGB() + " GB");
// Send it to Twitch chat
api.sendTwitchChatMessage(chatMessage);
}
}
}