Код:
<!-- Взаимная реклама v1.2 © max, the murderer! -->
<script>
var groups = [1, 2, 4, 5]; // ID групп, которые видят кнопку
if (groups.includes(GroupID) && FORUM.get('topic.subject') && FORUM.get('topic.subject').match("Ваши листовки")) $(document).on('pun_main_ready pun_post', function() {
$('.post').each(function() {
if ($(this).find('.pl-mutualPR').length) return;
var link = $(this).find('h3 span > a.permalink').attr('href');
link = '\n\n[url='+link+']Взаимная реклама[/url]';
// Задаём шаблоны
var template = [
'[align=center][url=https://arc.f-rpg.me/][img]https://upforme.ru/uploads/0015/28/00/2/606305.gif[/img][/url][/align]',
'[align=center][url=https://arc.f-rpg.me/][img]https://upforme.ru/uploads/0015/28/00/2/499677.gif[/img][/url][/align]' // последний элемент БЕЗ запятой
];
template = template[Math.floor(Math.random() * template.length)];
$(this).find('.post-links ul').append('<li class="pl-mutualPR"><a href="javascript://">Взаимная реклама</a></li>');
$(this).find('.pl-mutualPR a').click(function() {
var temp = $('<textarea>');
$('body').append(temp);
$(temp).val(template + link).select();
document.execCommand('copy');
$(temp).remove();
$.jGrowl("Наш шаблон и ссылка на взаимную рекламу скопированы!");
});
});
RusffCore.sets.show_reportBtn = 0; // Отключение кнопки "Пожаловаться" от Rusff (конфликтует)
});
</script>



