Squiso is een gratis, krachtige automatiseringstool waarmee je je Twitch-stream kunt aanpassen met behulp van eenvoudige scripts.
Hoe je automatisch een Twitch-shoutout doet wanneer je wordt geraid
Dit scriptvoorbeeld genereert automatisch een Twitch-shoutout wanneer je wordt aangevallen.
Scriptvoorbeeld
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);
}
}