
Îá àâòîðàõ îðèãèíàëüíîãî ðóêîâîäñòâà
Äàííûé ãàéä áûë ïîñòðîåí íà îñíîâå ðóêîâîäñòâà "Posting A Comment to Multiple Steam Friends" ñ ñîãëàñèÿ àâòîðîâ îðèãèíàëüíîãî ãàéäà ash è Delite.Ïðîëîã
1. Íàñòîÿòåëüíî íå ðåêîìåíäóåòñÿ îòïðàâëÿòü ñîîáùåíèå áîëüøå 200 äðóçüÿì îäíîâðåìåííî, Âû ðèñêóåòå ïîëó÷èòü àâòîìàòè÷åñêóþ âðåìåííóþ áëîêèðîâêó çà ñïàì (íå ïóòàòü ñ VAC).2. Äëÿ áîëüøåãî óäîáñòâà ìîæåòå âîñïîëüçîâàòüñÿ ñêðèïòîì îò Royalgamer06 greasyfork.org
Øàã 1
Îòêðûâàåì ñëåäóþùóþ ññûëêó ó ñåáÿ â áðàóçåðå:steamcommunity
Øàã 2
Ïîñëå íàæàòèÿ ïðàâîé êíîïêè ìûøè, âûáèðàåì "Ïðîñìîòðåòü êîä"; ëèáî âîñïîëüçóéòåñü áûñòðûìè êîìàíäàìè, â Google Chrome, íàïðèìåð, ýòî Ctrl+Shift+I. Íà ïàíåëè ýëåìåíòîâ âûáèðàåòå "Console" è êîïèðóåòå òóäà ñêðèïò, íàïèñàííûé íèæå.new CEmoticonPopup( $J('#emoticonbtn'), $J('#commentthread_Profile_0_textarea') );
jQuery("#comment_submit").click(function() {
const total = jQuery(".friendCheckbox:checked").length;
const msg = jQuery("#comment_textarea").val();
if (total > 0 && msg.length > 0) {
jQuery("#log_head, #log_body").html("");
jQuery(".friendCheckbox:checked").each(function(i) {
let profileID = this.getAttribute("data-steamid");
(function(i, profileID) {
setTimeout(function() {
jQuery.post("//steamcommunity.com/comment/Profile/post/" + profileID + "/-1/", { comment: msg, count: 6, sessionid: g_sessionID }, function(response) {
if (response.success === false) {
jQuery("#log_body")[0].innerHTML += "<br>" + response.error;
} else {
jQuery("#log_body")[0].innerHTML += "<br>Successfully posted comment on <a href='http://steamcommunity.com/profiles/" + profileID + "'>http://steamcommunity.com/profiles/" + profileID + "</a>.";
}
}).fail(function() {
jQuery("#log_body")[0].innerHTML += "<br>Failed to post comment on <a href='http://steamcommunity.com/profiles/" + profileID + "'>http://steamcommunity.com/profiles/" + profileID + "</a>.";
}).always(function() {
jQuery("#log_head").html("<br><b>Processed " + (i+1) + " out of " + total + " friends.<b>");
});
}, i * 6000);
})(i, profileID);
});
} else {
alert("Please make sure you entered a message and selected 1 or more friends.");
}
});