<?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[Hero Fighter Empire - Forums - All Forums]]></title>
		<link>https://hf-empire.com/forum/</link>
		<description><![CDATA[Hero Fighter Empire - Forums - https://hf-empire.com/forum]]></description>
		<pubDate>Fri, 15 May 2026 04:03:09 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[AI Art]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=486</link>
			<pubDate>Sat, 27 Dec 2025 15:28:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=1">MangaD</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=486</guid>
			<description><![CDATA[<img src="https://i.ibb.co/tM9qVprJ/Chat-GPT-Image-Dec-24-2025-03-14-50-PM.png" loading="lazy"  alt="[Image: Chat-GPT-Image-Dec-24-2025-03-14-50-PM.png]" class="mycode_img" /><br />
<a href="https://ibb.co/wNfS5hmz" target="_blank" rel="noopener" class="mycode_url">https://ibb.co/wNfS5hmz</a><br />
<br />
<br />
<img src="https://i.ibb.co/dsgp6ztN/Chat-GPT-Image-Dec-31-2025-06-01-56-PM.png" loading="lazy"  alt="[Image: Chat-GPT-Image-Dec-31-2025-06-01-56-PM.png]" class="mycode_img" /><br />
<a href="https://ibb.co/SDrm09ck" target="_blank" rel="noopener" class="mycode_url">https://ibb.co/SDrm09ck</a>]]></description>
			<content:encoded><![CDATA[<img src="https://i.ibb.co/tM9qVprJ/Chat-GPT-Image-Dec-24-2025-03-14-50-PM.png" loading="lazy"  alt="[Image: Chat-GPT-Image-Dec-24-2025-03-14-50-PM.png]" class="mycode_img" /><br />
<a href="https://ibb.co/wNfS5hmz" target="_blank" rel="noopener" class="mycode_url">https://ibb.co/wNfS5hmz</a><br />
<br />
<br />
<img src="https://i.ibb.co/dsgp6ztN/Chat-GPT-Image-Dec-31-2025-06-01-56-PM.png" loading="lazy"  alt="[Image: Chat-GPT-Image-Dec-31-2025-06-01-56-PM.png]" class="mycode_img" /><br />
<a href="https://ibb.co/SDrm09ck" target="_blank" rel="noopener" class="mycode_url">https://ibb.co/SDrm09ck</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A practical guide to Story Editing in using Hero Fighter Workshop]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=485</link>
			<pubDate>Sun, 07 Dec 2025 11:08:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=92">nikhil</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=485</guid>
			<description><![CDATA[Hey everyone, Nikhil here.<br />
<br />
I know a lot of you are trying to mod your own campaigns and getting stuck because the file structure is... unique. It’s basically the game's internal memory dumped into an XML format, so it’s not exactly user-friendly.<br />
<br />
I’m going to break down Stage 1 (story01) to explain what’s actually happening under the hood. If you can understand this file, you can pretty much build anything.<br />
<br />
The Basics (The Tags)<br />
Before we look at the code, here is a quick cheat sheet for the tags you’ll see most often. The engine reads these sequentially.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;bar&gt;</code></pre>This represents a "Section" or a "Scene" of the stage. The game plays one bar at a time. It won't move to the next bar until the current one is finished (usually when all enemies are dead or a cutscene ends).<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;drama&gt;</code></pre> Triggers "Cutscene Mode." It disables player controls and executes a script.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;obj&gt;</code></pre> Gameplay objects. This is how you spawn enemies, items, or allies during actual combat.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;a&gt;</code></pre> Action. Used inside cutscenes to make things happen (move, talk, animate).<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;c&gt;</code></pre> Command State. This overrides the AI.<br />
<ul class="mycode_list"><li>-2: Stop/Idle.<br />
</li>
<li>-3: Move to specific coordinates.<br />
</li>
</ul>
<hr class="mycode_hr" />
1. Stage Setup<br />
At the top of the file, you’ll see the first &lt;bar&gt;. This initializes the map.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">XML

&lt;bar&gt;
    &lt;bg&gt;
        &lt;bgid&gt;story01&lt;/bgid&gt; 
        &lt;x&gt;1700&lt;/x&gt;
        &lt;z&gt;800&lt;/z&gt;
    &lt;/bg&gt;
    &lt;left&gt;0&lt;/left&gt;
    &lt;right&gt;9000&lt;/right&gt;
    &lt;effect&gt;showTitle&lt;/effect&gt;
&lt;/bar&gt;</code></pre><br />
Important: The x and z here are for the camera, not the player. If you set these to 0, the camera might start off the map (since the map art usually starts around x=1000 or x=2000).<br />
<br />
2. Cutscene Logic (&lt;drama&gt;)<br />
This is the part that usually trips people up. The nesting here is strict.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">XML

&lt;drama&gt;
    &lt;state&gt;start&lt;/state&gt;
    
    &lt;o&gt;
        &lt;s&gt;drew&lt;/s&gt;
        &lt;id&gt;drew&lt;/id&gt;
        &lt;x&gt;390&lt;/x&gt; &lt;z&gt;980&lt;/z&gt;
    &lt;/o&gt;

    &lt;a&gt;
        &lt;a&gt;
            &lt;id&gt;z_villager01&lt;/id&gt;
            &lt;ac&gt;drama_lie2&lt;/ac&gt; 
        &lt;/a&gt;
    &lt;/a&gt;
    
    &lt;a&gt;
        &lt;t&gt;
            &lt;s&gt;lucas&lt;/s&gt;
            &lt;en&gt;It's been over a month now...&lt;/en&gt;
            &lt;i&gt;10&lt;/i&gt; 
        &lt;/t&gt;
    &lt;/a&gt;
&lt;/drama&gt;</code></pre><br />
Two things to note here:<br />
<br />
Nesting: The outer &lt;a&gt; tags define the sequence. The inner tags define what happens during that step. If you put multiple actions inside one outer &lt;a&gt;, they happen simultaneously.<br />
<br />
&lt;s&gt; vs &lt;id&gt;: &lt;s&gt; is just a nickname for the script to use. &lt;id&gt; is the actual character being loaded.<br />
<br />
3. Combat Spawns (&lt;obj&gt;)<br />
Once the &lt;drama&gt; block ends, we usually switch to gameplay.<br />
<br />
XML<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;bar&gt;
    &lt;left&gt;0&lt;/left&gt; &lt;right&gt;6000&lt;/right&gt;
    
    &lt;obj&gt;
        &lt;id&gt;z_bandit01&lt;/id&gt;
        &lt;times&gt;2&lt;/times&gt;
        &lt;ratio&gt;1&lt;/ratio&gt;
    &lt;/obj&gt;
    
    &lt;obj&gt;
        &lt;id&gt;z_villager01&lt;/id&gt;
        &lt;times&gt;10&lt;/times&gt;
        &lt;toHire/&gt;
        &lt;x&gt;1400&lt;/x&gt;
        &lt;z&gt;800&lt;/z&gt;
    &lt;/obj&gt;
&lt;/bar&gt;</code></pre><br />
If you use &lt;toHire/&gt;, make sure you specify the x and z coordinates. If you don't, they default to 0,0, and you'll never see them.<br />
<br />
4. Movement Logic (The &lt;c&gt; tag)<br />
In the ending cutscene of Stage 1, you see Giggs running away. That uses the &lt;c&gt;-3 command.<br />
<br />
XML<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;o&gt;
    &lt;id&gt;giggs&lt;/id&gt;
    &lt;c&gt;-3&lt;/c&gt;
    &lt;x&gt;22000&lt;/x&gt;
    &lt;z&gt;810&lt;/z&gt;
&lt;/o&gt;</code></pre><br />
Common Validator Error: If you set &lt;c&gt;-3 but forget the &lt;x&gt; or &lt;z&gt;, the game crashes because the character tries to run to a null location.<br />
<br />
Common Pitfalls<br />
Here are the most common mistakes people make:<br />
<br />
The &lt;hide&gt; tags: You’ll see these at the start of the file wrapping z_infantry01. This is commented-out code. If you edit anything inside &lt;hide&gt;...&lt;/hide&gt;, it won't show up in the game.<br />
<br />
Deleting Line IDs (&lt;i&gt;): Inside the dialogue &lt;t&gt; tags, there is a number like &lt;i&gt;10&lt;/i&gt;. Do not delete this. The game uses it for syncing and lookups.<br />
<br />
Boss Groups: If you look at the Giggs fight, his minions have &lt;bossGrp&gt;1&lt;/bossGrp&gt;. This links them to Giggs' HP bar. If you don't link them, the stage might not end correctly when the boss dies.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://hf-empire.com/forum/images/attachtypes/xml.gif" title="XML File" border="0" alt=".xml" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=168" target="_blank" title="">219 - Data.Global_story01_xml.xml</a> (Size: 22.64 KB / Downloads: 147)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hey everyone, Nikhil here.<br />
<br />
I know a lot of you are trying to mod your own campaigns and getting stuck because the file structure is... unique. It’s basically the game's internal memory dumped into an XML format, so it’s not exactly user-friendly.<br />
<br />
I’m going to break down Stage 1 (story01) to explain what’s actually happening under the hood. If you can understand this file, you can pretty much build anything.<br />
<br />
The Basics (The Tags)<br />
Before we look at the code, here is a quick cheat sheet for the tags you’ll see most often. The engine reads these sequentially.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;bar&gt;</code></pre>This represents a "Section" or a "Scene" of the stage. The game plays one bar at a time. It won't move to the next bar until the current one is finished (usually when all enemies are dead or a cutscene ends).<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;drama&gt;</code></pre> Triggers "Cutscene Mode." It disables player controls and executes a script.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;obj&gt;</code></pre> Gameplay objects. This is how you spawn enemies, items, or allies during actual combat.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;a&gt;</code></pre> Action. Used inside cutscenes to make things happen (move, talk, animate).<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;c&gt;</code></pre> Command State. This overrides the AI.<br />
<ul class="mycode_list"><li>-2: Stop/Idle.<br />
</li>
<li>-3: Move to specific coordinates.<br />
</li>
</ul>
<hr class="mycode_hr" />
1. Stage Setup<br />
At the top of the file, you’ll see the first &lt;bar&gt;. This initializes the map.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">XML

&lt;bar&gt;
    &lt;bg&gt;
        &lt;bgid&gt;story01&lt;/bgid&gt; 
        &lt;x&gt;1700&lt;/x&gt;
        &lt;z&gt;800&lt;/z&gt;
    &lt;/bg&gt;
    &lt;left&gt;0&lt;/left&gt;
    &lt;right&gt;9000&lt;/right&gt;
    &lt;effect&gt;showTitle&lt;/effect&gt;
&lt;/bar&gt;</code></pre><br />
Important: The x and z here are for the camera, not the player. If you set these to 0, the camera might start off the map (since the map art usually starts around x=1000 or x=2000).<br />
<br />
2. Cutscene Logic (&lt;drama&gt;)<br />
This is the part that usually trips people up. The nesting here is strict.<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">XML

&lt;drama&gt;
    &lt;state&gt;start&lt;/state&gt;
    
    &lt;o&gt;
        &lt;s&gt;drew&lt;/s&gt;
        &lt;id&gt;drew&lt;/id&gt;
        &lt;x&gt;390&lt;/x&gt; &lt;z&gt;980&lt;/z&gt;
    &lt;/o&gt;

    &lt;a&gt;
        &lt;a&gt;
            &lt;id&gt;z_villager01&lt;/id&gt;
            &lt;ac&gt;drama_lie2&lt;/ac&gt; 
        &lt;/a&gt;
    &lt;/a&gt;
    
    &lt;a&gt;
        &lt;t&gt;
            &lt;s&gt;lucas&lt;/s&gt;
            &lt;en&gt;It's been over a month now...&lt;/en&gt;
            &lt;i&gt;10&lt;/i&gt; 
        &lt;/t&gt;
    &lt;/a&gt;
&lt;/drama&gt;</code></pre><br />
Two things to note here:<br />
<br />
Nesting: The outer &lt;a&gt; tags define the sequence. The inner tags define what happens during that step. If you put multiple actions inside one outer &lt;a&gt;, they happen simultaneously.<br />
<br />
&lt;s&gt; vs &lt;id&gt;: &lt;s&gt; is just a nickname for the script to use. &lt;id&gt; is the actual character being loaded.<br />
<br />
3. Combat Spawns (&lt;obj&gt;)<br />
Once the &lt;drama&gt; block ends, we usually switch to gameplay.<br />
<br />
XML<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;bar&gt;
    &lt;left&gt;0&lt;/left&gt; &lt;right&gt;6000&lt;/right&gt;
    
    &lt;obj&gt;
        &lt;id&gt;z_bandit01&lt;/id&gt;
        &lt;times&gt;2&lt;/times&gt;
        &lt;ratio&gt;1&lt;/ratio&gt;
    &lt;/obj&gt;
    
    &lt;obj&gt;
        &lt;id&gt;z_villager01&lt;/id&gt;
        &lt;times&gt;10&lt;/times&gt;
        &lt;toHire/&gt;
        &lt;x&gt;1400&lt;/x&gt;
        &lt;z&gt;800&lt;/z&gt;
    &lt;/obj&gt;
&lt;/bar&gt;</code></pre><br />
If you use &lt;toHire/&gt;, make sure you specify the x and z coordinates. If you don't, they default to 0,0, and you'll never see them.<br />
<br />
4. Movement Logic (The &lt;c&gt; tag)<br />
In the ending cutscene of Stage 1, you see Giggs running away. That uses the &lt;c&gt;-3 command.<br />
<br />
XML<br />
<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;o&gt;
    &lt;id&gt;giggs&lt;/id&gt;
    &lt;c&gt;-3&lt;/c&gt;
    &lt;x&gt;22000&lt;/x&gt;
    &lt;z&gt;810&lt;/z&gt;
&lt;/o&gt;</code></pre><br />
Common Validator Error: If you set &lt;c&gt;-3 but forget the &lt;x&gt; or &lt;z&gt;, the game crashes because the character tries to run to a null location.<br />
<br />
Common Pitfalls<br />
Here are the most common mistakes people make:<br />
<br />
The &lt;hide&gt; tags: You’ll see these at the start of the file wrapping z_infantry01. This is commented-out code. If you edit anything inside &lt;hide&gt;...&lt;/hide&gt;, it won't show up in the game.<br />
<br />
Deleting Line IDs (&lt;i&gt;): Inside the dialogue &lt;t&gt; tags, there is a number like &lt;i&gt;10&lt;/i&gt;. Do not delete this. The game uses it for syncing and lookups.<br />
<br />
Boss Groups: If you look at the Giggs fight, his minions have &lt;bossGrp&gt;1&lt;/bossGrp&gt;. This links them to Giggs' HP bar. If you don't link them, the stage might not end correctly when the boss dies.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://hf-empire.com/forum/images/attachtypes/xml.gif" title="XML File" border="0" alt=".xml" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=168" target="_blank" title="">219 - Data.Global_story01_xml.xml</a> (Size: 22.64 KB / Downloads: 147)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HF Equilibrium Trevor v1.3.8]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=481</link>
			<pubDate>Thu, 12 Jun 2025 09:46:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=522">不饿白帝BEBD</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=481</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HERO FIGHTER EQUILIBRIUM. Trevor v1.3.8</span></span></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align">
<img src="https://i.imgur.com/aCWGzGy.png" loading="lazy"  alt="[Image: aCWGzGy.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/ZD1hyx8.png" loading="lazy"  alt="[Image: ZD1hyx8.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/mHNw2Rg.png" loading="lazy"  alt="[Image: mHNw2Rg.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/NXVrs3A.png" loading="lazy"  alt="[Image: NXVrs3A.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Version Main Planner: Trevor (追风)</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Lead Developer: Xemy (细米)</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Additional Contributions BEBD (不饿白帝)</span></span></div>
<br />
<br />
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Hero Fighter New Balance Edition (HFE·T) Now Available for Download</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">The latest release, version <code class="inline-code">1.3.8</code>, is now officially open for download. This version is offered in two variants: the Standard Edition and the Skin Edition.</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Several fan-favorite characters — including Titao, Sinan, Yagami, Saws, and Livermore — make their return, bringing the total number of playable characters to 25. Extensive balance adjustments have been implemented based on the original version to ensure a more refined gameplay experience. All characters have undergone a range of optimizations, both minor and major. For detailed information on these changes, please consult the HFE·T update log available in the group files.</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><a href="https://www.mediafire.com/folder/hbv27ztdztij1/HFET" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/folder/hbv27ztdztij1/HFET</a></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Upcoming Features</span></span></span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Future updates will continue to incorporate and adapt characters from Little Fighter 2 (LF2).</span></span></div>
<br />
<span style="font-size: small;" class="mycode_size">Credits to <dvz_me_placeholder id="0" /> for this thread.</span><br />
<br />
<div class="tborder spoiler"><div class="spoiler_header">Old post by BEBD <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='(Click to View)';this.parentNode.className = 'spoiler_header';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='(Click to Hide)';this.parentNode.className += ' spoiler_header_cornered';}">(Click to View)</a></div><div class="spoiler_body" style="display: none;">
Hero Fighter新平衡版HFE·T开放下载： <br />
当前最新版本为1.3.2b，分为普通版与皮肤版两版本。<br />
滔滔、善男、八神、索思、佛魔回归，可使用角色达到25名并且在原版的基础下进行了平衡性调整。所有角色都进行了大大小小的优化，具体调整可参考群文件-HFE·T更新日志<br />
更新前瞻：下版本将添加新角色：魔剑刃逊。结成将添加新技能。在后续版本中，将逐渐移植LF2的大部分角色。<br />
版本主策划Version main planner：追风Trevor<br />
主要制作Main production：细米Xemy <br />
部分协力Partial cooperation：不饿白帝BEBD<br />
Hero Fighter New Balance Version HFE·T is now available for download:<br />
The latest version is 1.3.2b, which is divided into two versions: the normal version and the skin version.<br />
[titto sinan yaga saws livermore] have returned, and the number of characters available has reached 25. Balance adjustments have been made based on the original version. All characters have been optimized in various ways. For specific adjustments, please refer to the group file-HFE·T update log<br />
Update preview: A new character will be added in the next version: Demon Sword Eason. New skills will be added to Jason. In subsequent versions, most of the characters in LF2 will be gradually ported. <br />
<br />
download：<a href="https://www.mediafire.com/folder/hbv27ztdztij1/HFET" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/folder/hbv27ztdztij1/HFET</a><br />
<br />
<a href="https://imgse.com/i/pVkTuWQ" target="_blank" rel="noopener" class="mycode_url"><img src="https://s21.ax1x.com/2025/06/12/pVkTuWQ.md.png" loading="lazy"  alt="[Image: pVkTuWQ.md.png]" class="mycode_img" /></a><br />
<a href="https://imgse.com/i/pVkTKzj" target="_blank" rel="noopener" class="mycode_url"><img src="https://s21.ax1x.com/2025/06/12/pVkTKzj.md.png" loading="lazy"  alt="[Image: pVkTKzj.md.png]" class="mycode_img" /></a></div></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HERO FIGHTER EQUILIBRIUM. Trevor v1.3.8</span></span></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align">
<img src="https://i.imgur.com/aCWGzGy.png" loading="lazy"  alt="[Image: aCWGzGy.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/ZD1hyx8.png" loading="lazy"  alt="[Image: ZD1hyx8.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/mHNw2Rg.png" loading="lazy"  alt="[Image: mHNw2Rg.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/NXVrs3A.png" loading="lazy"  alt="[Image: NXVrs3A.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Version Main Planner: Trevor (追风)</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Lead Developer: Xemy (细米)</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Additional Contributions BEBD (不饿白帝)</span></span></div>
<br />
<br />
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Hero Fighter New Balance Edition (HFE·T) Now Available for Download</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">The latest release, version <code class="inline-code">1.3.8</code>, is now officially open for download. This version is offered in two variants: the Standard Edition and the Skin Edition.</span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Several fan-favorite characters — including Titao, Sinan, Yagami, Saws, and Livermore — make their return, bringing the total number of playable characters to 25. Extensive balance adjustments have been implemented based on the original version to ensure a more refined gameplay experience. All characters have undergone a range of optimizations, both minor and major. For detailed information on these changes, please consult the HFE·T update log available in the group files.</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><a href="https://www.mediafire.com/folder/hbv27ztdztij1/HFET" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/folder/hbv27ztdztij1/HFET</a></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Upcoming Features</span></span></span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font">Future updates will continue to incorporate and adapt characters from Little Fighter 2 (LF2).</span></span></div>
<br />
<span style="font-size: small;" class="mycode_size">Credits to <dvz_me_placeholder id="0" /> for this thread.</span><br />
<br />
<div class="tborder spoiler"><div class="spoiler_header">Old post by BEBD <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='(Click to View)';this.parentNode.className = 'spoiler_header';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='(Click to Hide)';this.parentNode.className += ' spoiler_header_cornered';}">(Click to View)</a></div><div class="spoiler_body" style="display: none;">
Hero Fighter新平衡版HFE·T开放下载： <br />
当前最新版本为1.3.2b，分为普通版与皮肤版两版本。<br />
滔滔、善男、八神、索思、佛魔回归，可使用角色达到25名并且在原版的基础下进行了平衡性调整。所有角色都进行了大大小小的优化，具体调整可参考群文件-HFE·T更新日志<br />
更新前瞻：下版本将添加新角色：魔剑刃逊。结成将添加新技能。在后续版本中，将逐渐移植LF2的大部分角色。<br />
版本主策划Version main planner：追风Trevor<br />
主要制作Main production：细米Xemy <br />
部分协力Partial cooperation：不饿白帝BEBD<br />
Hero Fighter New Balance Version HFE·T is now available for download:<br />
The latest version is 1.3.2b, which is divided into two versions: the normal version and the skin version.<br />
[titto sinan yaga saws livermore] have returned, and the number of characters available has reached 25. Balance adjustments have been made based on the original version. All characters have been optimized in various ways. For specific adjustments, please refer to the group file-HFE·T update log<br />
Update preview: A new character will be added in the next version: Demon Sword Eason. New skills will be added to Jason. In subsequent versions, most of the characters in LF2 will be gradually ported. <br />
<br />
download：<a href="https://www.mediafire.com/folder/hbv27ztdztij1/HFET" target="_blank" rel="noopener" class="mycode_url">https://www.mediafire.com/folder/hbv27ztdztij1/HFET</a><br />
<br />
<a href="https://imgse.com/i/pVkTuWQ" target="_blank" rel="noopener" class="mycode_url"><img src="https://s21.ax1x.com/2025/06/12/pVkTuWQ.md.png" loading="lazy"  alt="[Image: pVkTuWQ.md.png]" class="mycode_img" /></a><br />
<a href="https://imgse.com/i/pVkTKzj" target="_blank" rel="noopener" class="mycode_url"><img src="https://s21.ax1x.com/2025/06/12/pVkTKzj.md.png" loading="lazy"  alt="[Image: pVkTKzj.md.png]" class="mycode_img" /></a></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[褚英招式用法]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=480</link>
			<pubDate>Wed, 11 Jun 2025 14:41:58 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=1150">Trickster</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=480</guid>
			<description><![CDATA[作為回坑玩家，龍介、承影、解鈴、戈登、小櫻、萊格都重新練起來了。但是唯獨褚英總是練不好.....<br />
<br />
回坑後發現有些在貼吧的好文都被吞掉，ztage原有官方論壇消失了。<br />
<br />
唯一找到剩下的教學文只有這篇......<br />
<a href="https://lf-empire.de/ztage_backup/ztage.com/forum/viewtopic910b.html?f=34&amp;t=13403" target="_blank" rel="noopener" class="mycode_url">https://lf-empire.de/ztage_backup/ztage....34&amp;t=13403</a><br />
<br />
現階段褚英實戰時，基本只用到平A/跳攻/反身沖跳攻/沖跳攻/霸王沖鋒+跑攻，其他招式反而較少用到。<br />
<br />
比如跳攻後的纏身鎖，不一定可以每次都連得起來，反而跳攻後接幾下平A更順暢。<br />
<br />
轟天拳如果能發揮得當，的確可以十分強大。但由於預備時間過長，發揮的空間頗有限.... 一般在有掩護的場合會比較好....<br />
<br />
在沒有掩護/肉盾的場合下，收拳後破綻百出，若沒有打到後面弓手/飛刀手就一瞬間被反攻<br />
<br />
對付&lt;6名騎兵時，還可以往後跳再發轟天拳。相比之下烈風鑽雖然威力頗有不如，但發招更快更靈活，轟天拳有點華而不實的感覺.....<br />
<br />
霸王沖鋒基本是褚英最實用旳技能??目前在用纏身鎖前，都用霸王沖鋒才可以增加抓人成功率。<br />
<br />
請問各位有練好褚英的方法或用褚英的心得?? 我用轟天拳/纏身鎖總是感覺用不好... <br />
<br />
另外想用褚英打究極第六話打三巨頭，可以有什麼辦法? 尤其冰森招式感覺褚英難以突破]]></description>
			<content:encoded><![CDATA[作為回坑玩家，龍介、承影、解鈴、戈登、小櫻、萊格都重新練起來了。但是唯獨褚英總是練不好.....<br />
<br />
回坑後發現有些在貼吧的好文都被吞掉，ztage原有官方論壇消失了。<br />
<br />
唯一找到剩下的教學文只有這篇......<br />
<a href="https://lf-empire.de/ztage_backup/ztage.com/forum/viewtopic910b.html?f=34&amp;t=13403" target="_blank" rel="noopener" class="mycode_url">https://lf-empire.de/ztage_backup/ztage....34&amp;t=13403</a><br />
<br />
現階段褚英實戰時，基本只用到平A/跳攻/反身沖跳攻/沖跳攻/霸王沖鋒+跑攻，其他招式反而較少用到。<br />
<br />
比如跳攻後的纏身鎖，不一定可以每次都連得起來，反而跳攻後接幾下平A更順暢。<br />
<br />
轟天拳如果能發揮得當，的確可以十分強大。但由於預備時間過長，發揮的空間頗有限.... 一般在有掩護的場合會比較好....<br />
<br />
在沒有掩護/肉盾的場合下，收拳後破綻百出，若沒有打到後面弓手/飛刀手就一瞬間被反攻<br />
<br />
對付&lt;6名騎兵時，還可以往後跳再發轟天拳。相比之下烈風鑽雖然威力頗有不如，但發招更快更靈活，轟天拳有點華而不實的感覺.....<br />
<br />
霸王沖鋒基本是褚英最實用旳技能??目前在用纏身鎖前，都用霸王沖鋒才可以增加抓人成功率。<br />
<br />
請問各位有練好褚英的方法或用褚英的心得?? 我用轟天拳/纏身鎖總是感覺用不好... <br />
<br />
另外想用褚英打究極第六話打三巨頭，可以有什麼辦法? 尤其冰森招式感覺褚英難以突破]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HFX custom battle]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=478</link>
			<pubDate>Fri, 11 Apr 2025 07:09:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=1133">Jinu</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=478</guid>
			<description><![CDATA[Hi everyone! <br />
I finish the 7 acts of the game. It was a very thrilling adventure. But now since I have finished every part the game is quite boring now. <br />
Is there a way to create my own custom battle or VS modes? <br />
I know there is a modifier software for the HF computer version but does that exist for the android version?<br />
Thank you very much.]]></description>
			<content:encoded><![CDATA[Hi everyone! <br />
I finish the 7 acts of the game. It was a very thrilling adventure. But now since I have finished every part the game is quite boring now. <br />
Is there a way to create my own custom battle or VS modes? <br />
I know there is a modifier software for the HF computer version but does that exist for the android version?<br />
Thank you very much.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Remove the healing effect]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=476</link>
			<pubDate>Tue, 04 Feb 2025 09:58:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=1032">Julian</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=476</guid>
			<description><![CDATA[How to remove the healing effect of Azrael's column?]]></description>
			<content:encoded><![CDATA[How to remove the healing effect of Azrael's column?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Marti Wong's LF Remastered Interview Translated]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=475</link>
			<pubDate>Tue, 04 Feb 2025 09:27:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=989">Avodo</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=475</guid>
			<description><![CDATA[I noticed that Marti's latest interview didn't have any subtitles, so I decided to translate the whole video's audio into English using AI. I know the quality is not the best, but that the best we can get. You can watch it here: <br />
<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/vIdMoSxUVpg" style="max-width: 100%;" frameborder="0" allowfullscreen="true"></iframe>]]></description>
			<content:encoded><![CDATA[I noticed that Marti's latest interview didn't have any subtitles, so I decided to translate the whole video's audio into English using AI. I know the quality is not the best, but that the best we can get. You can watch it here: <br />
<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/vIdMoSxUVpg" style="max-width: 100%;" frameborder="0" allowfullscreen="true"></iframe>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HFE Random Version]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=473</link>
			<pubDate>Sat, 26 Oct 2024 19:56:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=473</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HFE RANDOM VERSION</span></span></span></span><br />
<img src="https://i.imgur.com/iv2Y4hu.png" loading="lazy"  alt="[Image: iv2Y4hu.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game author: Marti Wong<br />
Mod author(s): Tien Lee &amp; BEBD </span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">Based on the preceding HF Equilibrium version, all characters release random items, and there is a 50% probability that the blood bottle will drop blood potion environment!</span></span></div>
<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/file/krsb7erupop1znz/HFE_Random_Version_V0.1.1.exe/file" target="_blank" rel="noopener" class="mycode_url">HFE Random Version</a></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HFE RANDOM VERSION</span></span></span></span><br />
<img src="https://i.imgur.com/iv2Y4hu.png" loading="lazy"  alt="[Image: iv2Y4hu.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game author: Marti Wong<br />
Mod author(s): Tien Lee &amp; BEBD </span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">Based on the preceding HF Equilibrium version, all characters release random items, and there is a 50% probability that the blood bottle will drop blood potion environment!</span></span></div>
<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/file/krsb7erupop1znz/HFE_Random_Version_V0.1.1.exe/file" target="_blank" rel="noopener" class="mycode_url">HFE Random Version</a></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HF Lunar Gravity Edition]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=472</link>
			<pubDate>Sat, 26 Oct 2024 19:55:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=472</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HF LUNAR GRAVITY</span></span></span></span><br />
<img src="https://i.imgur.com/S4P7N4P.png" loading="lazy"  alt="[Image: S4P7N4P.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/ipZVJD7.png" loading="lazy"  alt="[Image: ipZVJD7.png]" class="mycode_img" /></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game author: Marti Wong<br />
Mod author: Tien Lee </span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"> Defy gravity on the Lunar Frontier! Experience weightless combat with the HF Lunar Gravity Mod. Seamlessly float, glide &amp; slide and engage in a spectacular battles within a stunningly realistic lunar enviromnent!</div></span></span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/file/zxthbn9d0x12gvr/HF-_Lunar_gravity.exe/file" target="_blank" rel="noopener" class="mycode_url">HF LUNAR GRAVITY</a></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HF LUNAR GRAVITY</span></span></span></span><br />
<img src="https://i.imgur.com/S4P7N4P.png" loading="lazy"  alt="[Image: S4P7N4P.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/ipZVJD7.png" loading="lazy"  alt="[Image: ipZVJD7.png]" class="mycode_img" /></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game author: Marti Wong<br />
Mod author: Tien Lee </span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"> Defy gravity on the Lunar Frontier! Experience weightless combat with the HF Lunar Gravity Mod. Seamlessly float, glide &amp; slide and engage in a spectacular battles within a stunningly realistic lunar enviromnent!</div></span></span><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/file/zxthbn9d0x12gvr/HF-_Lunar_gravity.exe/file" target="_blank" rel="noopener" class="mycode_url">HF LUNAR GRAVITY</a></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[XJDL]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=466</link>
			<pubDate>Sun, 08 Sep 2024 21:27:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=466</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">XJDL - PCBS's MOD</span></span></span></span><br />
<img src="https://i.imgur.com/ND12avG.png" loading="lazy"  alt="[Image: ND12avG.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/DTTiz7o.png" loading="lazy"  alt="[Image: DTTiz7o.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/lNLMxWL.png" loading="lazy"  alt="[Image: lNLMxWL.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game author: Marti Wong<br />
Mod authors: BaiXing &amp; Lao Xu </span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">Enter a realm of revolutionized characters, where the boundaries of adventure are pushed to the limit. Face off against a diverse array of formidable enemies, each with unique abilities and strengths, as you progress through the challenges.<br />
<br />
There are two versions in PCBS MOD. In the shooting version（射击版）, each character is Shawn, but different Shawn's arrows have different effects. The creators of the XJDL (Xi Jiu Land) version are BaiXing and Lao Xu. This is a mod with rich character changes.</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/folder/bt7mrkj18u27c/PCBS's+MOD" target="_blank" rel="noopener" class="mycode_url">PCBS's XJDL</a></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">XJDL - PCBS's MOD</span></span></span></span><br />
<img src="https://i.imgur.com/ND12avG.png" loading="lazy"  alt="[Image: ND12avG.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/DTTiz7o.png" loading="lazy"  alt="[Image: DTTiz7o.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/lNLMxWL.png" loading="lazy"  alt="[Image: lNLMxWL.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game author: Marti Wong<br />
Mod authors: BaiXing &amp; Lao Xu </span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">Enter a realm of revolutionized characters, where the boundaries of adventure are pushed to the limit. Face off against a diverse array of formidable enemies, each with unique abilities and strengths, as you progress through the challenges.<br />
<br />
There are two versions in PCBS MOD. In the shooting version（射击版）, each character is Shawn, but different Shawn's arrows have different effects. The creators of the XJDL (Xi Jiu Land) version are BaiXing and Lao Xu. This is a mod with rich character changes.</span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/folder/bt7mrkj18u27c/PCBS's+MOD" target="_blank" rel="noopener" class="mycode_url">PCBS's XJDL</a></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HF Tower Climbing Challenge]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=465</link>
			<pubDate>Sun, 08 Sep 2024 21:03:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=465</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HF TOWER CLIMBING CHALLENGE</span></span></span></span></div>
<br />
<img src="https://i.imgur.com/j5sVtyJ.png" loading="lazy"  alt="[Image: j5sVtyJ.png]" class="mycode_img" /><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors &amp; Contributors</span></span></span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font">Stage creativity &amp; design: BEBD<br />
Technical support: Tien<br />
Character transplantation and adjustment: Xemy<br />
<br />
</span></span><br />
<div style="text-align: center;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span></span><br />
<a href="https://www.mediafire.com/folder/fxe7pmyps2ed6/HF+Tower+Climbing+Challenge" target="_blank" rel="noopener" class="mycode_url"> HF Tower Climbing Challenge</a></span></span></div>
<span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font"><br />
Embark on a thrilling adventure with your character, navigating through the formidable Seven Towers. Be prepared to face increasingly daunting waves of enemies, with each wave featuring one additional foe than the previous one. Please note that this mode is exclusively designed for story mode and is not intended for VS Mode or War Mode.<br />
<br />
By participating in this challenge, you acknowledge that you will not hold us accountable for any issues or difficulties that may arise in other modes.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Note:</span> Inside the v1 zip, you'll find two distinct versions of the challenge:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version 1: Poison Indicator</span><br />
In this version, you'll have the advantage of identifying poison dropped by enemies, distinguishing it from regular potions.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version 666: Blind Challenge</span><br />
In this version, you'll face an added layer of difficulty, as poison and ordinary potions will be indistinguishable.</span></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HF TOWER CLIMBING CHALLENGE</span></span></span></span></div>
<br />
<img src="https://i.imgur.com/j5sVtyJ.png" loading="lazy"  alt="[Image: j5sVtyJ.png]" class="mycode_img" /><br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors &amp; Contributors</span></span></span></span></div>
<div style="text-align: justify;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font">Stage creativity &amp; design: BEBD<br />
Technical support: Tien<br />
Character transplantation and adjustment: Xemy<br />
<br />
</span></span><br />
<div style="text-align: center;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span></span><br />
<a href="https://www.mediafire.com/folder/fxe7pmyps2ed6/HF+Tower+Climbing+Challenge" target="_blank" rel="noopener" class="mycode_url"> HF Tower Climbing Challenge</a></span></span></div>
<span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font"><br />
Embark on a thrilling adventure with your character, navigating through the formidable Seven Towers. Be prepared to face increasingly daunting waves of enemies, with each wave featuring one additional foe than the previous one. Please note that this mode is exclusively designed for story mode and is not intended for VS Mode or War Mode.<br />
<br />
By participating in this challenge, you acknowledge that you will not hold us accountable for any issues or difficulties that may arise in other modes.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Note:</span> Inside the v1 zip, you'll find two distinct versions of the challenge:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version 1: Poison Indicator</span><br />
In this version, you'll have the advantage of identifying poison dropped by enemies, distinguishing it from regular potions.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version 666: Blind Challenge</span><br />
In this version, you'll face an added layer of difficulty, as poison and ordinary potions will be indistinguishable.</span></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Soldier War]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=464</link>
			<pubDate>Sun, 08 Sep 2024 16:36:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=464</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">SOLDIER WAR v0.20</span></span></span></span><br />
<img src="https://i.imgur.com/bD8xoeU.png" loading="lazy"  alt="[Image: bD8xoeU.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/FxDYNxL.png" loading="lazy"  alt="[Image: FxDYNxL.png]" class="mycode_img" /></div>
<br />
SW (Soldier War) is a Battle Mode version. Its VS Mode and Story Mode are the same as HFE v0.8.9. This version has a very distinctive battle mode adjustment.<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game Author : Marti Wong<br />
Mod Author : YZY</span><br />
</span></span><br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span></span><br />
<a href="https://www.mediafire.com/folder/hx1g5gesuaru5/YZY's+MOD" target="_blank" rel="noopener" class="mycode_url">SW v0.20</a></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Major Changes</span></span></span></span></span></span></div>
<span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">Initial amount &#36;200<br />
Castle + &#36;5 Gold Mine + &#36;20<br />
The monetary rewards and penalties for fighting for gold mines are cancelled, and are replaced by +0.05 attack and defense. There is no penalty for losing.<br />
The military camp, wwhen captured, the deduction of money is cancelled.<br />
Capture the castle and get &#36;100<br />
Only those who kill 60 people will be rewarded.</span></span>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">SOLDIER WAR v0.20</span></span></span></span><br />
<img src="https://i.imgur.com/bD8xoeU.png" loading="lazy"  alt="[Image: bD8xoeU.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/FxDYNxL.png" loading="lazy"  alt="[Image: FxDYNxL.png]" class="mycode_img" /></div>
<br />
SW (Soldier War) is a Battle Mode version. Its VS Mode and Story Mode are the same as HFE v0.8.9. This version has a very distinctive battle mode adjustment.<br />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></span></div>
<span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Game Author : Marti Wong<br />
Mod Author : YZY</span><br />
</span></span><br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span></span><br />
<a href="https://www.mediafire.com/folder/hx1g5gesuaru5/YZY's+MOD" target="_blank" rel="noopener" class="mycode_url">SW v0.20</a></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Major Changes</span></span></span></span></span></span></div>
<span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">Initial amount &#36;200<br />
Castle + &#36;5 Gold Mine + &#36;20<br />
The monetary rewards and penalties for fighting for gold mines are cancelled, and are replaced by +0.05 attack and defense. There is no penalty for losing.<br />
The military camp, wwhen captured, the deduction of money is cancelled.<br />
Capture the castle and get &#36;100<br />
Only those who kill 60 people will be rewarded.</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HF EYJA]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=463</link>
			<pubDate>Sun, 08 Sep 2024 15:49:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=463</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HF EYJA</span></span></span></span><br />
<br />
<img src="https://i.imgur.com/aPqt4XO.png" loading="lazy"  alt="[Image: aPqt4XO.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/GtqrEbC.png" loading="lazy"  alt="[Image: GtqrEbC.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/LhvEXLq.png" loading="lazy"  alt="[Image: LhvEXLq.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font">Game Author: Marti Wong</span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><span style="font-family: verdana;" class="mycode_font">Mod Author: XiaoYang</span></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Download</span></span></span><br />
<a href="https://www.mediafire.com/folder/5j33313vty6wj/XiaoYang's+MOD" target="_blank" rel="noopener" class="mycode_url">HF EYJA v0.1.6</a></span></span></span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">HF EYJA</span></span></span></span><br />
<br />
<img src="https://i.imgur.com/aPqt4XO.png" loading="lazy"  alt="[Image: aPqt4XO.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/GtqrEbC.png" loading="lazy"  alt="[Image: GtqrEbC.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/LhvEXLq.png" loading="lazy"  alt="[Image: LhvEXLq.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Authors</span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font">Game Author: Marti Wong</span></span></span></div>
<div style="text-align: center;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><span style="font-family: verdana;" class="mycode_font">Mod Author: XiaoYang</span></span></span></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-size: medium;" class="mycode_size"><span style="font-family: verdana;" class="mycode_font"><span style="font-family: Verdana;" class="mycode_font"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Download</span></span></span><br />
<a href="https://www.mediafire.com/folder/5j33313vty6wj/XiaoYang's+MOD" target="_blank" rel="noopener" class="mycode_url">HF EYJA v0.1.6</a></span></span></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hero Fighter with Soldiers]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=462</link>
			<pubDate>Sun, 08 Sep 2024 15:29:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=893">Almighty Jack E</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=462</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">Hero Fighter with Soldiers</span></span></span></span><br />
<br />
<img src="https://i.imgur.com/EKI0h1A.png" loading="lazy"  alt="[Image: EKI0h1A.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/62b2X3n.png" loading="lazy"  alt="[Image: 62b2X3n.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/folder/s05fd53v3qy95/HF+with+Soldier+v1" target="_blank" rel="noopener" class="mycode_url"><span style="font-size: medium;" class="mycode_size">HFS</span></a></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">The HFS mod introduces a fascinating innovation to the game, enabling players to take control of soldier characters - a feature that was previously not included in the original game, also, players can control mounts as characters themselves!<br />
<br />
However, access to the soldier character feature, in this mod, is  reserved for premium accounts only. In order to be able to play with soldiers, players must acquire a premium account.</div></span></span>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-family: Verdana;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">Hero Fighter with Soldiers</span></span></span></span><br />
<br />
<img src="https://i.imgur.com/EKI0h1A.png" loading="lazy"  alt="[Image: EKI0h1A.png]" class="mycode_img" /><br />
<img src="https://i.imgur.com/62b2X3n.png" loading="lazy"  alt="[Image: 62b2X3n.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Downloads</span></span></span><br />
<a href="https://www.mediafire.com/folder/s05fd53v3qy95/HF+with+Soldier+v1" target="_blank" rel="noopener" class="mycode_url"><span style="font-size: medium;" class="mycode_size">HFS</span></a></div>
<br />
<div style="text-align: justify;" class="mycode_align"><span style="font-family: verdana;" class="mycode_font"><span style="font-size: medium;" class="mycode_size">The HFS mod introduces a fascinating innovation to the game, enabling players to take control of soldier characters - a feature that was previously not included in the original game, also, players can control mounts as characters themselves!<br />
<br />
However, access to the soldier character feature, in this mod, is  reserved for premium accounts only. In order to be able to play with soldiers, players must acquire a premium account.</div></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Shining Shooting Star]]></title>
			<link>https://hf-empire.com/forum/showthread.php?tid=460</link>
			<pubDate>Fri, 06 Sep 2024 14:54:22 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://hf-empire.com/forum/member.php?action=profile&uid=1">MangaD</a>]]></dc:creator>
			<guid isPermaLink="false">https://hf-empire.com/forum/showthread.php?tid=460</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Shining Shooting Star</span></span></span><br />
<br />
<img src="https://hf-empire.com/images/hfe-downloads/off-versions/sss_v1.9.6.png" loading="lazy"  alt="[Image: sss_v1.9.6.png]" class="mycode_img" /><br />
<br />
<span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Download</span></span></span><br />
<a href="https://www.mediafire.com/file/jw1vta7ph6rg9na/Shining_Shooting_Star_v1.9.6.exe/file" target="_blank" rel="noopener" class="mycode_url">HFE v0.3 - Shining Shooting Star v1.9.6  by Upacco</a><br />
<br />
<span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Author(s)</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Mod Author:</span> <dvz_me_placeholder id="1" /><br />
<span style="font-weight: bold;" class="mycode_b">Game Author:</span> Marti Wong<br />
<br />
<span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Synopsis</span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align">
Gu Ao and Wushuang embark on a perilous journey through mystical realms, battling formidable foes and forging unbreakable bonds with newfound allies. Their quest uncovers a sinister plot by Yixia to summon the celestial entity, Little Bear, the God of Star, using ancient meteors. Promised wishes come with a great price: the sacrifice of innocent souls.<br />
<br />
As they near their final confrontation, Gu Ao and Wushuang discover the horrifying truth. Little Bear reveals that wishes comes with a terrible price, forcing the duo to confront the true cost of their desires.<br />
<br />
In a climactic moment of courage and conviction, Gu Ao and Wushuang reject the Faustian bargain, choosing to forsake their deepest desires, rather than condemn countless lives. Their odyssey concludes with a profound realization: the pursuit of dreams often demands unbearable sacrifices.</div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Special Thanks</span></span></span></div>
<br />
We extend our gratitude to the following individuals for their contributions:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Game Development</span><br />
<br />
- Upacco (Mod producer)<br />
- BEBD (Drama, Skin, SPT)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Testing and Feedback</span><br />
<br />
- Juan the Divine Arrow (First player to clear Lunatic difficulty!)<br />
- Ayano Qingyou (Internal testing)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Protagonist Voices</span><br />
<br />
- O n L y (CT Wushuang)<br />
- S*LuEX (Technical support)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Episode Bosses</span><br />
<br />
- Coal (Episode 4)<br />
- Gu (Episode 4)<br />
- Trevor the Wind (Episode 2)<br />
- ThunderCloud (Episode 3)<br />
- Salted Fish (Episode 1)<br />
- Sharon (Episode 5)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Friendly Performances</span><br />
<br />
- Angry Birds Red<br />
- Himekoji AutumnOrange<br />
- Little Friend LH<br />
- No Grass, No Flowers Flowerqvq<br />
- Xihaotu<br />
- Mozhichangchang<br />
- Xemy<br />
- Tien<br />
- SummerRain<br />
- Guangge Cake<br />
- Hengyu Universe<br />
- Tianquan Donut<br />
- Clone-K47<br />
- Rebel Esster<br />
- Eyjafjalla the Sheep<br />
- Mark the Shinto<br />
- Hapir the Hellfire<br />
- Sabrina the Dragon Mother<br />
- Serena<br />
- Shiori Yumeno<br />
- Peko Toda<br />
- Ling Ling Ling 00 (Cuncun's cat)<br />
<br />
Thank you all for your hard work, dedication, and support!<br />
<br />
<br />
<span style="font-size: small;" class="mycode_size">Credits to <dvz_me_placeholder id="0" /> for this thread.</span>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: xx-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Shining Shooting Star</span></span></span><br />
<br />
<img src="https://hf-empire.com/images/hfe-downloads/off-versions/sss_v1.9.6.png" loading="lazy"  alt="[Image: sss_v1.9.6.png]" class="mycode_img" /><br />
<br />
<span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Download</span></span></span><br />
<a href="https://www.mediafire.com/file/jw1vta7ph6rg9na/Shining_Shooting_Star_v1.9.6.exe/file" target="_blank" rel="noopener" class="mycode_url">HFE v0.3 - Shining Shooting Star v1.9.6  by Upacco</a><br />
<br />
<span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Author(s)</span></span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Mod Author:</span> <dvz_me_placeholder id="1" /><br />
<span style="font-weight: bold;" class="mycode_b">Game Author:</span> Marti Wong<br />
<br />
<span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Synopsis</span></span></span></div>
<br />
<div style="text-align: justify;" class="mycode_align">
Gu Ao and Wushuang embark on a perilous journey through mystical realms, battling formidable foes and forging unbreakable bonds with newfound allies. Their quest uncovers a sinister plot by Yixia to summon the celestial entity, Little Bear, the God of Star, using ancient meteors. Promised wishes come with a great price: the sacrifice of innocent souls.<br />
<br />
As they near their final confrontation, Gu Ao and Wushuang discover the horrifying truth. Little Bear reveals that wishes comes with a terrible price, forcing the duo to confront the true cost of their desires.<br />
<br />
In a climactic moment of courage and conviction, Gu Ao and Wushuang reject the Faustian bargain, choosing to forsake their deepest desires, rather than condemn countless lives. Their odyssey concludes with a profound realization: the pursuit of dreams often demands unbearable sacrifices.</div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="color: #fff5b3;" class="mycode_color"><span style="font-size: large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Special Thanks</span></span></span></div>
<br />
We extend our gratitude to the following individuals for their contributions:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Game Development</span><br />
<br />
- Upacco (Mod producer)<br />
- BEBD (Drama, Skin, SPT)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Testing and Feedback</span><br />
<br />
- Juan the Divine Arrow (First player to clear Lunatic difficulty!)<br />
- Ayano Qingyou (Internal testing)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Protagonist Voices</span><br />
<br />
- O n L y (CT Wushuang)<br />
- S*LuEX (Technical support)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Episode Bosses</span><br />
<br />
- Coal (Episode 4)<br />
- Gu (Episode 4)<br />
- Trevor the Wind (Episode 2)<br />
- ThunderCloud (Episode 3)<br />
- Salted Fish (Episode 1)<br />
- Sharon (Episode 5)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Friendly Performances</span><br />
<br />
- Angry Birds Red<br />
- Himekoji AutumnOrange<br />
- Little Friend LH<br />
- No Grass, No Flowers Flowerqvq<br />
- Xihaotu<br />
- Mozhichangchang<br />
- Xemy<br />
- Tien<br />
- SummerRain<br />
- Guangge Cake<br />
- Hengyu Universe<br />
- Tianquan Donut<br />
- Clone-K47<br />
- Rebel Esster<br />
- Eyjafjalla the Sheep<br />
- Mark the Shinto<br />
- Hapir the Hellfire<br />
- Sabrina the Dragon Mother<br />
- Serena<br />
- Shiori Yumeno<br />
- Peko Toda<br />
- Ling Ling Ling 00 (Cuncun's cat)<br />
<br />
Thank you all for your hard work, dedication, and support!<br />
<br />
<br />
<span style="font-size: small;" class="mycode_size">Credits to <dvz_me_placeholder id="0" /> for this thread.</span>]]></content:encoded>
		</item>
	</channel>
</rss>