<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Featured on Ishan Puri | Minecraft &amp; Gaming Realm</title><link>https://www.ishanpuri.com/tags/featured/</link><description>Recent content in Featured on Ishan Puri | Minecraft &amp; Gaming Realm</description><generator>Hugo</generator><language>en</language><lastBuildDate>Fri, 05 Apr 2024 16:00:00 +0800</lastBuildDate><atom:link href="https://www.ishanpuri.com/tags/featured/index.xml" rel="self" type="application/rss+xml"/><item><title>Building an Autonomous .NET Bot for Minecraft</title><link>https://www.ishanpuri.com/posts/minecraft-custom-dotnet-bot/</link><pubDate>Fri, 05 Apr 2024 16:00:00 +0800</pubDate><guid>https://www.ishanpuri.com/posts/minecraft-custom-dotnet-bot/</guid><description>&lt;h2 id="-meet-the-net-companion-bot"&gt;🤖 Meet the .NET Companion Bot&lt;/h2&gt;&#10;&lt;p&gt;Building intelligent NPC companions and assistant bots brings an entirely new dimension to Minecraft survival realms!&lt;/p&gt;&#10;&lt;h3 id="-architecture--tech-stack"&gt;🔧 Architecture &amp;amp; Tech Stack&lt;/h3&gt;&#10;&lt;ul&gt;&#10;&lt;li&gt;&lt;strong&gt;Runtime&lt;/strong&gt;: .NET 8 C# Core&lt;/li&gt;&#10;&lt;li&gt;&lt;strong&gt;Packet Protocol&lt;/strong&gt;: Minecraft Client/Server Protocol (Bedrock &amp;amp; Java Bridge)&lt;/li&gt;&#10;&lt;li&gt;&lt;strong&gt;Pathfinding&lt;/strong&gt;: A* 3D Grid Search algorithm taking gravity, jumps, and hazard blocks (lava, cactus) into account.&lt;/li&gt;&#10;&lt;/ul&gt;&#10;&lt;h3 id="-bot-capabilities"&gt;🌟 Bot Capabilities&lt;/h3&gt;&#10;&lt;ol&gt;&#10;&lt;li&gt;&lt;strong&gt;Auto-Mining Mode&lt;/strong&gt;: Safely traces ores and mines designated cube areas while reporting chest fullness.&lt;/li&gt;&#10;&lt;li&gt;&lt;strong&gt;Bodyguard Protocol&lt;/strong&gt;: Detects Creepers and hostile mobs within a 16-block radius, providing knockback support.&lt;/li&gt;&#10;&lt;li&gt;&lt;strong&gt;Chat Commands&lt;/strong&gt;: Responds to in-game chat instructions like &lt;code&gt;!come&lt;/code&gt;, &lt;code&gt;!mine iron&lt;/code&gt;, &lt;code&gt;!guard base&lt;/code&gt;, and &lt;code&gt;!deposit&lt;/code&gt;.&lt;/li&gt;&#10;&lt;/ol&gt;&#10;&lt;div class="highlight"&gt;&lt;div style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&#10;&lt;table style="border-spacing:0;padding:0;margin:0;border:0;"&gt;&lt;tr&gt;&lt;td style="vertical-align:top;padding:0;margin:0;border:0;"&gt;&#10;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 1&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 2&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 3&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 4&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 5&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 6&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 7&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 8&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 9&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;10&#10;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#10;&lt;td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%"&gt;&#10;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-csharp" data-lang="csharp"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#6272a4"&gt;// Example: Companion Bot Pathfinding Event&lt;/span&gt;&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#8be9fd;font-style:italic"&gt;public&lt;/span&gt; &lt;span style="color:#8be9fd;font-style:italic"&gt;async&lt;/span&gt; Task OnHostileDetected(Entity mob)&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;{&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#ff79c6"&gt;if&lt;/span&gt; (mob.Type == EntityType.Creeper &amp;amp;&amp;amp; DistanceTo(mob) &amp;lt; &lt;span style="color:#bd93f9"&gt;10&lt;/span&gt;)&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; {&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#ff79c6"&gt;await&lt;/span&gt; EquipItem(ItemType.DiamondSword);&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#ff79c6"&gt;await&lt;/span&gt; PlaySound(&lt;span style="color:#f1fa8c"&gt;&amp;#34;entity.player.attack.strong&amp;#34;&lt;/span&gt;);&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; &lt;span style="color:#ff79c6"&gt;await&lt;/span&gt; MoveToTarget(mob.Position);&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; }&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}&#10;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#10;&lt;/div&gt;&#10;&lt;/div&gt;&lt;p&gt;Stay tuned for source code snippets and further development logs!&lt;/p&gt;</description></item><item><title>The Obsidian Citadel: Mega Survival Base Showcase</title><link>https://www.ishanpuri.com/posts/minecraft-mega-survival-base/</link><pubDate>Thu, 15 Feb 2024 12:00:00 +0800</pubDate><guid>https://www.ishanpuri.com/posts/minecraft-mega-survival-base/</guid><description>&lt;h2 id="-the-obsidian-citadel-project"&gt;🏰 The Obsidian Citadel Project&lt;/h2&gt;&#10;&lt;p&gt;Welcome to the architectural walkthrough of &lt;strong&gt;The Obsidian Citadel&lt;/strong&gt;, a multi-tiered mega-base constructed in hardcore survival mode across 150+ in-game Minecraft days.&lt;/p&gt;&#10;&lt;h3 id="-architectural-highlights"&gt;🧱 Architectural Highlights&lt;/h3&gt;&#10;&lt;ul&gt;&#10;&lt;li&gt;&lt;strong&gt;Deepslate &amp;amp; Obsidian Outer Bastion&lt;/strong&gt;: High blast-resistance outer walls designed to withstand mob attacks and lightning storms.&lt;/li&gt;&#10;&lt;li&gt;&lt;strong&gt;Diamond Beam Beacon Core&lt;/strong&gt;: Quad-beacon setup providing constant &lt;em&gt;Speed II&lt;/em&gt;, &lt;em&gt;Haste II&lt;/em&gt;, &lt;em&gt;Resistance II&lt;/em&gt;, and &lt;em&gt;Strength II&lt;/em&gt; across the entire base perimeter.&lt;/li&gt;&#10;&lt;li&gt;&lt;strong&gt;Hydroponic Kelp &amp;amp; Bamboo Farm&lt;/strong&gt;: Zero-tick automated crop generators feeding directly into a supersmelter battery for unlimited fuel and XP banks.&lt;/li&gt;&#10;&lt;/ul&gt;&#10;&lt;h3 id="-structural-layout"&gt;📐 Structural Layout&lt;/h3&gt;&#10;&lt;div class="highlight"&gt;&lt;div style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&#10;&lt;table style="border-spacing:0;padding:0;margin:0;border:0;"&gt;&lt;tr&gt;&lt;td style="vertical-align:top;padding:0;margin:0;border:0;"&gt;&#10;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 1&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 2&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 3&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 4&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 5&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 6&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 7&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 8&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt; 9&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;10&#10;&lt;/span&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;11&#10;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#10;&lt;td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%"&gt;&#10;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-fallback" data-lang="fallback"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;+--------------------------------------------------------+&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| ELYTRA LAUNCHPAD |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| ▲ |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| [LIVING QUARTERS] - [TROPHY VAULT] |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| │ |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| [CENTRAL REDSTONE NEXUS] |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| │ |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| [AUTO SORTING CHESTS] - [NETHER PORTAL ROOM] |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| ▼ |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;| BEDROCK MINING SHAFT |&#10;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;+--------------------------------------------------------+&#10;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#10;&lt;/div&gt;&#10;&lt;/div&gt;&lt;h3 id="-next-milestones"&gt;⚡ Next Milestones&lt;/h3&gt;&#10;&lt;ol&gt;&#10;&lt;li&gt;Expanding the Nether highway linking the Citadel to the End Portal stronghold.&lt;/li&gt;&#10;&lt;li&gt;Constructing an automated Raid Farm in the adjacent badlands biome.&lt;/li&gt;&#10;&lt;/ol&gt;</description></item><item><title>Fundamental Human Communication Skills</title><link>https://www.ishanpuri.com/posts/2024-01-03-design-work-06/</link><pubDate>Wed, 03 Jan 2024 00:00:06 +0800</pubDate><guid>https://www.ishanpuri.com/posts/2024-01-03-design-work-06/</guid><description>&lt;h3 id="-writing"&gt;✍️ Writing&lt;/h3&gt;&#10;&lt;p&gt;This is a form of expressive and written communication. It involves articulating thoughts, ideas, and information in a structured and coherent manner. Writing is a key skill for effective communication in both personal and professional settings.&lt;/p&gt;&#10;&lt;h3 id="-speaking"&gt;🗣️ Speaking&lt;/h3&gt;&#10;&lt;p&gt;This refers to oral communication. It&amp;rsquo;s the ability to convey ideas and emotions through speech. Speaking skills are crucial for interpersonal communication, presentations, and public speaking.&lt;/p&gt;&#10;&lt;h3 id="-reading"&gt;📖 Reading&lt;/h3&gt;&#10;&lt;p&gt;This skill involves interpreting and understanding written language. Reading is essential for acquiring knowledge, understanding diverse perspectives, and developing critical thinking skills.&lt;/p&gt;</description></item><item><title>Happy New Year 2024</title><link>https://www.ishanpuri.com/posts/2024-01-03-design-work-01/</link><pubDate>Wed, 03 Jan 2024 00:00:01 +0800</pubDate><guid>https://www.ishanpuri.com/posts/2024-01-03-design-work-01/</guid><description>&lt;p&gt;Celebrating the arrival of 2024 with custom typography and festive digital art! Wishing everyone a year filled with grand quests, epic achievements, and boundless creativity.&lt;/p&gt;</description></item></channel></rss>