Merge pull request #47 from GameServerPanel/copilot/update-documentation-and-fix-cart
Fix billing website: cart.php error, documentation styling, and game server port information
This commit is contained in:
commit
e90d2ec015
148 changed files with 1063 additions and 1018 deletions
|
|
@ -16,7 +16,8 @@ $user_id = isset($_SESSION['website_user_id']) ? intval($_SESSION['website_user_
|
|||
(isset($_SESSION['user_id']) ? intval($_SESSION['user_id']) : 0);
|
||||
|
||||
if ($user_id <= 0) {
|
||||
header('Location: /login.php?return_to=' . urlencode($_SERVER['REQUEST_URI']));
|
||||
$return_to = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '/cart.php';
|
||||
header('Location: /login.php?return_to=' . urlencode($return_to));
|
||||
exit;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -128,21 +128,7 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
<link rel="stylesheet" href="css/header.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0f172a;
|
||||
--card: #111827;
|
||||
--text: #e5e7eb;
|
||||
--muted: #94a3b8;
|
||||
--accent: #38bdf8;
|
||||
--border: #1f2937;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial;
|
||||
margin: 0;
|
||||
}
|
||||
/* Documentation-specific styles - consistent with site theme */
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
|
|
@ -157,28 +143,29 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
.header h1 {
|
||||
font-size: 32px;
|
||||
margin: 0 0 12px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.header p {
|
||||
color: var(--muted);
|
||||
color: rgba(255,255,255,0.7);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 8px;
|
||||
color: var(--accent);
|
||||
color: #7fb3ff;
|
||||
text-decoration: none;
|
||||
margin-bottom: 20px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
background: #1f2937;
|
||||
border-color: var(--accent);
|
||||
background: rgba(255,255,255,0.06);
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
.category-section {
|
||||
|
|
@ -187,10 +174,10 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
|
||||
.category-title {
|
||||
font-size: 24px;
|
||||
color: var(--accent);
|
||||
color: #667eea;
|
||||
margin: 0 0 20px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 2px solid var(--border);
|
||||
border-bottom: 2px solid rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
.docs-grid {
|
||||
|
|
@ -200,8 +187,8 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
}
|
||||
|
||||
.doc-card {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
transition: all 0.2s;
|
||||
|
|
@ -211,15 +198,15 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
}
|
||||
|
||||
.doc-card:hover {
|
||||
border-color: var(--accent);
|
||||
border-color: #667eea;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
|
||||
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
|
||||
}
|
||||
|
||||
.doc-icon-wrapper {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: #1f2937;
|
||||
background: rgba(0,0,0,0.3);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -235,26 +222,26 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
|
||||
.doc-icon-placeholder {
|
||||
font-size: 28px;
|
||||
color: var(--muted);
|
||||
color: rgba(255,255,255,0.6);
|
||||
}
|
||||
|
||||
.doc-title {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
color: #fff;
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
.doc-description {
|
||||
font-size: 14px;
|
||||
color: var(--muted);
|
||||
color: rgba(255,255,255,0.7);
|
||||
margin: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.doc-view-container {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 12px;
|
||||
padding: 30px;
|
||||
min-height: 400px;
|
||||
|
|
@ -264,22 +251,23 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
.doc-view-container h2,
|
||||
.doc-view-container h3,
|
||||
.doc-view-container h4 {
|
||||
color: var(--text);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.doc-view-container a {
|
||||
color: var(--accent);
|
||||
color: #7fb3ff;
|
||||
}
|
||||
|
||||
.doc-view-container code {
|
||||
background: #1f2937;
|
||||
background: rgba(0,0,0,0.3);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-family: 'Courier New', monospace;
|
||||
color: #a5b4fc;
|
||||
}
|
||||
|
||||
.doc-view-container pre {
|
||||
background: #1f2937;
|
||||
background: rgba(0,0,0,0.3);
|
||||
padding: 15px;
|
||||
border-radius: 8px;
|
||||
overflow-x: auto;
|
||||
|
|
@ -291,8 +279,8 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
}
|
||||
|
||||
.nav-links {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
margin-bottom: 30px;
|
||||
|
|
@ -300,7 +288,7 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
|
||||
.nav-links h3 {
|
||||
margin: 0 0 15px;
|
||||
color: var(--accent);
|
||||
color: #667eea;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
|
@ -308,18 +296,18 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
display: inline-block;
|
||||
padding: 8px 15px;
|
||||
margin: 5px 10px 5px 0;
|
||||
background: #1f2937;
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(0,0,0,0.3);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 5px;
|
||||
color: var(--accent);
|
||||
color: #7fb3ff;
|
||||
text-decoration: none;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
background: var(--accent);
|
||||
color: var(--bg);
|
||||
border-color: var(--accent);
|
||||
background: #667eea;
|
||||
color: #fff;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
.return-to-top {
|
||||
|
|
@ -330,17 +318,17 @@ uksort($grouped, function($a, $b) use ($grouped) {
|
|||
.return-to-top a {
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 8px;
|
||||
color: var(--accent);
|
||||
color: #7fb3ff;
|
||||
text-decoration: none;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.return-to-top a:hover {
|
||||
background: #1f2937;
|
||||
border-color: var(--accent);
|
||||
background: rgba(255,255,255,0.06);
|
||||
border-color: #667eea;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>7 Days to Die</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your 7 Days to Die server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> 7daystodie_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-logfile 7DaysToDieServer_Data/output_log.txt -quit -batchmode -nographics -configfile=serverconfig.xml -dedicated</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7DaysToDieServer_Data/output_log.txt</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">26900</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Web console uses port 8080-8090 TCP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Aliens vs Predator</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Aliens vs Predator server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> aliensvspredator_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">logfiles/dedicated_console.txt</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> lobbyport.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 18</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Age of Chivalry</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Age of Chivalry server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> aoc</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>ARK:SE</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your ARK:SE server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> arkse_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MAP%%IP%%PORT%%QUERY_PORT%%PLAYERS%%RCON%%RCON_PORT%%CONTROL_PASSWORD%%PDS%%PDI%%PDD%%PUS%%PUI%%PUD%%ASDN%%POP%%POPI%%PTA%?listen %AMM% %FACF% %NTFF% -server -log</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 127</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7777</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 27015 UDP, RCON 27020 TCP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Arma Reforger</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Arma Reforger server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> arma-reforger_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2001</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Arma2 CO</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Arma2 CO server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> arma2co_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MODLIST% -profiles=cfg -name=player %CFG% %CONFIG% %IP% %PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">cfg\arma2oaserver.RPT</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Arma2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Arma2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> arma2oa_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MODLIST% -cfg=cfg\basic.cfg -config=cfg\server.cfg -name=player -profiles=profile %IP% %PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">cfg/arma2oaserver.RPT</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Arma 3</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Arma 3 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> arma3_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%CONFIG% %CFG% %PROFILES% %NAME% %IP% %PORT% %PLAYERS% %MODLIST% %SERVERMODLIST% %AUTOINIT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Assetto Corsa</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Assetto Corsa server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> assettocorsa_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> UDP_PORT=.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 22</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">9600</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP and TCP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> HTTP port is 8081 TCP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Atlas</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Atlas server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> atlas_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Ocean%SX%%SY%%ASDN%%CONTROL_PASSWORD%%PLAYERS%%RPS%%QUERY_PORT%%PORT%%IP%%RCON%%RCON_PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 127</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">5761</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 57561 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Avorion</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Avorion server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> avorion_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">--datapath ./galaxy/ --galaxy-name main %PORT% %QUERY_PORT% %STEAM_PORT% %PLAYERS% %HOSTNAME% %SEED% %ADMIN% %INFINITE_RESOURCES% %DIFFICULTY% %COLLISION_DAMAGE% %SAME_START_SECTOR% %PUBLIC% %LISTED% %USE_STEAM_NETWORKING%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 100</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27000</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 27003 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>BEC</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your BEC server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> bec_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">--dsc --dec -f config.cfg</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">log/config/belog/be*.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 1</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Battlefield 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Battlefield 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> bf2</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+dedicated %GAME_TYPE% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">16567</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 29900 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Battlefield Bad Company 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Battlefield Bad Company 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> bfbc2</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-serverInstancePath "Instance/" -mapPack2Enabled 1 %PORT% %QUERY_PORT% %PLAYERS% -region EU -runtimeLog 0 -displayErrors 0 -displayAsserts 0 -crashDumpAsserts 0 -serverAdminLogs 1 -plasmaServerLog 1 -revisionLevel 8 -revisionKey 7C0A303E-F4D2-985E-763D-E7C41B1E06A3 %GAMEMODEID%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Instance/AdminLogs/ServerAdminLog.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">19567</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Big Brother Bot</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Big Brother Bot server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> bigbrotherbot_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">b3.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Blood Frontier</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Blood Frontier server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> bloodfrontier</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-ss3 %MAP% %IP% %PORT% %QUERY_PORT% %PLAYERS% -sm127.0.0.1</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>BrainBread 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your BrainBread 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> brainbread2_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 12</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofduty_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %IP% %PORT% %BASE_PATH% %HOME_PATH% %FS_GAME% %PB% %EXEC% %CONTROL_PASSWORD% %PLAYERS% +map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofduty2_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %IP% %PORT% %BASE_PATH% %HOME_PATH% %OUTPUT_PATH% %USER_PATH% %FS_GAME% %PB% +set sv_mapRotation gametype tdm map mp_breakout %EXEC% %CONTROL_PASSWORD% %PLAYERS% +map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty 4: Modern Warfare</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty 4: Modern Warfare server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofduty4mw_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %IP% %PORT% %BASE_PATH% %HOME_PATH% %SAVE_PATH% %FS_GAME% %PB% %EXEC% %CONTROL_PASSWORD% %PLAYERS% +map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty: Modern Warfare 2 (IW4x)</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty: Modern Warfare 2 (IW4x) server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofdutymw2_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-dedicated -stdout %IP% %PORT% %FS_GAME% %EXEC% %CONTROL_PASSWORD% %PLAYERS% +set party_enable 0 +map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">userraw/logs/console_mp.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 18</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port (IW4x)</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty: Modern Warfare 3</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty: Modern Warfare 3 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofdutymw3_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %IP% %PORT% %QUERY_PORT% %AUTH_PORT% %EXEC% %CONTROL_PASSWORD% %PLAYERS% +start_map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 18</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty: United Offensive</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty: United Offensive server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofdutyuo_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %IP% %PORT% %BASE_PATH% %HOME_PATH% %FS_GAME% %PB% %EXEC% %CONTROL_PASSWORD% %PLAYERS% +map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Call of Duty: World at War</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Call of Duty: World at War server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> callofdutywaw_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %IP% %PORT% %BASE_PATH% %HOME_PATH% %SAVE_PATH% %FS_GAME% %PB% %EXEC% %CONTROL_PASSWORD% %PLAYERS% +map_rotate</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Citadel: Forged with Fire</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Citadel: Forged with Fire server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> citadelfwf_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-nosteamclient -server</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Citadel/Saved/Logs/Citadel.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Port=.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 70</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>CoD: Black Ops</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your CoD: Black Ops server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">4976</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Colony Survival</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Colony Survival server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> colonysurvival_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP% %PORT% %QUERY_PORT% %PLAYERS% %HOSTNAME% %MAP% %MSTON% %MSTDAY% %MSTDBL% %SEED% %VAC% +server.networktype SteamOnline -logfile output.txt</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">output.txt</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 200</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27016</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Conan Exiles</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Conan Exiles server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> conanexiles_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%PORT% %QUERY_PORT% %PLAYERS% -log</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">ConanSandbox/Saved/Logs/ConanSandbox.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 70</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7777</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>CS2D</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your CS2D server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> cs2d_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%PORT% %PLAYERS% %CONTROL_PASSWORD% %HOSTNAME% %MAP%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>CSPromod</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your CSPromod server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Counter Strike Source</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Counter Strike Source server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Counter-Strike</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Counter-Strike server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> cstrike</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Counter-Strike Condition Zero</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Counter-Strike Condition Zero server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>DayZ</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your DayZ server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dayz_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MODLIST% %IGNOREMOD% %IP% %PORT% %ADMINLOG% %DOLOGS% %CONFIG% -profiles=profile %FC% %NFP% %SERVERMODLIST%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">profile/*.RPT</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 127</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>DayZ Mod (CO)</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your DayZ Mod (CO) server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dayz_arma2co_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MODLIST% -cfg=cfg\basic.cfg -config=cfg\server.cfg -name=dayz -profiles=cfg %IP% %PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">cfg/arma2oaserver.RPT</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Port =.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>DayZ Mod (OA)</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your DayZ Mod (OA) server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dayz_arma2oa_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MEMORY% %PORT% %PLAYERS% "-config=profile\server.cfg" "-cfg=profile\basic.cfg" -profiles=profile -noSound</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">profile/arma2oaserver.RPT</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> (steamPort\s*=\s*)(.*)(;)</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>DayZ Mod</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your DayZ Mod server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Dimrod Epoch Mod</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Dimrod Epoch Mod server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Death Match Classic</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Death Match Classic server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dmc</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Day of Defeat</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Day of Defeat server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dod</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Day of Defeat Source</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Day of Defeat Source server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dods</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Day of Infamy</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Day of Infamy server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> doi</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Dont Starve Together</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Dont Starve Together server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dontstarvetogether_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP% %PORT% -persistent_storage_root {OGP_HOME_DIR} -conf_dir config -cluster Server</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 6</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">10999</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Master server uses 27016-27017 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Dystopia</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Dystopia server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> dystopia</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Eco</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Eco server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> eco_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> GameServerPort":\s\d*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 100</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">3000</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Web server uses 3001 TCP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Empyrion</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Empyrion server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> empyriongs_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-dedicated dedicated.yaml</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Logs/Dedicated.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Srv_Port:.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 128</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">30000</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Wolfenstein: Enemy Territory</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Wolfenstein: Enemy Territory server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>DayZ Epoch Mod</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your DayZ Epoch Mod server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> epochmod_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;"> %MODLIST% -cfg=cfg\basic.cfg -config=cfg\server.cfg -name=dayz -profiles=cfg %IP% %PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">cfg/arma2oaserver.RPT</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Port =.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">2302</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Steam query port is 2303 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Eternal-Silence</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Eternal-Silence server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> esmod</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Euro Truck Simulator 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Euro Truck Simulator 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> ets2_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-nosingle</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> connection_dedicated_port:.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 8</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Multiplayer mod port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>factorio</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your factorio server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> factorio_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%SAVES% --server-settings ./data/server-settings.json %WL% %PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">factorio-current.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 100</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">34197</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Feed The Beast Server</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Feed The Beast Server server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> feedthebeast</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">logs/latest.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> server-port=.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">25565</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> TCP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 25565 UDP, RCON varies</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>FlightGear Multiplayer Server</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your FlightGear Multiplayer Server server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> fgms_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> server.port = .*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>FiveM</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your FiveM server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> fivem_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+exec server.cfg</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">30120</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Fistful of Frags</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Fistful of Frags server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>FreeCol</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your FreeCol server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> freecol_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">java %XMX% -jar FreeCol.jar --server %HOSTNAME% %PORT% --log-console</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Garrys Mod</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Garrys Mod server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> garrysmod</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 128</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Gearbox</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Gearbox server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> gearbox</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %HOSTNAME% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Halo CE</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Halo CE server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Operation Harsh Doorstop</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Operation Harsh Doorstop server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> harsh_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MAP%?%bBotAutofill%%BLUFORFACTION%?%OPFORFACTION%?%BLUFORNUMBOTS%?%OPFORNUMBOTS%?%BLUFORTICKETS%?%OPFORTICKETS%?%bDisableKitRestrictions% %IP% %PORT% %QUERY_PORT% %SERVERNAME%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">HarshDoorstop/Saved/Logs/HarshDoorstop.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Hidden: Source</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Hidden: Source server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> hidden_source</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Half-Life 2: Deathmatch</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Half-Life 2: Deathmatch server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Half Life: Death Match</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Half Life: Death Match server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> hldm_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %HOSTNAME% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>HLTV</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your HLTV server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> hltv_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP% %PORT% %CONNECT% %PLAYERS% %PID_FILE% +hostname "%HOSTNAME%" +name "%HOSTNAME%"</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 128</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Homefront</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Homefront server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> homefront_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">SERVER %PLAYERS% %IP% %PORT% %STEAM_PORT% %RCON1_PORT% %RCON2_PORT% -configsubdir=DedicatedProfile_DefaultProfile</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Hurtworld</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Hurtworld server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> hurtworld_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-batchmode -nographics -exec "%PORT% %MAP%;%QUERY_PORT%;%PLAYERS%;%HOSTNAME%" -logfile "gamelog.txt"</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">gamelog.txt</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 120</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">12871</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is same as game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>IL-2 Sturmovik</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your IL-2 Sturmovik server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> il2_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> localPort=.*</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Insurgency</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Insurgency server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Insurgency: Modern Infantry Combat</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Insurgency: Modern Infantry Combat server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> insurgencymic_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Insurgency: Sandstorm</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Insurgency: Sandstorm server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> insurgencysandstorm_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MAP%%SCENARIO%%PLAYERS%%PASSWORD% %PORT% %QUERY_PORT% %SERVERNAME% %MAPCYCLE% %CONTROL_PASSWORD% %RCON_PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27102</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 27131 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>IV Multiplayer</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your IV Multiplayer server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> ivmp_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">ivmp-svr.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> port</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 48</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Just Cause 2 Multiplayer</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Just Cause 2 Multiplayer server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> jcmp_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> (BindPort\s*=)(.*)</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 5000</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7777</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Jedi Knight 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Jedi Knight 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> jediknight2</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 +exec server.cfg %GAME_TYPE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Jedi Knight: Jedi Academy</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Jedi Knight: Jedi Academy server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> jediknightja</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 2 %GAME_TYPE% %IP% %PORT% %PLAYERS% %SVPURE% +exec server.cfg</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Killing Floor</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Killing Floor server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> killingfloor</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">server %MAP%.rom%GAME_TYPE%%PLAYERS%%IP%%PORT%%VAC% %INI% log=server.log -nohomedir</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7707</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 7708 UDP, Web admin 8075 TCP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Killing Floor 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Killing Floor 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> killingfloor2_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MAP%%GAMEMODE%%DIFFICULTY%%GAMELENGTH%%PLAYERS% %PORT% %IP% %WEB_ADMIN_PORT% %QUERY_PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 12</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 27016 UDP, Web Admin 8080 TCP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Left 4 Dead</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Left 4 Dead server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> left4dead_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Left 4 Dead 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Left 4 Dead 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> left4dead2_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 32</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Life is Feudal</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Life is Feudal server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> lifeisfeudal_win32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-worldID %PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> port</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">28000</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Mount and Blade Warband</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Mount and Blade Warband server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7240</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Mafia 2 Online</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Mafia 2 Online server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> mafia2online_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> port</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 1000</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Miscreated</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Miscreated server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> miscreated_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%IP% %PORT% %HOSTNAME% %PLAYERS% +map islands %GAMESERVERID% %WHITELIST% %HTTPSERVER%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">server.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 200</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">64090</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port varies</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Medal Of Honor: Allied Assault</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Medal Of Honor: Allied Assault server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> mohaa</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 1 +set sv_maxrate 5000 +set net_noipx 1 +exec server.cfg %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Medal Of Honor: Breakthrough (Windows)</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Medal Of Honor: Breakthrough (Windows) server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Medal Of Honor: Spearhead</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Medal Of Honor: Spearhead server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> mohsp</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">+set dedicated 1 +set sv_maxrate 5000 +set net_noipx 1 +exec server.cfg %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Medal Of Honor: Spearhead Demo Server (Windows)</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Medal Of Honor: Spearhead Demo Server (Windows) server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Mordhau</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Mordhau server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> mordhau_linux64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MAP% -log %IP% %PORT% %BEACON_PORT% %QUERY_PORT%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Multi Theft Auto</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Multi Theft Auto server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> multitheftauto_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">mods/deathmatch/logs/server.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> serverport</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 4096</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">22003</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Murmur [Mumble server]</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Murmur [Mumble server] server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">64738</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP and TCP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Same port for voice and control</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Nexuiz</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Nexuiz server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">26000</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>No More Room In Hell</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your No More Room In Hell server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Natural Selection 2</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Natural Selection 2 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Nuclear Dawn (Linux)</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Nuclear Dawn (Linux) server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,13 @@
|
|||
<p><strong>Outlaws of the Old West</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Outlaws of the Old West server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> ootow</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">/Game/Maps/MainMap/MainMap -log %IP% %PORT% %QUERY_PORT% %HOSTNAME% %PLAYERS% %CONTROL_PASSWORD% %TYPE%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Outlaws/Saved/Logs/Outlaws.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 150</li>
|
||||
</ul>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<p style="color: #e5e7eb;">
|
||||
This game server can be hosted on a VPS or dedicated server. Port configuration depends on the game engine and can typically be set in the server configuration files.
|
||||
</p>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Refer to the official game server documentation for specific port requirements and configuration details.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>OpenTTD</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your OpenTTD server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> openttd_linux32</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">-D %IP%:%PORT% %SAVEGAME%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 255</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">3979</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP and TCP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>PixARK</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your PixARK server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> pixark_win64</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%MAP%?listen%PLAYERS%%IP%%PORT%%QUERY_PORT%%CONTROL_PASSWORD% %DBE% %NHD% %CUBE_PORT% %CWN% %SEED% -nosteamclient -game -server -log</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">ShooterGame/Saved/Logs/ShooterGame.log</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 70</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7777</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port is 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Pirates, Vikings and Knights II</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Pirates, Vikings and Knights II server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> pvkii</li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">%GAME_TYPE% %PID_FILE% %MAP% %IP% %PORT% %PLAYERS%</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> 64</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Query port also uses 27015 UDP</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
|
|
@ -9,14 +9,15 @@
|
|||
<p><strong>Quake 3</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Quake 3 server.</p>
|
||||
|
||||
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Quick Info</h3>
|
||||
<h3 style="color: #ffffff; margin-top: 0;">Server Information</h3>
|
||||
<ul style="color: #e5e7eb; line-height: 1.8;">
|
||||
<li><strong style="color: #ffffff;">Game Key:</strong> </li>
|
||||
<li><strong style="color: #ffffff;">Startup Command:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Log File:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">Not specified</code></li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Max Players:</strong> Not specified</li>
|
||||
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27960</code></li>
|
||||
<li><strong style="color: #ffffff;">Protocol:</strong> UDP</li>
|
||||
<li><strong style="color: #ffffff;">Additional Info:</strong> Default game port</li>
|
||||
</ul>
|
||||
<p style="color: #e5e7eb; margin-top: 12px; font-size: 0.95em;">
|
||||
<em>Note: When running on a VPS or dedicated server, you can use the default port or configure a custom port in your server configuration file.</em>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Getting Started</h2>
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue