स्क्विसो एक निःशुल्क, शक्तिशाली स्वचालन उपकरण है जो आपको सरल स्क्रिप्ट का उपयोग करके अपनी ट्विच स्ट्रीम को अनुकूलित करने की सुविधा देता है।
ट्विच चैनल पॉइंट्स के साथ स्ट्रीमर को अपने हथियार को शूट करने के लिए कैसे मजबूर करें
यह स्क्रिप्ट उदाहरण ट्विच चैनल पॉइंट रिवॉर्ड रिडीम पर सुनता है और फिर माउस और कीबोर्ड दोनों क्रियाओं को सिम्युलेट करता है ताकि स्ट्रीमर को अपने हथियार को शूट करने और गेम में ग्रेनेड फेंकने के लिए मजबूर किया जा सके।
वह वीडियो देखें
स्क्रिप्ट उदाहरण
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 onTwitchChannelPointRedeem(OnTwitchChannelPointRedeemData data, API api) throws SquisoException {
// If the reward that got redeemed is called "Shoot Gun"
if (data.getRewardName().equals("Shoot Gun")) {
// Wait 5 seconds (5000ms)
api.sleep(5000);
// Hold down the left mouse button for 2 seconds
api.mouseButtonLeftPress(2000);
}
// If the reward that got redeemed is called "Throw Grenade"
if (data.getRewardName().equals("Throw Grenade")) {
// Wait 5 seconds (5000ms)
api.sleep(5000);
// Press the G key
api.keyPress(KeyboardKey.G);
// Wait a second again
api.sleep(1000);
// Throw the grenade
api.mouseButtonLeftPress();
}
}
}