Combo Breaker

Adds a C-C-Combo Breaker button and function to the Kongregate chat

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name           Combo Breaker
// @namespace      ganthor93@kongregate
// @description    Adds a C-C-Combo Breaker button and function to the Kongregate chat
// @include        http://www.kongregate.com/games/*/*
// @version 0.0.1.20160306135213
// ==/UserScript==
if (/^\/?games\/[^\/]+\/[^\/?#]+([\?#].*)?$/.test(window.location.pathname)) {
setTimeout(function(){
javascript:void(window.location.assign("javascript:$('header').innerHTML+='<style>.CCCB{clear:none;margin:0px;padding:0px 5px;} .CCCBc{position:absolute;left:185px;top:3px}</style>';var timeObj={time:0};function comboBreaker(){if(timeObj.time < new Date().getTime()){sendChatMessage('C-C-Combo Breaker');timeObj.time=new Date().getTime()+7000}holodeck.activeDialogue()._input_node.focus();return false};function sendChatMessage(a){a = a.replace(/\\\\(?!u[0-9a-fA-f]{4}|x[0-9a-fA-f]{2})/g, '\\\\\\\\');dispatchToKonduit({type:KonduitEvent.ROOM_MESSAGE,data:{message:a,room:holodeck.chatWindow()._active_room._room}});return a;};holodeck.addChatCommand('cccb', comboBreaker);holodeck.addChatCommand('CCCB', comboBreaker);(function(){var a=$$('.room_name_container'),b,i;for(i in a){if(!(b=a[i]).CCCB)b.CCCB=b.innerHTML+=\"<span class='CCCBc'><input type='button' onclick='comboBreaker();' class='CCCB' value='CCCB'></span>\";}})();window.comboBreaker=comboBreaker;window.sendChatMessage=sendChatMessage;void(0);"));
}, 1250);
}