# Connection Guide

<p>Connecting to Dark Pawns is straightforward, whether you prefer a zero-configuration web interface, a raw terminal command line, or a highly customized professional MUD client. The server runs continuously on port <code>4000</code> and supports concurrent Telnet and WebSocket connections.</p>
<hr>
<h2 id="1-web-client-zero-installation">1. Web Client (Zero Installation)</h2>
<p>For casual players or immediate access, we provide an elegant, web-native console. It wraps our high-performance WebSocket connection in a responsive, customizable terminal shell.</p>
<ul>
<li><strong>URL:</strong> <a href="/play/">darkpawns.labz0rz.com/play</a></li>
<li><strong>Requirements:</strong> Any modern web browser (Chrome, Firefox, Safari, Edge).</li>
<li><strong>Features:</strong> Responsive font scaling, standard ANSI color rendering, local scrollback history, and instant hotkey integration.</li>
</ul>
<hr>
<h2 id="2-desktop-mud-clients-recommended-for-extended-play">2. Desktop MUD Clients (Recommended for Extended Play)</h2>
<p>For dedicated players, we highly recommend utilizing a desktop client. These systems support local scripting, automated aliases, complex triggers, scrollback buffers, and graphic mapping capabilities that far exceed standard web browsers.</p>
<h3 id="client-configuration-parameters">Client Configuration Parameters</h3>
<p>To configure your MUD client of choice, create a new profile with the following settings:</p>
<table>
  <thead>
      <tr>
          <th style="text-align: left">Parameter</th>
          <th style="text-align: left">Value</th>
          <th style="text-align: left">Notes</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td style="text-align: left"><strong>Host / Address</strong></td>
          <td style="text-align: left"><code>darkpawns.labz0rz.com</code></td>
          <td style="text-align: left">Authoritative server address</td>
      </tr>
      <tr>
          <td style="text-align: left"><strong>Port</strong></td>
          <td style="text-align: left"><code>4000</code></td>
          <td style="text-align: left">Standard MUD communication port</td>
      </tr>
      <tr>
          <td style="text-align: left"><strong>Protocol</strong></td>
          <td style="text-align: left">Raw TCP / Telnet</td>
          <td style="text-align: left">Standard text-based telnet protocol</td>
      </tr>
      <tr>
          <td style="text-align: left"><strong>Character Encoding</strong></td>
          <td style="text-align: left"><code>UTF-8</code></td>
          <td style="text-align: left">Default encoding (falls back to <code>ISO-8859-1</code>)</td>
      </tr>
      <tr>
          <td style="text-align: left"><strong>Terminal Type</strong></td>
          <td style="text-align: left"><code>xterm-256color</code></td>
          <td style="text-align: left">Supports detailed MUD coloring schemas</td>
      </tr>
      <tr>
          <td style="text-align: left"><strong>Auto-Wrap</strong></td>
          <td style="text-align: left">Disabled / 80 Columns</td>
          <td style="text-align: left">MUD handles formatting internally</td>
      </tr>
  </tbody>
