<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[GameServer-Install.de - Forum  - Gaming Tut`s ]]></title>
		<link>https://gameserver-install.de/</link>
		<description><![CDATA[GameServer-Install.de - Forum  - https://gameserver-install.de]]></description>
		<pubDate>Sat, 08 Aug 2026 05:36:03 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[🎮 Tutorial "Voice Hub" Integration WordPress...]]></title>
			<link>https://gameserver-install.de/thread-252.html</link>
			<pubDate>Sun, 11 Jan 2026 07:30:42 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://gameserver-install.de/member.php?action=profile&uid=1">rumpel</a>]]></dc:creator>
			<guid isPermaLink="false">https://gameserver-install.de/thread-252.html</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color"><iframe width="1100" height="680" src="//www.youtube.com/embed/KgP10ucfHzs" frameborder="0" allowfullscreen></iframe></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color">Dieses Tutorial beschreibt die vollständige Integration des animierten Voice-Hubs für TeamSpeak und Discord. Das Design ist vollständig reponsive (optimiert für Desktop, Tablet und Smartphone).</span><br />
<br />
<span style="color: #9DF9FF;" class="mycode_color"><span style="color: #9DF9FF;" class="mycode_color">Schritt 1: Das Design (Custom CSS)</span></span><br />
<br />
<span style="color: #ff30dc;" class="mycode_color">Dieser Teil steuert das Aussehen, den roten Neon-Glow und sorgt dafür, dass sich das Layout auf Handys automatisch anpasst.</span><br />
<br />
<span style="color: #ff30dc;" class="mycode_color">Gehe in dein WordPress-Backend zu Design -&gt; Customizer.</span><br />
<br />
<span style="color: #ff30dc;" class="mycode_color">Wähle den Punkt Zusätzliches CSS.</span><br />
<br />
<span style="color: #9df9ff;" class="mycode_color">Kopiere diesen gesamten Block hinein:</span></span><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* --- Voice Hub CSS (STABIL &amp; MOBIL) --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&amp;family=Rajdhani:wght@500;700&amp;display=swap');

:root {
    --dg-red: #e60000;
    --dg-dark: #121212;
    --dg-white: #ffffff;
}

/* Hauptcontainer */
.dg-wrapper {
    background: var(--dg-white);
    padding: 40px 20px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

/* Überschrift mit Glow-Animation */
.animated-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2.8rem;
    color: var(--dg-dark);
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.animated-title::after {
    content: 'VOICE HUB';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--dg-red);
    width: 100%;
    overflow: hidden;
    border-right: 3px solid var(--dg-red);
    white-space: nowrap;
    animation: typewriter 4s steps(10) infinite;
    filter: drop-shadow(0 0 10px var(--dg-red));
}

@keyframes typewriter {
    0%, 10% { width: 0; }
    40%, 60% { width: 100%; }
    90%, 100% { width: 0; }
}

/* Grid Layout */
.dg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* KARTEN-DESIGN &amp; HOVER (MOUSEOVER FIX) */
.dg-wrapper .dg-card {
    background: #ffffff !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 20px !important;
    padding: 40px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    flex: 1 1 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative !important;
    z-index: 1 !important;
}

/* DIESER TEIL STEUERT DAS MOUSEOVER */
.dg-wrapper .dg-card:hover {
    border-color: var(--dg-red) !important;
    transform: translateY(-12px) !important; /* Karte hebt sich ab */
    box-shadow: 0 20px 45px rgba(230, 0, 0, 0.15) !important;
    z-index: 10 !important;
}

/* Discord Viewer - Lang gezogen */
.discord-widget {
    width: 100%;
    height: 600px !important;
    margin-bottom: 25px;
    border-radius: 10px;
    border: none;
}

/* Pulsierende Icons */
.voice-icon-box {
    width: 80px;
    height: 80px;
    background: var(--dg-red);
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.voice-icon-box svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.voice-icon-box::before, .voice-icon-box::after {
    content: '';
    position: absolute;
    border: 2px solid var(--dg-red);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse-ring 2s linear infinite;
}
.voice-icon-box::after { animation-delay: 1s; }

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Button Design */
.dg-btn {
    display: inline-block;
    background: var(--dg-dark);
    color: white !important;
    text-decoration: none !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s !important;
    margin-top: auto;
}

.dg-wrapper .dg-card:hover .dg-btn {
    background: var(--dg-red) !important;
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
}

/* --- MOBILOPTIMIERUNG --- */
@media (max-width: 768px) {
    .animated-title { font-size: 1.8rem; margin-bottom: 40px; }
    .dg-grid { gap: 20px; }
    .dg-card { flex: 1 1 100% !important; padding: 30px 20px !important; }
    .discord-widget { height: 500px !important; }
    .dg-btn { width: 100%; }
}</code></div></div><br />
<br />
<span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Schritt <span style="color: #9DF9FF;" class="mycode_color">2: Die Einbindung (HTML)</span><br />
<br />
Füge diesen Code auf deiner WordPress-Seite in einen "Individuelles HTML" Block ein.</span></span><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;div class="dg-wrapper"&gt;
    &lt;h2 class="animated-title"&gt;VOICE HUB&lt;/h2&gt;

    &lt;div class="dg-grid"&gt;
        &lt;div class="dg-card"&gt;
            &lt;div class="voice-icon-box"&gt;
                &lt;svg viewBox="0 0 24 24"&gt;&lt;path d="M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z"/&gt;&lt;path d="M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"/&gt;&lt;/svg&gt;
            &lt;/div&gt;
            &lt;h3&gt;TEAMSPEAK&lt;/h3&gt;
            &lt;div style="margin-bottom: 20px;"&gt;
                User online:&lt;br&gt;
                &lt;div id="ts3viewer_1130845"&gt;&lt;/div&gt;
                &lt;script src="https://static.tsviewer.com/short_expire/js/ts3viewer_loader.js"&gt;&lt;/script&gt;
                &lt;script&gt;
                    var ts3v_url_1 = "https://www.tsviewer.com/ts3viewer.php?ID=1130845&amp;text=080808&amp;text_size=12&amp;text_family=1&amp;text_s_color=bd1e1e&amp;text_s_weight=bold&amp;iconset=default";
                    ts3v_display.init(ts3v_url_1, 1130845, 100);
                &lt;/script&gt;
            &lt;/div&gt;
            &lt;a href="ts3server://Domain oder ID" class="dg-btn"&gt;Beitreten&lt;/a&gt;
        &lt;/div&gt;

        &lt;div class="dg-card"&gt;
            &lt;div class="voice-icon-box"&gt;
                &lt;svg viewBox="0 0 24 24"&gt;&lt;path d="M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z"/&gt;&lt;/svg&gt;
            &lt;/div&gt;
            &lt;h3&gt;DISCORD&lt;/h3&gt;
            &lt;iframe class="discord-widget" src="https://discord.com/widget?id=Deien ID&amp;theme=dark" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"&gt;&lt;/iframe&gt;
            &lt;a href="https://discord.gg/Dein Einladungslink" class="dg-btn" target="_blank"&gt;Beitreten&lt;/a&gt;
        &lt;/div&gt;
    &lt;/div&gt;

    &lt;p style="margin-top: 40px; color: #888; font-size: 0.9rem;"&gt;
        Powered by GameServer-Install.de by rumpel
    &lt;/p&gt;
&lt;/div&gt;</code></div></div><br />
<span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><span style="color: #9DF9FF;" class="mycode_color">💡 Zusammenfassung der Funktionen:</span><br />
</span></span><ul class="mycode_list"><li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Schreibmaschinen-Animation: Der Titel "VOICE HUB" tippt sich selbst und leuchtet rot.</span></span><br />
</li>
<li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Puls-Icons: Die Icons haben animierte Ringe, die Aufmerksamkeit erzeugen.</span></span><br />
</li>
<li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Interaktive Karten: Beim Drüberfahren mit der Maus (Hover) hebt sich die Karte leicht an.</span></span><br />
</li>
<li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Mobil-Check: Auf Smartphones wird die Schrift kleiner und die Karten stapeln sich sauber untereinander, um horizontales Scrollen zu vermeiden.</span></span><br />
</li>
</ul>
<span style="font-weight: bold;" class="mycode_b"><br />
<br />
<span style="color: #9df9ff;" class="mycode_color">Damit hast du alles perfekt dokumentiert. Soll ich dir noch zeigen, wie du die TeamSpeak-Useranzahl farblich hervorheben kannst?</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Lg</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">rumpel <img src="https://gameserver-install.de/images/smilies/wink.png" alt="Wink" title="Wink" class="smilie smilie_2" /> <img src="https://gameserver-install.de/images/smilies/at.png" alt="At" title="At" class="smilie smilie_9" /></span></span>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color"><iframe width="1100" height="680" src="//www.youtube.com/embed/KgP10ucfHzs" frameborder="0" allowfullscreen></iframe></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color">Dieses Tutorial beschreibt die vollständige Integration des animierten Voice-Hubs für TeamSpeak und Discord. Das Design ist vollständig reponsive (optimiert für Desktop, Tablet und Smartphone).</span><br />
<br />
<span style="color: #9DF9FF;" class="mycode_color"><span style="color: #9DF9FF;" class="mycode_color">Schritt 1: Das Design (Custom CSS)</span></span><br />
<br />
<span style="color: #ff30dc;" class="mycode_color">Dieser Teil steuert das Aussehen, den roten Neon-Glow und sorgt dafür, dass sich das Layout auf Handys automatisch anpasst.</span><br />
<br />
<span style="color: #ff30dc;" class="mycode_color">Gehe in dein WordPress-Backend zu Design -&gt; Customizer.</span><br />
<br />
<span style="color: #ff30dc;" class="mycode_color">Wähle den Punkt Zusätzliches CSS.</span><br />
<br />
<span style="color: #9df9ff;" class="mycode_color">Kopiere diesen gesamten Block hinein:</span></span><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* --- Voice Hub CSS (STABIL &amp; MOBIL) --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&amp;family=Rajdhani:wght@500;700&amp;display=swap');

:root {
    --dg-red: #e60000;
    --dg-dark: #121212;
    --dg-white: #ffffff;
}

/* Hauptcontainer */
.dg-wrapper {
    background: var(--dg-white);
    padding: 40px 20px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

/* Überschrift mit Glow-Animation */
.animated-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 2.8rem;
    color: var(--dg-dark);
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.animated-title::after {
    content: 'VOICE HUB';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--dg-red);
    width: 100%;
    overflow: hidden;
    border-right: 3px solid var(--dg-red);
    white-space: nowrap;
    animation: typewriter 4s steps(10) infinite;
    filter: drop-shadow(0 0 10px var(--dg-red));
}

@keyframes typewriter {
    0%, 10% { width: 0; }
    40%, 60% { width: 100%; }
    90%, 100% { width: 0; }
}

/* Grid Layout */
.dg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* KARTEN-DESIGN &amp; HOVER (MOUSEOVER FIX) */
.dg-wrapper .dg-card {
    background: #ffffff !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 20px !important;
    padding: 40px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    flex: 1 1 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative !important;
    z-index: 1 !important;
}

/* DIESER TEIL STEUERT DAS MOUSEOVER */
.dg-wrapper .dg-card:hover {
    border-color: var(--dg-red) !important;
    transform: translateY(-12px) !important; /* Karte hebt sich ab */
    box-shadow: 0 20px 45px rgba(230, 0, 0, 0.15) !important;
    z-index: 10 !important;
}

/* Discord Viewer - Lang gezogen */
.discord-widget {
    width: 100%;
    height: 600px !important;
    margin-bottom: 25px;
    border-radius: 10px;
    border: none;
}

/* Pulsierende Icons */
.voice-icon-box {
    width: 80px;
    height: 80px;
    background: var(--dg-red);
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.voice-icon-box svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.voice-icon-box::before, .voice-icon-box::after {
    content: '';
    position: absolute;
    border: 2px solid var(--dg-red);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse-ring 2s linear infinite;
}
.voice-icon-box::after { animation-delay: 1s; }

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Button Design */
.dg-btn {
    display: inline-block;
    background: var(--dg-dark);
    color: white !important;
    text-decoration: none !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s !important;
    margin-top: auto;
}

.dg-wrapper .dg-card:hover .dg-btn {
    background: var(--dg-red) !important;
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
}

/* --- MOBILOPTIMIERUNG --- */
@media (max-width: 768px) {
    .animated-title { font-size: 1.8rem; margin-bottom: 40px; }
    .dg-grid { gap: 20px; }
    .dg-card { flex: 1 1 100% !important; padding: 30px 20px !important; }
    .discord-widget { height: 500px !important; }
    .dg-btn { width: 100%; }
}</code></div></div><br />
<br />
<span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Schritt <span style="color: #9DF9FF;" class="mycode_color">2: Die Einbindung (HTML)</span><br />
<br />
Füge diesen Code auf deiner WordPress-Seite in einen "Individuelles HTML" Block ein.</span></span><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;div class="dg-wrapper"&gt;
    &lt;h2 class="animated-title"&gt;VOICE HUB&lt;/h2&gt;

    &lt;div class="dg-grid"&gt;
        &lt;div class="dg-card"&gt;
            &lt;div class="voice-icon-box"&gt;
                &lt;svg viewBox="0 0 24 24"&gt;&lt;path d="M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z"/&gt;&lt;path d="M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z"/&gt;&lt;/svg&gt;
            &lt;/div&gt;
            &lt;h3&gt;TEAMSPEAK&lt;/h3&gt;
            &lt;div style="margin-bottom: 20px;"&gt;
                User online:&lt;br&gt;
                &lt;div id="ts3viewer_1130845"&gt;&lt;/div&gt;
                &lt;script src="https://static.tsviewer.com/short_expire/js/ts3viewer_loader.js"&gt;&lt;/script&gt;
                &lt;script&gt;
                    var ts3v_url_1 = "https://www.tsviewer.com/ts3viewer.php?ID=1130845&amp;text=080808&amp;text_size=12&amp;text_family=1&amp;text_s_color=bd1e1e&amp;text_s_weight=bold&amp;iconset=default";
                    ts3v_display.init(ts3v_url_1, 1130845, 100);
                &lt;/script&gt;
            &lt;/div&gt;
            &lt;a href="ts3server://Domain oder ID" class="dg-btn"&gt;Beitreten&lt;/a&gt;
        &lt;/div&gt;

        &lt;div class="dg-card"&gt;
            &lt;div class="voice-icon-box"&gt;
                &lt;svg viewBox="0 0 24 24"&gt;&lt;path d="M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z"/&gt;&lt;/svg&gt;
            &lt;/div&gt;
            &lt;h3&gt;DISCORD&lt;/h3&gt;
            &lt;iframe class="discord-widget" src="https://discord.com/widget?id=Deien ID&amp;theme=dark" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"&gt;&lt;/iframe&gt;
            &lt;a href="https://discord.gg/Dein Einladungslink" class="dg-btn" target="_blank"&gt;Beitreten&lt;/a&gt;
        &lt;/div&gt;
    &lt;/div&gt;

    &lt;p style="margin-top: 40px; color: #888; font-size: 0.9rem;"&gt;
        Powered by GameServer-Install.de by rumpel
    &lt;/p&gt;
&lt;/div&gt;</code></div></div><br />
<span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b"><span style="color: #9DF9FF;" class="mycode_color">💡 Zusammenfassung der Funktionen:</span><br />
</span></span><ul class="mycode_list"><li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Schreibmaschinen-Animation: Der Titel "VOICE HUB" tippt sich selbst und leuchtet rot.</span></span><br />
</li>
<li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Puls-Icons: Die Icons haben animierte Ringe, die Aufmerksamkeit erzeugen.</span></span><br />
</li>
<li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Interaktive Karten: Beim Drüberfahren mit der Maus (Hover) hebt sich die Karte leicht an.</span></span><br />
</li>
<li><span style="color: #FF30DC;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Mobil-Check: Auf Smartphones wird die Schrift kleiner und die Karten stapeln sich sauber untereinander, um horizontales Scrollen zu vermeiden.</span></span><br />
</li>
</ul>
<span style="font-weight: bold;" class="mycode_b"><br />
<br />
<span style="color: #9df9ff;" class="mycode_color">Damit hast du alles perfekt dokumentiert. Soll ich dir noch zeigen, wie du die TeamSpeak-Useranzahl farblich hervorheben kannst?</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Lg</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">rumpel <img src="https://gameserver-install.de/images/smilies/wink.png" alt="Wink" title="Wink" class="smilie smilie_2" /> <img src="https://gameserver-install.de/images/smilies/at.png" alt="At" title="At" class="smilie smilie_9" /></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Battlefield 6: Fix für EA App behebt Abstürze auf der Map „Eastwood]]></title>
			<link>https://gameserver-install.de/thread-237.html</link>
			<pubDate>Wed, 19 Nov 2025 21:36:52 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://gameserver-install.de/member.php?action=profile&uid=1">rumpel</a>]]></dc:creator>
			<guid isPermaLink="false">https://gameserver-install.de/thread-237.html</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><iframe width="1100" height="680" src="//www.youtube.com/embed/KNW47snoMzc" frameborder="0" allowfullscreen></iframe></div>
<div style="text-align: center;" class="mycode_align"><div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color">Viel Spaß beim Spielen...</span></span></div>
<div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color">Lg rumpel</span></span></div>
</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><iframe width="1100" height="680" src="//www.youtube.com/embed/KNW47snoMzc" frameborder="0" allowfullscreen></iframe></div>
<div style="text-align: center;" class="mycode_align"><div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color">Viel Spaß beim Spielen...</span></span></div>
<div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color">Lg rumpel</span></span></div>
</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dawn of Defiance - Ressourcen finden kurz beschrieben... ....]]></title>
			<link>https://gameserver-install.de/thread-163.html</link>
			<pubDate>Sun, 18 Aug 2024 08:42:45 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://gameserver-install.de/member.php?action=profile&uid=1">rumpel</a>]]></dc:creator>
			<guid isPermaLink="false">https://gameserver-install.de/thread-163.html</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><img src="https://gameserver-install.de/bilder/dod.png" loading="lazy"  alt="[Bild: dod.png]" class="mycode_img" /></span></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Ressourcen in Dawn of Defiance finden</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #cf2be7;" class="mycode_color">In Dawn of Defiance müsst ihr als Spieler verschiedene Ressourcen sammeln, um zu überleben und im Spiel weiter zu kommen .  Wo ihr diese findet  erklären wir euch in wenigen kurzen Sätzen.</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #cf2be7;" class="mycode_color">Fangen wir auf der Starterinsel an dort könnt ihr Brombeeren, Himbeeren, Spartium, Flachs und andere Ressourcen finden.. Kupfer findet ihr überall auf der Karte , vorallem nördlich in der Wüste. Zinn findet ihr im Dunklen Wald. Eisenerz kommt in den Bergen vor , vorallem in den Gebieten Linkas und Pindus. </span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #cf2be7;" class="mycode_color">Gold ist sehr selten zu finden ich selber habe es an den großen Torbogen gefunden.</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Weitere Ressourcen wie Ton, </span></span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font">Harz, Schilf und Muscheln findet ihr an Wasserquellen. Ton findet ihr in der Wüste oder in der Nähe von Wasser . Harz bekommt ihr von bestimmten Bäumen wenn ihr dessen Stamm zerhackt. Dunkles und Hartes Harz findet  ihr im dunklen Wald und am Wüstenrand. Schilf kommt häufig in der Nähe von Flüssen vor. Muscheln, sind auf kleinen Inseln im Nordosten zu finden.</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Jagd erleichtern</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">Wir empfehlen Pfeil und Bogen zum Jagen vor allem Kopfschüsse erhöhen die Chance auf bessere Beute. Das Verwenden von Lockhölzern erleichtert euch die Jagd durch das anlocken der Tiere. Stern-Tiere sollten für den Metzgerblock aufgehoben werden, da sie für die Jäger-Meisterschaft benötigt werden.</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">Weiter Tipps folgen in kürze...</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">Ps. hier noch ein kleines Info Video vom Release Tag...</span></span></span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color"><iframe width="1100" height="680" src="//www.youtube.com/embed/dG47sGYy85M" frameborder="0" allowfullscreen></iframe></span></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Dawn of Defiance</span><span style="color: #ff30dc;" class="mycode_color"> - Ressourcen finden kurz und bündig... Part 2 </span></span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color"><iframe width="1100" height="680" src="//www.youtube.com/embed/0r1PGb9enAw" frameborder="0" allowfullscreen></iframe></span></span></div>
<br />
<br />
<div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Ps</span><span style="color: #ff30dc;" class="mycode_color"> . Wir empfehlen euch auch immer genügend gegrilltes Fleisch dabei zu haben. Den durch das zu euch nehmen des Fleisches erhöhen sich eure Stamina und Lebensbalken, dadurch habt ihr mehr Energie und Durchhalte vermögen.</span></span></div>
<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color"><img src="https://gameserver-install.de/bilder/map.jpg" loading="lazy"  width="1200" height="800" alt="[Bild: map.jpg]" class="mycode_img" /></span></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Iron</span><span style="color: #ff30dc;" class="mycode_color"> findet ihr auch bei Smolikas Mountains ungefär beim</span><span style="color: #9df9ff;" class="mycode_color"> I</span><span style="color: #ff30dc;" class="mycode_color"> von Smolikas.</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">LG</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">rumpel  <img src="https://gameserver-install.de/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> <img src="https://gameserver-install.de/images/smilies/at.png" alt="At" title="At" class="smilie smilie_9" /></span></span></span>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><img src="https://gameserver-install.de/bilder/dod.png" loading="lazy"  alt="[Bild: dod.png]" class="mycode_img" /></span></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Ressourcen in Dawn of Defiance finden</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #cf2be7;" class="mycode_color">In Dawn of Defiance müsst ihr als Spieler verschiedene Ressourcen sammeln, um zu überleben und im Spiel weiter zu kommen .  Wo ihr diese findet  erklären wir euch in wenigen kurzen Sätzen.</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #cf2be7;" class="mycode_color">Fangen wir auf der Starterinsel an dort könnt ihr Brombeeren, Himbeeren, Spartium, Flachs und andere Ressourcen finden.. Kupfer findet ihr überall auf der Karte , vorallem nördlich in der Wüste. Zinn findet ihr im Dunklen Wald. Eisenerz kommt in den Bergen vor , vorallem in den Gebieten Linkas und Pindus. </span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #cf2be7;" class="mycode_color">Gold ist sehr selten zu finden ich selber habe es an den großen Torbogen gefunden.</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Weitere Ressourcen wie Ton, </span></span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font">Harz, Schilf und Muscheln findet ihr an Wasserquellen. Ton findet ihr in der Wüste oder in der Nähe von Wasser . Harz bekommt ihr von bestimmten Bäumen wenn ihr dessen Stamm zerhackt. Dunkles und Hartes Harz findet  ihr im dunklen Wald und am Wüstenrand. Schilf kommt häufig in der Nähe von Flüssen vor. Muscheln, sind auf kleinen Inseln im Nordosten zu finden.</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color"><span style="font-size: large;" class="mycode_size">Jagd erleichtern</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">Wir empfehlen Pfeil und Bogen zum Jagen vor allem Kopfschüsse erhöhen die Chance auf bessere Beute. Das Verwenden von Lockhölzern erleichtert euch die Jagd durch das anlocken der Tiere. Stern-Tiere sollten für den Metzgerblock aufgehoben werden, da sie für die Jäger-Meisterschaft benötigt werden.</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">Weiter Tipps folgen in kürze...</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">Ps. hier noch ein kleines Info Video vom Release Tag...</span></span></span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color"><iframe width="1100" height="680" src="//www.youtube.com/embed/dG47sGYy85M" frameborder="0" allowfullscreen></iframe></span></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Dawn of Defiance</span><span style="color: #ff30dc;" class="mycode_color"> - Ressourcen finden kurz und bündig... Part 2 </span></span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #ff30dc;" class="mycode_color"><iframe width="1100" height="680" src="//www.youtube.com/embed/0r1PGb9enAw" frameborder="0" allowfullscreen></iframe></span></span></div>
<br />
<br />
<div style="text-align: left;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Ps</span><span style="color: #ff30dc;" class="mycode_color"> . Wir empfehlen euch auch immer genügend gegrilltes Fleisch dabei zu haben. Den durch das zu euch nehmen des Fleisches erhöhen sich eure Stamina und Lebensbalken, dadurch habt ihr mehr Energie und Durchhalte vermögen.</span></span></div>
<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color"><img src="https://gameserver-install.de/bilder/map.jpg" loading="lazy"  width="1200" height="800" alt="[Bild: map.jpg]" class="mycode_img" /></span></span></span></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="color: #9df9ff;" class="mycode_color">Iron</span><span style="color: #ff30dc;" class="mycode_color"> findet ihr auch bei Smolikas Mountains ungefär beim</span><span style="color: #9df9ff;" class="mycode_color"> I</span><span style="color: #ff30dc;" class="mycode_color"> von Smolikas.</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">LG</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-family: Arial, Tahoma, Helvetica, sans-serif;" class="mycode_font"><span style="color: #ff30dc;" class="mycode_color">rumpel  <img src="https://gameserver-install.de/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /> <img src="https://gameserver-install.de/images/smilies/at.png" alt="At" title="At" class="smilie smilie_9" /></span></span></span>]]></content:encoded>
		</item>
	</channel>
</rss>