<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HelpCenter</title>
	<atom:link href="https://helpcenter.fun/feed/" rel="self" type="application/rss+xml" />
	<link>https://helpcenter.fun</link>
	<description>Hier findest du Guides, Downloads und Support für Streamer.bot</description>
	<lastBuildDate>Thu, 30 Apr 2026 11:46:43 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://helpcenter.fun/wp-content/uploads/2026/02/cropped-cropped-Icon-1-32x32.webp</url>
	<title>HelpCenter</title>
	<link>https://helpcenter.fun</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>MediaBoard</title>
		<link>https://helpcenter.fun/mediaboard/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mediaboard</link>
					<comments>https://helpcenter.fun/mediaboard/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Thu, 09 Apr 2026 23:28:48 +0000</pubDate>
				<category><![CDATA[Download Anleitungen]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=1059</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du die MediaBoard Aktion korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/mediaboard/">MediaBoard</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-f56f9fcf wp-block-group-is-layout-flex">
<h2 class="wp-block-heading">Zeitaufwand ~ 5 Min</h2>



<div class="wp-block-file aligncenter"><a id="wp-block-file--media-f76396aa-83c6-4dd6-bc94-f76ab8ef6396" href="https://helpcenter.fun/wp-content/uploads/2026/04/Mediaboard.html">Mediaboard &#8211; Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/04/Mediaboard.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-f76396aa-83c6-4dd6-bc94-f76ab8ef6396">Anleitung Herunterladen</a></div>
</div>



<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/04/Mediaboard.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<p class="wp-block-paragraph"></p>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-75"><a class="wp-block-button__link has-large-font-size has-text-align-center has-custom-font-size wp-element-button" href="https://ko-fi.com/I2I2M7JVM/shop"><strong><em>Mehr von SZG ?</em></strong></a></div>
</div>



<p class="wp-block-paragraph"></p><p>The post <a href="https://helpcenter.fun/mediaboard/">MediaBoard</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/mediaboard/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG Game Info</title>
		<link>https://helpcenter.fun/szg-game-info/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-game-info</link>
					<comments>https://helpcenter.fun/szg-game-info/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Fri, 03 Apr 2026 10:16:02 +0000</pubDate>
				<category><![CDATA[Streamer.bot Power Tools]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=1054</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du die Game Info korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-game-info/">SZG Game Info</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/04/Anleitung-Gameinfo.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<div class="wp-block-file"><a id="wp-block-file--media-287c6c9d-9f0a-466b-a905-ee4312b6816c" href="https://helpcenter.fun/wp-content/uploads/2026/04/Anleitung-Gameinfo.html">Game Info-Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/04/Anleitung-Gameinfo.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-287c6c9d-9f0a-466b-a905-ee4312b6816c">Anleitung Herunterladen</a></div>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-large-font-size has-text-align-center has-custom-font-size wp-element-button" href="https://ko-fi.com/s/fe07b3ab9f"><strong><em><mark style="background-color:rgba(0, 0, 0, 0);color:#ffffff" class="has-inline-color">Hier kommst du zum Produkt Download</mark></em></strong></a></div>
</div><p>The post <a href="https://helpcenter.fun/szg-game-info/">SZG Game Info</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-game-info/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG Umfrage Erstellen</title>
		<link>https://helpcenter.fun/szg-umfrage-erstellen/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-umfrage-erstellen</link>
					<comments>https://helpcenter.fun/szg-umfrage-erstellen/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Sun, 29 Mar 2026 12:09:32 +0000</pubDate>
				<category><![CDATA[Download Anleitungen]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=1031</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du die Umfrage Erstellen Aktion korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-umfrage-erstellen/">SZG Umfrage Erstellen</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-f56f9fcf wp-block-group-is-layout-flex">
<h2 class="wp-block-heading">Zeitaufwand ~ 5 Min</h2>



<div class="wp-block-file"><a id="wp-block-file--media-a7226482-9c24-4da4-a98f-0322f2c84d46" href="https://helpcenter.fun/wp-content/uploads/2026/03/Umfrage-erstellen-Anleitung.html">Umfrage erstellen &#8211; Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/03/Umfrage-erstellen-Anleitung.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-a7226482-9c24-4da4-a98f-0322f2c84d46">Anleitung Herunterladen</a></div>
</div>



<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/03/Umfrage-erstellen-Anleitung.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<p class="wp-block-paragraph"></p>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-75"><a class="wp-block-button__link has-large-font-size has-text-align-center has-custom-font-size wp-element-button" href="https://ko-fi.com/I2I2M7JVM/shop"><strong><em>Mehr von SZG ?</em></strong></a></div>
</div>



<p class="wp-block-paragraph"></p><p>The post <a href="https://helpcenter.fun/szg-umfrage-erstellen/">SZG Umfrage Erstellen</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-umfrage-erstellen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG Cam Foto</title>
		<link>https://helpcenter.fun/szg-cam-foto/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-cam-foto</link>
					<comments>https://helpcenter.fun/szg-cam-foto/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Sat, 28 Mar 2026 12:58:14 +0000</pubDate>
				<category><![CDATA[Download Anleitungen]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=1009</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du das Cam Foto korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-cam-foto/">SZG Cam Foto</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="wp-block-file"><a id="wp-block-file--media-94b74259-8241-49d9-8120-13210cd1ca4c" href="https://helpcenter.fun/wp-content/uploads/2026/03/Cam-Foto-Anleitung-1.html">Cam Foto &#8211; Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/03/Cam-Foto-Anleitung-1.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-94b74259-8241-49d9-8120-13210cd1ca4c">Anleitung Herunterladen</a></div>



<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/03/Cam-Foto-Anleitung.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script><p>The post <a href="https://helpcenter.fun/szg-cam-foto/">SZG Cam Foto</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-cam-foto/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG Last One / Event Anzeige</title>
		<link>https://helpcenter.fun/szg-last-one-event-anzeige/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-last-one-event-anzeige</link>
					<comments>https://helpcenter.fun/szg-last-one-event-anzeige/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Thu, 26 Feb 2026 19:57:07 +0000</pubDate>
				<category><![CDATA[Download Anleitungen]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=737</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du die Last One / Event Anzeige korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-last-one-event-anzeige/">SZG Last One / Event Anzeige</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="wp-block-file" style="padding-top:0%;padding-right:0;padding-bottom:0%;padding-left:0"><a id="wp-block-file--media-d7f3be89-b067-4262-8d27-2f8063ac5b1f" href="https://helpcenter.fun/wp-content/uploads/2026/02/Last-One-Tracker.html">Last One Tracker-Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/02/Last-One-Tracker.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-d7f3be89-b067-4262-8d27-2f8063ac5b1f">Anleitung Herunterladen</a></div>



<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/02/Last-One-Tracker.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-100 is-style-fill"><a class="wp-block-button__link has-large-font-size has-text-align-center has-custom-font-size wp-element-button" href="https://ko-fi.com/I2I2M7JVM/shop"><strong><em>Mehr von SZG? Hier kommst du zu Mehr!</em></strong></a></div>
</div>



<p class="wp-block-paragraph"></p><p>The post <a href="https://helpcenter.fun/szg-last-one-event-anzeige/">SZG Last One / Event Anzeige</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-last-one-event-anzeige/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>NXM Notiz-System</title>
		<link>https://helpcenter.fun/nxm-notiz-system/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nxm-notiz-system</link>
					<comments>https://helpcenter.fun/nxm-notiz-system/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Sat, 21 Feb 2026 19:22:29 +0000</pubDate>
				<category><![CDATA[Download Anleitungen]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=706</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du den Notiz-System korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/nxm-notiz-system/">NXM Notiz-System</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="hc-embed">
  <iframe
    id="hcFrame"
     src="/wp-content/uploads/2026/02/Notiz-System.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div>



<div class="wp-block-file"><a id="wp-block-file--media-d84adf9b-80ab-4456-8864-3bbc7a8e44ab" href="https://helpcenter.fun/wp-content/uploads/2026/02/Notiz-System.html">Notiz-System-Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/02/Notiz-System.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-d84adf9b-80ab-4456-8864-3bbc7a8e44ab">Anleitung Herunterladen</a></div>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-large-font-size has-custom-font-size wp-element-button" href="https://ko-fi.com/nixmulti/shop"><strong><em>Mehr von NXM? Hier kommst du zu Mehr!</em></strong></a></div>
</div><p>The post <a href="https://helpcenter.fun/nxm-notiz-system/">NXM Notiz-System</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/nxm-notiz-system/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG Simple Chat Shoutout (Team fähig) Anleitung</title>
		<link>https://helpcenter.fun/szg-simple-chat-shoutout-team-faehig-anleitung/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-simple-chat-shoutout-team-faehig-anleitung</link>
					<comments>https://helpcenter.fun/szg-simple-chat-shoutout-team-faehig-anleitung/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Sat, 21 Feb 2026 18:08:29 +0000</pubDate>
				<category><![CDATA[Download Anleitungen]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=669</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du den Simple Chat Shoutout (Team fähig) korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-simple-chat-shoutout-team-faehig-anleitung/">SZG Simple Chat Shoutout (Team fähig) Anleitung</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/02/Simple-Chat-Shoutout.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<div class="wp-block-file"><a id="wp-block-file--media-32a4fa76-b5ba-4de8-8d8a-0713f9df7eb6" href="https://helpcenter.fun/wp-content/uploads/2026/02/Simple-Chat-Shoutout.html">Simple Chat Shoutout -Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/02/Simple-Chat-Shoutout.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-32a4fa76-b5ba-4de8-8d8a-0713f9df7eb6">Anleitung Herunterladen</a></div>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-large-font-size has-custom-font-size wp-element-button" href="https://ko-fi.com/s/dbb6720b21"><em><mark style="background-color:rgba(0, 0, 0, 0);color:#ffffff" class="has-inline-color"><strong>Mehr von SZG? Hier kommst du zu mehr!</strong></mark></em></a></div>
</div>



<p class="wp-block-paragraph"></p><p>The post <a href="https://helpcenter.fun/szg-simple-chat-shoutout-team-faehig-anleitung/">SZG Simple Chat Shoutout (Team fähig) Anleitung</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-simple-chat-shoutout-team-faehig-anleitung/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG Shoutout Player Anleitung</title>
		<link>https://helpcenter.fun/szg-shoutout-player-anleitung/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-shoutout-player-anleitung</link>
					<comments>https://helpcenter.fun/szg-shoutout-player-anleitung/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Sat, 21 Feb 2026 12:26:13 +0000</pubDate>
				<category><![CDATA[Streamer.bot Power Tools]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=630</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du den Shoutout Player korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-shoutout-player-anleitung/">SZG Shoutout Player Anleitung</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/02/Shoutout-Player.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<div class="wp-block-file"><a id="wp-block-file--media-08b78d4c-3d33-4b7b-b03e-71ff6fb04d83" href="https://helpcenter.fun/wp-content/uploads/2026/02/Shoutout-Player.html">Shoutout Player-Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/02/Shoutout-Player.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-08b78d4c-3d33-4b7b-b03e-71ff6fb04d83">Anleitung Herunterladen</a></div>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-100"><a class="wp-block-button__link has-large-font-size has-text-align-center has-custom-font-size wp-element-button" href="https://ko-fi.com/s/fe07b3ab9f"><strong><em><mark style="background-color:rgba(0, 0, 0, 0);color:#ffffff" class="has-inline-color">Hier kommst du zum Produkt Download</mark></em></strong></a></div>
</div>



<p class="wp-block-paragraph"></p><p>The post <a href="https://helpcenter.fun/szg-shoutout-player-anleitung/">SZG Shoutout Player Anleitung</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-shoutout-player-anleitung/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SZG LoveMeter Anleitung</title>
		<link>https://helpcenter.fun/szg-lovemeter-anleitung/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=szg-lovemeter-anleitung</link>
					<comments>https://helpcenter.fun/szg-lovemeter-anleitung/#respond</comments>
		
		<dc:creator><![CDATA[NixMulti]]></dc:creator>
		<pubDate>Mon, 16 Feb 2026 18:46:37 +0000</pubDate>
				<category><![CDATA[Streamer.bot Power Tools]]></category>
		<guid isPermaLink="false">https://helpcenter.fun/?p=388</guid>

					<description><![CDATA[<p>Diese Anleitung zeigt dir kompakt, wie du das LoveMeter korrekt installierst, mit OBS verbindest und über Streamer.bot steuerst – von den Voraussetzungen bis zum fertigen Setup.</p>
<p>The post <a href="https://helpcenter.fun/szg-lovemeter-anleitung/">SZG LoveMeter Anleitung</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="hc-embed">
  <iframe
    id="hcFrame"
    src="/wp-content/uploads/2026/02/LoveMeter.html"
    scrolling="no"
    style="width:100%; border:0; display:block;"
    onload="window.hcResizeIframe &#038;&#038; window.hcResizeIframe(this)"
  ></iframe>
</div>

<div id="hcLightbox">
  <span id="hcLightboxClose">&times;</span>
  <img decoding="async" id="hcLightboxImg" src="" alt="">
</div>

<style>
  .hc-embed { width: 100%; }
  .hc-embed iframe { width: 100%; display:block; border:0; }

  #hcLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
  }

  #hcLightbox.is-open {
    display: flex;
  }

  #hcLightboxImg {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

  #hcLightboxClose {
    position: fixed;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
  }
</style>

<script>
(function () {
  const EXTRA_PX = 4;

  function measure(doc) {
    const body = doc.body;
    const html = doc.documentElement;

    const h1 = html.getBoundingClientRect().height;
    const h2 = body.getBoundingClientRect().height;
    const sh = Math.max(body.scrollHeight, html.scrollHeight);

    const rectH = Math.max(h1, h2);

    if (rectH && rectH > 0) {
      if (sh > rectH * 1.3) return rectH;
      return Math.max(rectH, sh);
    }

    return sh;
  }

  function openLightbox(src) {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img || !src) return;

    img.src = src;
    box.classList.add("is-open");
    document.body.style.overflow = "hidden";
  }

  function closeLightbox() {
    const box = document.getElementById("hcLightbox");
    const img = document.getElementById("hcLightboxImg");

    if (!box || !img) return;

    box.classList.remove("is-open");
    img.src = "";
    document.body.style.overflow = "";
  }

  document.addEventListener("click", function (e) {
    if (
      e.target.id === "hcLightbox" ||
      e.target.id === "hcLightboxClose"
    ) {
      closeLightbox();
    }
  });

  document.addEventListener("keydown", function (e) {
    if (e.key === "Escape") closeLightbox();
  });

  window.hcResizeIframe = function (iframe) {
    function resize() {
      try {
        const doc = iframe.contentDocument || iframe.contentWindow.document;
        const h = Math.ceil(measure(doc));
        iframe.style.height = (h + EXTRA_PX) + "px";
      } catch (e) {
        iframe.style.height = "2500px";
      }
    }

    resize();
    setTimeout(resize, 150);
    setTimeout(resize, 500);
    setTimeout(resize, 1200);
    setTimeout(resize, 2500);

    if (!iframe._hcInterval) {
      let count = 0;
      iframe._hcInterval = setInterval(() => {
        resize();
        if (++count >= 8) {
          clearInterval(iframe._hcInterval);
          iframe._hcInterval = null;
        }
      }, 1000);
    }

    try {
      const doc = iframe.contentDocument || iframe.contentWindow.document;

      doc.addEventListener("click", function (e) {
        const link = e.target.closest("a");
        const img = e.target.closest("img");

        let imageUrl = null;

        if (
          link &&
          link.href &&
          /\.(jpg|jpeg|png|webp|gif|avif)(\?.*)?$/i.test(link.href)
        ) {
          imageUrl = link.href;
        } else if (img && img.src) {
          imageUrl = img.src;
        }

        if (!imageUrl) return;

        e.preventDefault();
        e.stopPropagation();
        e.stopImmediatePropagation();

        openLightbox(imageUrl);
      }, true);

    } catch (e) {}
  };
})();
</script>



<div class="wp-block-file"><a id="wp-block-file--media-6f8d1c50-a631-48da-a461-39c245d2f32d" href="https://helpcenter.fun/wp-content/uploads/2026/02/LoveMeter.html">LoveMeter-Anleitung Öffnen (Original)</a><a href="https://helpcenter.fun/wp-content/uploads/2026/02/LoveMeter.html" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-6f8d1c50-a631-48da-a461-39c245d2f32d">Anleitung Herunterladen</a></div>



<div class="wp-block-buttons alignfull is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex">
<div class="wp-block-button has-custom-width wp-block-button__width-100 is-style-fill"><a class="wp-block-button__link has-ast-global-color-8-color has-pale-pink-background-color has-text-color has-background has-link-color has-large-font-size has-custom-font-size wp-element-button" href="https://ko-fi.com/s/caf18c2e0d" style="border-style:none;border-width:0px;font-style:normal;font-weight:700">Hier kommst du zum Produkt Download</a></div>
</div>



<p class="wp-block-paragraph"></p><p>The post <a href="https://helpcenter.fun/szg-lovemeter-anleitung/">SZG LoveMeter Anleitung</a> first appeared on <a href="https://helpcenter.fun">HelpCenter</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://helpcenter.fun/szg-lovemeter-anleitung/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