</table>
<hr>
<h2 id="3-recommended-desktop-software">3. Recommended Desktop Software</h2>
<h3 id="mudlet-cross-platform--graphical">Mudlet (Cross-Platform / Graphical)</h3>
<p><strong>Mudlet</strong> is the industry standard for graphical MUD clients. It is free, open source, and packed with power user features.</p>
<ul>
<li><strong>Platform:</strong> Windows, macOS, Linux</li>
<li><strong>Pros:</strong> Built-in Lua scripting engine, integrated auto-mapper, rich HTML/text rendering, and active community support.</li>
<li><strong>Get Mudlet:</strong> Download at <a href="https://www.mudlet.org/">mudlet.org</a>.</li>
</ul>
<h3 id="tintin-console-native--highly-optimized">TinTin++ (Console-Native / Highly Optimized)</h3>
<p><strong>TinTin++</strong> is a classic, terminal-based MUD client built for developers, system administrators, and players who value speed, keyboard shortcuts, and minimal resource footprints.</p>
<ul>
<li><strong>Platform:</strong> macOS, Linux, Windows (via WSL/Cygwin)</li>
<li><strong>Pros:</strong> Extremely fast execution, advanced regular-expression based trigger matching, and robust macro files.</li>
<li><strong>Get TinTin++:</strong> Install via package manager or download at <a href="https://tintin.mudhalla.net/">tintin.mudhalla.net</a>.
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#75715e"># Debian/Ubuntu</span>
</span></span><span style="display:flex;"><span>sudo apt install tintin++
</span></span><span style="display:flex;"><span><span style="color:#75715e"># macOS</span>
</span></span><span style="display:flex;"><span>brew install tintin++
</span></span></code></pre></div></li>
</ul>
<h3 id="tinyfugue-unix-classic">TinyFugue (UNIX Classic)</h3>
<p><strong>TinyFugue</strong> (tf) is a lightweight, line-oriented MUD client that has been popular among UNIX enthusiasts for decades.</p>
<ul>
<li><strong>Platform:</strong> macOS, Linux</li>
<li><strong>Get TinyFugue:</strong> Install via standard package managers:
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#75715e"># Debian/Ubuntu</span>
</span></span><span style="display:flex;"><span>sudo apt install tf
</span></span><span style="display:flex;"><span><span style="color:#75715e"># macOS</span>
</span></span><span style="display:flex;"><span>brew install tf
</span></span></code></pre></div></li>
</ul>
<hr>
<h2 id="4-command-line-connection-raw-telnet">4. Command-Line Connection (Raw Telnet)</h2>
<p>If you are using a raw terminal and have a telnet utility installed, you can connect immediately using a standard TCP shell command:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>telnet darkpawns.labz0rz.com <span style="color:#ae81ff">4000</span>
</span></span></code></pre></div><blockquote>
<p>[!NOTE]
<em>Note for macOS users:</em> Modern macOS does not ship with the <code>telnet</code> utility by default. You can install it using Homebrew (<code>brew install telnet</code>) or connect via the in-browser Web Client.</p>
</blockquote>
<hr>
<h2 id="5-first-steps-character-creation--survival">5. First Steps: Character Creation &amp; Survival</h2>
<ol>
<li><strong>Character Registration:</strong> Choose a unique, lore-appropriate name. Abstract or modern usernames (e.g., <code>Player123</code>, <code>DarkSlayer</code>) will be rejected.</li>
<li><strong>Race &amp; Class Selection:</strong> Read the class details carefully. If you are a new player, starting as an Assassin or Cleric offers a gentle learning curve.</li>
<li><strong>Immersive Reading:</strong> Read room descriptions! The text is loaded with active clues regarding exits, hidden locks, and hostile creatures.</li>
<li><strong>Command Syntax:</strong> Once connected, type <code>help</code> to receive a categorized list of basic actions. Type <code>help &lt;command&gt;</code> for detailed syntax guides.</li>
<li><strong>Auto-Save:</strong> Dark Pawns is entirely <strong>rent-free</strong>. Simply walk to the Temple in your starting city and type <code>quit</code> to safely save your character data and equipped items.</li>
</ol>
<hr>
<div style="text-align:center; margin-top: var(--space-xl); margin-bottom: var(--space-md);">
  <a href="/play" class="btn btn-primary">Enter the World</a>
</div>

## Pages
### Connection Instructions

<h1 id="directions">directions*</h1>
<hr>
<p>all directions are from market square unless otherwise noted.</p>
<h2 id="cities">cities</h2>
<p><strong>alaozar:</strong> 20 east, 5 north, 2 east, 30 north</p>
<p><strong>kir-oshi:</strong> 16 south, 14 west, 20 south, 4 east</p>
<p><strong>haven:</strong> (waterwalk required) all east, north, 2 east, follow road south</p>
<p><strong>xixieqi:</strong> (waterwalk required) 41 south</p>
<h2 id="newbie-zones">newbie zones</h2>
<p><strong>the cold village:</strong> 11 west, 7 north</p>
<p><strong>trolls:</strong> 18 west, 7 south</p>
<p><strong>ender:</strong> 13 south, 4 west, down</p>
<h2 id="midbie-zones">midbie zones</h2>
<p><strong>sea cave lagoon:</strong> (need waterwalk) 15 south, 28 east, 7 south, 2 west, south, west, south, west, north</p>
<p><strong>seilons:</strong> 22 west, 2 north</p>
<p><strong>battleground:</strong> all south, 28 west, 3 north</p>
<p><strong>biodome:</strong> (waterwalk required) 43 south, 11 east, north</p>
<p><strong>mines:</strong> all south, all west, 4 south, 10 west, 6 north, all east</p>
<p><strong>glyndwr (dirt zone):</strong> (waterwalk required) all east, north, east, south, 2 east</p>
<p><strong>orcs:</strong> 32 west, 5 south, down (From Market Square)</p>
<p><strong>ogres:</strong> 16 east, 7 north, west, 2 south</p>
<p><strong>volcano:</strong> 14 west, 7 north, 3 west, north, east, 4 north, 3 west, 3   north, east, north, east,   north, 3 east, north, 2 west, north, 2 east, north, east, 5 south, 3 east,   south, east, north, east,   6 east, pick door east, open door east, (speedwalk) 4 south,  5 down, west</p>
<p><strong>swamp of sadness:</strong> (waterwalk required) 18 south, 12 east</p>
<p><strong>hell:</strong> 15 west, 4 north, west, 3 north, 3 east</p>
<p><strong>bhyroga:</strong> 15 west, 4 north, west, 3 north, west, 5 north, 2 east, 4 north</p>
<p><strong>ice giants:</strong> (from bhyroga) all north through the gates (must be picked or unlocked with worn     gate key), continue to go all north, all east, s (caves are east)</p>
<h2 id="high-level-zones">high level zones</h2>
<p><strong>ssyzyils island:</strong> (from xixieqi) 12 east, 7 north, 5 west</p>
<p><strong>arden:</strong> (waterwalk required) 32 east, 12 north, 3 east, 2 north, east</p>
<p><strong>amber:</strong> (from arden) east, south, 3 east, 3 north, east, 3 north, 2 up, north, up, north</p>
<p><strong>kaedrien, the ice dragon:</strong> (from the northern gate of bhyroga) all north, all west, down, 3       north, up</p>
<p><strong>shax&rsquo;in, the brown dragon:</strong> 18 south, 30 west, 4 south, 8 west, south, 2 west, down</p>
<p><strong>xedent, the brass dragon:</strong> 18 south, 30 west, 5 south, 12 west, 8 north, 5 east</p>
<p><strong>elementals:</strong> (waterwalk required) 29 south, west, south west, south, 3 west, 4 south, west, south</p>
<p><strong>the grey keep:</strong> (GK) 18s, 30w, 3s, 7w, 2n</p>
<p><strong>desert grove:</strong> 18 south, 30 west, 4 south, 10 west, 4 north, west, 8 north</p>
<p><strong>desert tunnels:</strong> (from desert grove) 9 west, 5 south, speedwalk south, west</p>
<p><strong>drakaan, leader of the desert raiders:</strong> (from desert tunnels) down, 2 west, down, 2 west, north,   2 west, south, 3 west, 2 north, 2 up, 2 east, up, 4 east (he is east)</p>
<p><strong>western end of tunnels:</strong> (from desert tunnels) down, 2 west, down, 2 west, north, 2 west, south,   3 west, 2 north, up, west, up, 7 west</p>
<p><strong>nixith, the blue dragon:</strong> (from western end of tunnels) 2 west, 7 south, 8 west, down</p>
<p><strong>the lair of the dracolich:</strong> (from western end of tunnels) 11 west, 7 north</p>
<p><strong>paphoset&rsquo;s temple:</strong> (from western end of tunnels): 2 west, 3 north, 4 east, north</p>
<p><strong>the dark mages tower:</strong> (DMT - main portal room) 14 west, 7 north, 3 west, north, west, 4 north,   west, 5 north, east, 3 north, west (must kill ice mage to get key, or pick door), 2 north</p>
<h2 id="dark-mages-tower">dark mage&rsquo;s tower</h2>
<p>directions start from main portal room.</p>
<p><strong>the dark mage:</strong> w, s, e, 3s, n, e, 2s, w, s, e, 2s, 4e (he is north)</p>
<p><strong>apprentice mage:</strong> w, s, e, 3s, n, e, 2s, w, s, e, 2s, 2n (he is north)</p>
<p><strong>chess board:</strong> w, s, e, 3s, n, e, 2s, w, s, e, s</p>
<p><strong>the statue garden:</strong> w, s, e, 3s, n, e, 2s, e</p>
<p><strong>the reflection pool:</strong> w, s, e, 3s, n, e, 2s, 3w, n, w</p>
<p><strong>the demon kchz:</strong> 2n, w, s, w, n, w, n, s, w, n, w, s, s (he is west)</p>
<h2 id="gate-directions">gate directions</h2>
<p><strong>gate:</strong> 12 east, 3 north</p>
<p>middle is where you start off, it is a 3x3 square.</p>
<p><strong>north:</strong> kir draxin</p>
<p><strong>northeast:</strong> amber/arden forest</p>
<p><strong>east:</strong> DZ/haven</p>
<p><strong>southeast:</strong> swamp</p>
<p><strong>south:</strong> plains</p>
<p><strong>southwest:</strong> noirwood</p>
<p><strong>west:</strong> desert</p>
<p><strong>northwest:</strong> bhyroga/ice giants</p>
<hr>
<p><a href="http://www.dp-players.com/go.php">&lt;- back</a></p>

### Contact Information

<h1 id="contact">contact*</h1>
<hr>
<p><strong>Aidan:</strong> <a href="https://web.archive.org/web/20040803063038/http://www.dp-players.com/forum/profile.php?mode=viewprofile&u=2">
[aidan&rsquo;s profile]</a>
<a href="https://web.archive.org/web/20040803063038/mailto:aidan@dp-players.com">
[aidan&rsquo;s email]</a>
<a href="https://web.archive.org/web/20040803063038/http://www.dp-players.com/forum/privmsg.php?mode=post&u=2">
[private message]</a>
<a href="https://web.archive.org/web/20040803063038/aim:goim?screenname=zax0rz&message=Hello+Are+you+there?">
[aidan&rsquo;s AIM]</a></p>
<p><strong>Tanis:</strong> <a href="https://web.archive.org/web/20040803063038/http://www.dp-players.com/forum/profile.php?mode=viewprofile&u=3">
[tanis&rsquo;s profile]</a>
<a href="https://web.archive.org/web/20040803063038/mailto:tanis@dp-players.com">
[tanis&rsquo;s email]</a>
<a href="https://web.archive.org/web/20040803063038/http://www.dp-players.com/forum/privmsg.php?mode=post&u=3">
[private message]</a>
<a href="https://web.archive.org/web/20040803063038/aim:goim?screenname=Colin+Tierney&message=Hello+Are+you+there?">
[tanis&rsquo;s AIM]</a></p>
<pre><code>  Name:




  E-mail:




  Comments:
</code></pre>
<ul>
<li>we do not give out email addresses</li>
</ul>

### External Links

<h1 id="links">links*</h1>
<hr>
<h2 id="related">related</h2>
<p><a href="http://www.darkpawns.com/">the offical dark pawns homepage</a> -
contains general information about the game, an faq, city maps, and game updates.</p>
<p><a href="http://www.mudconnector.com/">the mud connector</a> -
the definitive resource for mudding on the web. well over a thousand different mud listings, resources
for players and admins alike, as well as a message board.</p>
<hr>
<p><a href="http://www.dp-players.com/index.php">&lt;- back</a></p>

### MUD Client Downloads

<h1 id="downloads">downloads*</h1>
<hr>
<p>Anything you could ever need to MUD.</p>
<h2 id="mud-clients">mud clients</h2>
<h2 id="gmud-v19bhttpwwwdp-playerscomdownloaddownloadphpfile0-206kb"><a href="http://www.dp-players.com/download/download.php?file=0">gMUD v1.9b</a> (206kb)</h2>
<p>Your standard MUD client. Freeware, ANSI support, relatively small scrollback buffer,
trigger and alias support.</p>
<p><a href="http://www.dp-players.com/download/download.php?file=1">MUSHClient v3.45</a>
(1.35mb) -
One of the more feature-rich MUD clients available. Seemingly endless scrollback buffer;
this one seems to be more popular with the trigger-reliant mudders. This is
shareware, so the full program costs $20. Or you can use a <a href="http://www.dp-players.com/go.php?dp=files/mushclient_serial.mud">serial code</a>.</p>
<p><a href="http://www.dp-players.com/download/download.php?file=2">zMUD v6.16</a>
(4.79mb) -
Probably one of the most popular clients available. This is a shareware version which
means you can only use it for 30 days before you have to pay the $25 registration
fee. Or you can use the provided <a href="http://www.dp-players.com/download/download.php?file=5">crack</a>
(188kb) - consult DAMN.NFO for instructions.</p>
<p><a href="http://www.dp-players.com/download/download.php?file=6">MCL v0.53.00</a>
(162kb) - MUD Client for Linux.</p>
<h2 id="dp-related">dp related</h2>
<p><a href="http://www.dp-players.com/download/download.php?file=3">Excel Viewer</a>
(3.72mb) -
Use this to view the Microsoft Excel files below if you do not have MS Office.</p>
<p><a href="http://www.dp-players.com/download/download.php?file=4">APR and Regen
Calculator</a> (6.12kb) -
Determine APR based on damage dice and your cleric or mage&rsquo;s regen standing, resting,
and sleeping. Consult the README for more information. Thanks to Whistler for making
this.</p>
<hr>
<p><a href="http://www.dp-players.com/index.php">&lt;- back</a></p>

