mvoed docs folder back

This commit is contained in:
Frank Harris 2025-11-10 13:06:39 -05:00
parent 0d5771fce4
commit b2a99aa2c5
455 changed files with 16356 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* 7 Days to Die Server Documentation
*/
?>
<h1>7 Days to Die Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a 7 Days to Die server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>7 Days to Die</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your 7 Days to Die server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official 7 Days to Die community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "7 Days to Die",
"description": "Setup and configuration guide for 7 Days to Die game servers",
"category": "game",
"order": 0
}

View file

@ -0,0 +1,249 @@
# Documentation Enhancement Summary
## Overview
This document summarizes the comprehensive enhancements made to the billing module's documentation system and session handling.
## Issues Resolved
### 1. Documentation Page Login Button Issue ✅
**Problem:** Documentation page showed "Login" button even when user was logged in.
**Root Cause:** docs.php used basic `session_start()` instead of the website's session name.
**Solution:** Changed to use `gameservers_website` session name to match rest of website.
### 2. Cart Page Display Issue ✅
**Problem:** Cart page didn't display when clicking menu link.
**Root Cause:** cart.php also used basic `session_start()` causing session inconsistency.
**Solution:** Changed to use `gameservers_website` session name for consistency.
### 3. Documentation Content Enhancement ✅
**Problem:** Documentation was basic, system-specific, and not comprehensive enough for SEO.
**Solution:** Created detailed, XML-independent, general hosting guides for major games.
## Changes Made
### Session Fixes
**Files Modified:**
- `modules/billing/docs.php`
- `modules/billing/cart.php`
**Change:**
```php
// OLD
session_start();
// NEW
if (session_status() === PHP_SESSION_NONE) {
session_name("gameservers_website");
session_start();
}
```
This ensures the documentation and cart pages use the same session as the rest of the website (login.php, menu.php, etc.), so login state is properly detected.
### Documentation Enhancements
#### Games Enhanced (3 of 151 total)
1. **Minecraft Java Edition** (549 lines)
2. **CS:GO & CS2** (584 lines)
3. **Rust** (455 lines)
#### Documentation Structure (Template for All Games)
Each comprehensive guide includes:
1. **Navigation Bar** - Quick links to all sections
2. **Quick Info Section** - Essential details at a glance:
- Default ports (game, RCON, query)
- RAM requirements (min/recommended)
- Storage requirements
- Log file locations
- Default configurations
- Protocol information
3. **Installation & Setup** - Complete instructions:
- System requirements (CPU, RAM, storage, bandwidth)
- Linux installation steps
- Windows installation steps
- SteamCMD usage (where applicable)
- First-time setup procedures
4. **Server Configuration** - Detailed config guides:
- All configuration files explained
- Every parameter documented
- Example configurations
- Best practices
5. **Startup Parameters** - Complete reference:
- All command-line parameters
- Parameter breakdown and explanations
- Startup script examples (Linux & Windows)
- Advanced optimization flags
6. **Plugins & Mods** - Enhancement guides:
- Plugin/mod platform installation
- Popular plugins/mods list with descriptions
- Installation procedures
- Configuration examples
7. **Troubleshooting** - Common issues & solutions:
- Server won't start
- Connection issues
- Performance problems
- Error messages and fixes
- Diagnostic commands
8. **Performance Optimization** - Tuning guides:
- Configuration optimization
- Resource management
- Automation scripts
- Monitoring tips
- Scheduled maintenance
9. **Additional Resources** - External links:
- Official documentation
- Community resources
- Tools and utilities
- Support forums
## Documentation Principles
### ✅ XML-Independent
- Does NOT pull information from panel XML files
- Does NOT reference `modules/config_games/server_configs/`
- Stands alone as general game server hosting information
### ✅ General Hosting Focus
- Written from VPS/dedicated server perspective
- Not specific to our panel system
- Applicable to any hosting environment
- User could follow these guides on any server
### ✅ SEO-Optimized
- Comprehensive content (400-600 lines per game)
- Covers all aspects of server hosting
- Natural keyword integration
- Designed to rank in Google search results
- Goal: Become go-to resource for game server hosting
### ✅ Professional Quality
- Clean, modern formatting
- Code examples with syntax highlighting
- Internal navigation between sections
- Consistent structure across all games
- Production-ready commands and configs
## Benefits
### For Users
- Complete guides for setting up game servers
- Troubleshooting help for common issues
- Performance optimization tips
- All info in one place
### For Business
- SEO boost - comprehensive guides rank well
- Authority building - comprehensive content
- Traffic generation - users find guides via Google
- Reduced support load - self-service documentation
### For Future Development
- Template established for remaining 148 games
- Consistent structure makes expansion easy
- Can be enhanced incrementally
- Scalable approach
## Remaining Games (148)
The same comprehensive template can be applied to all remaining games:
- ARK: Survival Evolved
- Valheim
- 7 Days to Die
- Team Fortress 2
- Garry's Mod
- Terraria
- Don't Starve Together
- Project Zomboid
- Satisfactory
- V Rising
- Palworld
- And 138 more...
## Testing Completed
✅ PHP syntax validation - No errors
✅ CodeQL security scan - No issues
✅ Session handling verified
✅ Documentation structure validated
✅ No XML references confirmed
✅ File permissions correct
## Implementation Notes
### Session Name Consistency
The entire billing module now uses `gameservers_website` session name:
- login.php ✅
- register.php ✅
- logout.php ✅
- menu.php ✅
- docs.php ✅ (FIXED)
- cart.php ✅ (FIXED)
- my_account.php ✅
- All other pages ✅
### Documentation File Structure
```
docs/
├── minecraft/
│ ├── index.php (549 lines - comprehensive)
│ ├── index_old.php (backup)
│ ├── metadata.json
│ └── icon.png
├── csgo/
│ ├── index.php (584 lines - comprehensive)
│ ├── index_old.php (backup)
│ ├── metadata.json
│ └── icon.jpg
├── rust/
│ ├── index.php (455 lines - comprehensive)
│ ├── index_old.php (backup)
│ ├── metadata.json
│ └── icon.png
└── [148 other games with basic docs to be enhanced]
```
## Future Enhancement Ideas
1. **Add More Games** - Apply template to remaining 148 games
2. **Video Tutorials** - Link to video guides where available
3. **Interactive Commands** - Copy-to-clipboard for commands
4. **Version History** - Track game version updates
5. **Community Contributions** - Allow user-submitted tips
6. **Search Functionality** - Cross-game documentation search
7. **Translations** - Multi-language support
## Maintenance
### Keeping Documentation Current
- Monitor game updates and patches
- Update documentation quarterly
- Track breaking changes in games
- Community feedback integration
### Backup Strategy
All original documentation files are preserved as `index_old.php` in each game folder for reference and potential rollback if needed.
## Conclusion
The documentation system is now:
- ✅ Fully functional with correct session handling
- ✅ Comprehensive for 3 major games (Minecraft, CS:GO/CS2, Rust)
- ✅ Template-based for easy expansion to remaining games
- ✅ SEO-optimized for Google search ranking
- ✅ XML-independent and general hosting focused
- ✅ Production-ready and tested
**Status:** Ready for review and deployment
---
*Created: November 8, 2024*
*Last Updated: November 8, 2024*

View file

@ -0,0 +1,271 @@
# Game Server Documentation Expansion Plan
## Executive Summary
This document outlines the comprehensive plan for enhancing documentation for all 151 games supported by the GameServerPanel billing module. As of the current phase, 6 games have comprehensive documentation (200+ lines each), with 145 games remaining at basic level (67 lines average).
## Completed Games (6/151)
### Phase 1 - Already Enhanced (3 games)
1. **Minecraft Java Edition** (549 lines) - Complete
2. **CS:GO & CS2** (584 lines) - Complete
3. **Rust** (455 lines) - Complete
### Phase 2 - Recently Enhanced (3 games)
4. **Valheim** (325 lines) - Complete
5. **ARK: Survival Evolved** (303 lines) - Complete
6. **Terraria** (359 lines) - Complete
## Documentation Enhancement Template
Each enhanced game documentation includes:
### 1. Navigation Bar
- Quick links to all major sections
- Improves user experience and SEO
- Anchor links for easy jumping
### 2. Quick Info Section (Required Details)
- Default ports (game, query, RCON)
- Protocol (TCP/UDP)
- RAM requirements (min/recommended)
- CPU recommendations
- Storage requirements
- SteamCMD App ID (if applicable)
- Max players
- Config file locations
- Log file paths
### 3. Installation & Setup
- System requirements breakdown
- Windows installation steps
- Linux installation steps (preferred with SteamCMD)
- macOS installation (if supported)
- First-time setup procedures
- Directory structure explanation
### 4. Server Configuration
- Configuration file locations
- Complete parameter reference
- Example configurations
- Best practices for settings
- Multiple configuration scenarios
### 5. Startup Parameters
- Command-line options table
- Parameter descriptions
- Example startup scripts (Windows & Linux)
- Advanced optimization flags
- Launch parameter combinations
### 6. Port Forwarding & Networking
- Required ports list with protocols
- Router configuration examples
- Firewall rules (UFW for Linux, Windows Firewall)
- NAT configuration guidance
- DMZ considerations
### 7. Plugins/Mods/Extensions
- Popular mod loaders (if applicable)
- Plugin installation procedures
- Popular plugins/mods list
- Configuration examples
- Compatibility notes
### 8. Troubleshooting
- Server won't start solutions
- Connection issues diagnosis
- Performance problems
- Common error messages
- Log file analysis
- Diagnostic commands
### 9. Performance Optimization
- Server sizing guidelines by player count
- Resource management tips
- Configuration tuning
- Automated maintenance
- Monitoring recommendations
### 10. Admin Tools & Commands
- Console commands reference
- Admin authentication
- User management
- Server control commands
- Debugging tools
### 11. Backup & Recovery
- Backup strategy recommendations
- Automated backup scripts (Linux/Windows)
- World/save file locations
- Recovery procedures
- Disaster recovery planning
### 12. Additional Resources
- Official documentation links
- Community resources
- Forums and support
- Tool recommendations
- Related guides
## Priority Game List (Next 20 Games)
### High Priority (Most Popular)
1. Team Fortress 2 (TF2)
2. Garry's Mod
3. Don't Starve Together
4. Left 4 Dead 2
5. Counter-Strike: Source
6. Counter-Strike 1.6
7. Project Zomboid
8. V Rising
9. Satisfactory
10. Conan Exiles
### Medium Priority (Popular)
11. 7 Days to Die
12. Killing Floor 2
13. Insurgency Sandstorm
14. Squad
15. Arma 3
16. DayZ
17. Space Engineers
18. Eco
19. Factorio
20. Unturned
## Research Sources for Each Game
### Primary Sources
1. Official game websites and documentation
2. Official game wikis (Fandom, Wiki.gg)
3. Steam Community guides
4. Developer documentation
### Secondary Sources
1. Hosting provider knowledge bases (Nitrado, GTXGaming, etc.)
2. Reddit communities (r/[gamename])
3. GitHub repositories for tools/mods
4. YouTube server setup tutorials
5. Forum threads (AlliedModders, SRCDS, etc.)
### Information to Gather
- SteamCMD App ID
- Default ports and protocols
- Minimum and recommended hardware
- Configuration file formats and locations
- Startup parameters and options
- Common troubleshooting issues
- Popular mods/plugins
- Admin tools and commands
- Performance optimization tips
## Implementation Strategy
### Batch Processing Approach
1. **Research Phase** - Gather information for 5-10 games at once
2. **Documentation Phase** - Write comprehensive guides using template
3. **Review Phase** - Syntax check, link validation, formatting
4. **Commit Phase** - Commit in batches to track progress
### Quality Standards
- Minimum 300 lines per enhanced game
- All sections from template must be present
- At least 5 external resource links
- Proper formatting with code blocks and tables
- No syntax errors (PHP validation)
- SEO-optimized content
### Estimated Timeline
- **Per game:** 30-45 minutes (research + writing)
- **Batch of 10:** 5-8 hours
- **All 145 remaining:** 72-108 hours total work
## Automation Opportunities
### Possible Automations
1. **Port extraction** from XML config files
2. **Template generation** with game-specific placeholders
3. **Batch PHP syntax checking**
4. **Link validation** across all docs
5. **Formatting consistency** checks
### Manual Work Required
- Game-specific troubleshooting research
- Community resource identification
- Mod/plugin ecosystem understanding
- Performance optimization specifics
- Platform-specific considerations
## Progress Tracking
### Current Status
- **Enhanced:** 6 games (4% complete)
- **Remaining:** 145 games (96% to do)
- **Total Documentation Lines:** ~2,575 lines (enhanced games only)
- **Average Lines per Enhanced Game:** 429 lines
### Completion Milestones
- **10% (15 games):** Target date TBD
- **25% (38 games):** Target date TBD
- **50% (76 games):** Target date TBD
- **75% (113 games):** Target date TBD
- **100% (151 games):** Target date TBD
## Benefits of Completion
### For Users
- Comprehensive self-service documentation
- Reduced setup time and frustration
- Better troubleshooting guidance
- Performance optimization tips
- Community resource discovery
### For Business
- **SEO boost** - 145 new comprehensive pages ranking for game server hosting
- **Authority building** - Comprehensive resource destination
- **Traffic generation** - Organic search traffic from game communities
- **Support reduction** - Self-service documentation reduces tickets
- **Competitive advantage** - Most comprehensive game server hosting documentation
### For Search Rankings
- Long-form content (300+ lines per game)
- Natural keyword integration
- Internal linking structure
- External authoritative links
- Regular update potential
- User engagement (navigation, resource links)
## Maintenance Plan
### Regular Updates
- **Quarterly review** - Check for game updates, new versions
- **Version tracking** - Monitor major game releases
- **Link validation** - Ensure external resources remain valid
- **Community feedback** - Incorporate user suggestions
- **Error corrections** - Fix reported issues promptly
### Update Triggers
- Major game version releases
- New DLC or expansion launches
- Significant mod ecosystem changes
- Breaking configuration changes
- New hosting best practices
## Next Steps
1. **Immediate:** Complete next batch of 10-15 popular games
2. **Short-term:** Develop automation for repetitive tasks
3. **Mid-term:** Complete top 50 most popular games
4. **Long-term:** Achieve 100% documentation coverage
5. **Ongoing:** Maintain and update as games evolve
## Conclusion
The documentation expansion project is critical for establishing the platform as the authoritative resource for game server hosting. While comprehensive, the systematic approach outlined ensures quality, consistency, and long-term maintainability.
---
**Created:** November 2024
**Last Updated:** November 2024
**Status:** In Progress (6/151 games enhanced)

View file

@ -0,0 +1,160 @@
# Documentation System
## Overview
The billing module now includes a flexible documentation browser that organizes documentation into categories with an easy-to-navigate interface.
## Structure
Documentation is organized in the `/modules/billing/docs/` folder with the following structure:
```
docs/
├── category-name-1/
│ ├── index.php (Required: Documentation content)
│ ├── metadata.json (Required: Category and ordering info)
│ └── icon.png or icon.jpg (Required: Category icon)
├── category-name-2/
│ ├── index.php
│ ├── metadata.json
│ └── icon.png
└── ...
```
## Creating New Documentation
### 1. Create a Folder
Create a new folder in `/modules/billing/docs/` with a descriptive name (lowercase, hyphens for spaces):
```bash
mkdir /modules/billing/docs/my-new-doc
```
### 2. Create metadata.json
This file defines how the documentation appears in the list:
```json
{
"name": "My Documentation Title",
"description": "A brief description of this documentation",
"category": "game",
"order": 10
}
```
**Fields:**
- `name`: Display name shown in the documentation list
- `description`: Brief description shown on the card
- `category`: One of: `game`, `panel`, `mods`, `troubleshooting`, `other`
- `order`: Sort order within the category (lower numbers appear first)
### 3. Create index.php
This file contains the actual documentation content. Use PHP and HTML:
```php
<?php
/**
* My Documentation
*/
?>
<h1>My Documentation Title</h1>
<h2>Section 1</h2>
<p>Your content here...</p>
<h3>Subsection</h3>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<h2>Code Examples</h2>
<pre><code>
# Your code here
command --option value
</code></pre>
```
The documentation system automatically styles:
- Headings (h1-h4)
- Links (styled with accent color)
- Code blocks (with dark background)
- Lists and other HTML elements
### 4. Add an Icon
Add either `icon.png` or `icon.jpg` to the folder. Recommended size: 60x60 pixels or larger (will be scaled down).
If no icon is provided, a default document emoji (📄) will be shown.
## Categories
Documentation is organized into these categories:
- **game** - Game-specific server guides
- **panel** - Panel usage and features
- **mods** - Mods and addon documentation
- **troubleshooting** - Problem-solving guides
- **other** - Miscellaneous documentation
Categories are sorted and labeled automatically on the documentation page.
## Example Documentation
See the included examples:
1. **minecraft** - Game server documentation example
2. **getting-started** - Panel documentation example
3. **common-issues** - Troubleshooting documentation example
## Accessing Documentation
Users can access documentation at:
- `/modules/billing/docs.php` - Main documentation list
- `/modules/billing/docs.php?action=view&doc=folder-name` - Specific doc
A "Documentation" link is added to the main navigation menu.
## Best Practices
1. **Keep it Organized**: Use clear, descriptive folder names
2. **Consistent Naming**: Use lowercase and hyphens (e.g., `my-game-guide`)
3. **Good Descriptions**: Write helpful metadata descriptions
4. **Visual Icons**: Use recognizable icons for each category
5. **Test Content**: Preview documentation after creating it
6. **Regular Updates**: Keep documentation current with panel changes
## Migration from Old System
The old docs folder with game markdown files has been moved to `/modules/billing/docs_old/` for reference. The new system provides:
- Better organization by category
- Consistent styling
- Easier navigation
- Extensible structure for any type of documentation
To migrate old documentation:
1. Create a new folder for each document
2. Convert markdown to HTML in index.php
3. Add appropriate metadata.json
4. Add an icon image
## Troubleshooting
### Documentation not appearing
- Check that folder has all three required files (index.php, metadata.json, icon)
- Verify metadata.json is valid JSON
- Ensure file permissions allow reading
### Styling issues
- The system uses inline styles from docs.php
- Custom styles in index.php may conflict
- Keep content semantic (use proper HTML tags)
### Icons not showing
- Check file exists and is named exactly `icon.png` or `icon.jpg`
- Verify image file is not corrupted
- Try a smaller image size if very large

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* Aliens vs Predator Server Documentation
*/
?>
<h1>Aliens vs Predator Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a Aliens vs Predator server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Aliens vs Predator</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Aliens vs Predator server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Aliens vs Predator community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Aliens vs Predator",
"description": "Setup and configuration guide for Aliens vs Predator game servers",
"category": "game",
"order": 5
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* Age of Chivalry Server Documentation
*/
?>
<h1>Age of Chivalry Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a Age of Chivalry server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Age of Chivalry</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Age of Chivalry server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Age of Chivalry community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Age of Chivalry",
"description": "Setup and configuration guide for Age of Chivalry game servers",
"category": "game",
"order": 6
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

View file

@ -0,0 +1,304 @@
<?php
/**
* ARK: Survival Evolved - Comprehensive Hosting Guide
* General game server hosting information (not platform-specific)
*/
?>
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;">Navigation</h3>
<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<a href="#quick-info" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Quick Info</a>
<a href="#installation" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Installation</a>
<a href="#configuration" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Configuration</a>
<a href="#parameters" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Parameters</a>
<a href="#troubleshooting" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Troubleshooting</a>
<a href="#performance" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Performance</a>
</div>
</div>
<h1>ARK: Survival Evolved Dedicated Server Hosting Guide</h1>
<h2>Overview</h2>
<p>ARK: Survival Evolved is a survival game where players must survive being stranded on an island filled with dinosaurs and other prehistoric animals, natural hazards, and potentially hostile human players. This comprehensive guide covers hosting an ARK: Survival Evolved dedicated server on a VPS or dedicated server.</p>
<h2 id="quick-info">Quick Info</h2>
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
<ul style="color: #e5e7eb; line-height: 1.8; margin: 0;">
<li><strong style="color: #ffffff;">Game Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7777</code> (UDP)</li>
<li><strong style="color: #ffffff;">Raw UDP Socket:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">7778</code> (UDP)</li>
<li><strong style="color: #ffffff;">Query Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code> (UDP)</li>
<li><strong style="color: #ffffff;">RCON Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27020</code> (TCP, optional)</li>
<li><strong style="color: #ffffff;">Minimum RAM:</strong> 8-12GB (more for mods/high player count)</li>
<li><strong style="color: #ffffff;">Recommended CPU:</strong> Dual-core minimum, quad-core preferred</li>
<li><strong style="color: #ffffff;">Storage:</strong> 20-25GB minimum free space</li>
<li><strong style="color: #ffffff;">SteamCMD App ID:</strong> 346110</li>
<li><strong style="color: #ffffff;">Config Files:</strong> GameUserSettings.ini, Game.ini</li>
</ul>
</div>
<h2 id="installation">Installation & Setup</h2>
<h3>System Requirements</h3>
<ul>
<li><strong>OS:</strong> Windows Server 2016+ (64-bit) or Linux 64-bit (Ubuntu/Debian)</li>
<li><strong>CPU:</strong> Minimum dual-core; Recommended quad-core @ 3.0GHz+</li>
<li><strong>RAM:</strong> 8-12GB minimum; 16GB+ for modded/high-pop servers</li>
<li><strong>Storage:</strong> 20-25GB for base game; additional for mods and saves</li>
<li><strong>Network:</strong> 10Mbps+ upload recommended</li>
</ul>
<h3>Installing via SteamCMD</h3>
<pre><code># Install SteamCMD first
# Windows: Download from https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip
# Linux:
sudo apt update
sudo apt install lib32gcc1 steamcmd
# Create server directory
mkdir -p ~/arkserver
cd ~/arkserver
# Download server files
steamcmd +login anonymous +force_install_dir ~/arkserver +app_update 346110 validate +exit
# This will download approximately 20GB of files
</code></pre>
<h3>Windows Startup Script</h3>
<p>Create <code>ServerStart.bat</code> in <code>ShooterGame\Binaries\Win64\</code>:</p>
<pre><code>@echo off
start ShooterGameServer.exe "TheIsland?SessionName=MyARKServer?QueryPort=27015?ServerPassword=YOURPASSWORD?ServerAdminPassword=ADMINPASS?listen?Port=7777?MaxPlayers=20"
exit
</code></pre>
<h3>Linux Startup Script</h3>
<pre><code>#!/bin/bash
cd ~/arkserver/ShooterGame/Binaries/Linux
./ShooterGameServer TheIsland?listen?SessionName=MyARKServer?ServerPassword=YOURPASSWORD?ServerAdminPassword=ADMINPASS?QueryPort=27015?Port=7777?MaxPlayers=20 &gt; ~/arkserver.log 2&gt;&amp;1 &amp;
</code></pre>
<h2 id="configuration">Server Configuration</h2>
<h3>Configuration File Locations</h3>
<p><strong>Windows:</strong></p>
<pre><code>ShooterGame\Saved\Config\WindowsServer\GameUserSettings.ini
ShooterGame\Saved\Config\WindowsServer\Game.ini
</code></pre>
<p><strong>Linux:</strong></p>
<pre><code>ShooterGame/Saved/Config/LinuxServer/GameUserSettings.ini
ShooterGame/Saved/Config/LinuxServer/Game.ini
</code></pre>
<h3>GameUserSettings.ini - Key Settings</h3>
<pre><code>[ServerSettings]
ServerPassword=YourServerPassword
ServerAdminPassword=YourAdminPassword
ServerName=My ARK Server
MaxPlayers=20
DifficultyOffset=1.0
ServerPVE=False
AllowThirdPersonPlayer=True
ShowMapPlayerLocation=True
EnablePVPGamma=True
ServerCrosshair=True
RCONEnabled=True
RCONPort=27020
TheMaxStructuresInRange=10500
# XP and Progression
XPMultiplier=1.5
TamingSpeedMultiplier=3.0
HarvestAmountMultiplier=2.0
HarvestHealthMultiplier=1.5
ResourcesRespawnPeriodMultiplier=0.5
# Player Stats
PlayerCharacterWaterDrainMultiplier=1.0
PlayerCharacterFoodDrainMultiplier=1.0
PlayerCharacterStaminaDrainMultiplier=1.0
PlayerCharacterHealthRecoveryMultiplier=1.0
PlayerDamageMultiplier=1.0
PlayerResistanceMultiplier=1.0
# Dino Settings
DinoCharacterFoodDrainMultiplier=1.0
DinoCharacterStaminaDrainMultiplier=1.0
DinoCharacterHealthRecoveryMultiplier=1.0
DinoCountMultiplier=1.0
DinoResistanceMultiplier=1.0
DinoDamageMultiplier=1.0
</code></pre>
<h3>Available Maps</h3>
<p>Replace the map name in your startup command:</p>
<ul>
<li><code>TheIsland</code> - Original ARK map</li>
<li><code>TheCenter</code> - Free expansion map</li>
<li><code>Ragnarok</code> - Free expansion map</li>
<li><code>Valguero</code> - Free expansion map</li>
<li><code>CrystalIsles</code> - Free expansion map</li>
<li><code>ScorchedEarth_P</code> - Paid DLC</li>
<li><code>Aberration_P</code> - Paid DLC</li>
<li><code>Extinction</code> - Paid DLC</li>
<li><code>Genesis</code> - Paid DLC</li>
</ul>
<h2 id="parameters">Startup Parameters</h2>
<h3>Command Line Options</h3>
<table style="width: 100%; border-collapse: collapse; margin: 20px 0;">
<tr style="background: #f8f9fa;">
<th style="padding: 10px; border: 1px solid #dee2e6; text-align: left;">Parameter</th>
<th style="padding: 10px; border: 1px solid #dee2e6; text-align: left;">Description</th>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?SessionName=NAME</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Server name displayed in browser</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?Port=7777</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Game port (default 7777)</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?QueryPort=27015</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Steam query port</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?ServerPassword=PASS</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Password to join server</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?ServerAdminPassword=PASS</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Admin password for console</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?MaxPlayers=20</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Maximum player slots</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?ServerPVE=true</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Enable PVE mode</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?AllowThirdPersonPlayer=true</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Allow third-person view</td>
</tr>
<tr>
<td style="padding: 8px; border: 1px solid #dee2e6;"><code>?listen</code></td>
<td style="padding: 8px; border: 1px solid #dee2e6;">Required for dedicated server</td>
</tr>
</table>
<h3>Port Forwarding Requirements</h3>
<pre><code># Forward these ports on your router/firewall:
UDP 7777 - Game Client Port
UDP 7778 - Raw UDP Socket
UDP 27015 - Steam Query Port
TCP 27020 - RCON (if enabled)
# Linux firewall (UFW):
sudo ufw allow 7777:7778/udp
sudo ufw allow 27015/udp
sudo ufw allow 27020/tcp
sudo ufw reload
</code></pre>
<h2 id="troubleshooting">Troubleshooting</h2>
<h3>Server Won't Start</h3>
<p><strong>Problem:</strong> Server fails to start or crashes immediately.</p>
<p><strong>Solutions:</strong></p>
<ul>
<li>Check log files in <code>ShooterGame/Saved/Logs/</code></li>
<li>Verify Visual C++ 2013 Redistributable is installed (Windows)</li>
<li>Ensure sufficient RAM and disk space</li>
<li>Validate server files: <code>steamcmd +login anonymous +app_update 346110 validate +exit</code></li>
<li>Check file permissions on Linux (<code>chmod +x</code> on server executable)</li>
</ul>
<h3>Cannot Connect to Server</h3>
<p><strong>Problem:</strong> Players cannot connect or server not visible in browser.</p>
<p><strong>Solutions:</strong></p>
<ul>
<li>Verify all ports are forwarded correctly (7777, 7778, 27015)</li>
<li>Check firewall rules allow traffic</li>
<li>Confirm QueryPort is set correctly and not in reserved range (27020-27050)</li>
<li>Try direct connect using IP:Port in Steam</li>
<li>Ensure server password is communicated correctly</li>
</ul>
<h3>High Resource Usage / Lag</h3>
<p><strong>Problem:</strong> Server uses excessive resources or experiences lag.</p>
<p><strong>Solutions:</strong></p>
<ul>
<li>Reduce max player count</li>
<li>Disable or reduce mods</li>
<li>Lower difficulty and resource multipliers</li>
<li>Upgrade server hardware (especially RAM)</li>
<li>Regular server restarts to clear memory</li>
<li>Clean up abandoned structures with admin commands</li>
</ul>
<h3>Mod Issues</h3>
<p><strong>Problem:</strong> Mods not loading or causing crashes.</p>
<p><strong>Solutions:</strong></p>
<ul>
<li>Update mods via Steam Workshop</li>
<li>Add mod IDs to GameUserSettings.ini: <code>ActiveMods=modid1,modid2</code></li>
<li>Ensure mod compatibility with current game version</li>
<li>Remove conflicting mods one at a time to identify culprit</li>
</ul>
<h2 id="performance">Performance Optimization</h2>
<h3>Recommended Server Settings</h3>
<ul>
<li><strong>Small Server (5-10 players):</strong> 8GB RAM, dual-core CPU</li>
<li><strong>Medium Server (10-20 players):</strong> 12-16GB RAM, quad-core CPU</li>
<li><strong>Large Server (20+ players):</strong> 16-32GB RAM, high-performance CPU</li>
</ul>
<h3>Admin Console Commands</h3>
<p>Enable admin: Press TAB, type <code>enablecheats ADMINPASSWORD</code></p>
<ul>
<li><code>SaveWorld</code> - Force save the game</li>
<li><code>DestroyWildDinos</code> - Respawn all wild dinosaurs</li>
<li><code>SetTimeOfDay HH:MM:SS</code> - Set time of day</li>
<li><code>admincheat KillPlayer PLAYERNAME</code> - Kill a player</li>
<li><code>admincheat BanPlayer PLAYERNAME</code> - Ban a player</li>
<li><code>admincheat Broadcast MESSAGE</code> - Server-wide message</li>
</ul>
<h3>Backup Strategy</h3>
<pre><code># Backup save files regularly
# Location: ShooterGame/Saved/SavedArks/
# Linux backup script:
#!/bin/bash
BACKUP_DIR="/path/to/backups"
DATE=$(date +%Y%m%d_%H%M%S)
cd ~/arkserver/ShooterGame/Saved
tar -czf $BACKUP_DIR/ark_backup_$DATE.tar.gz SavedArks/
# Keep only last 7 days
find $BACKUP_DIR -name "ark_backup_*.tar.gz" -mtime +7 -delete
</code></pre>
<h2>Additional Resources</h2>
<ul>
<li><a href="https://ark.fandom.com/wiki/Dedicated_server_setup" target="_blank">ARK Wiki - Dedicated Server Setup</a></li>
<li><a href="https://ark.wiki.gg/wiki/Server_configuration" target="_blank">ARK Official Wiki - Server Configuration</a></li>
<li><a href="https://steamcommunity.com/app/346110/discussions/" target="_blank">Steam Community Discussions</a></li>
<li><a href="https://www.reddit.com/r/playark/" target="_blank">r/playark - Community Support</a></li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated via SteamCMD to match client versions</li>
<li>Make regular automated backups of save files</li>
<li>Monitor resource usage and adjust player limits accordingly</li>
<li>Use strong admin passwords and protect RCON access</li>
<li>Test mods thoroughly before deploying to live server</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "ARK:SE",
"description": "Setup and configuration guide for ARK:SE game servers",
"category": "game",
"order": 7
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Arma Reforger Server Documentation
*/
?>
<h1>Arma Reforger Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Arma Reforger server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Arma Reforger</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Arma Reforger server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Arma Reforger community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Arma Reforger",
"description": "Setup and configuration guide for Arma Reforger game servers",
"category": "game",
"order": 9
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Arma2 CO Server Documentation
*/
?>
<h1>Arma2 CO Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Arma2 CO server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Arma2 CO</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Arma2 CO server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Arma2 CO community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Arma2 CO",
"description": "Setup and configuration guide for Arma2 CO game servers",
"category": "game",
"order": 11
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Arma2 Server Documentation
*/
?>
<h1>Arma2 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Arma2 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Arma2</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Arma2 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Arma2 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Arma2",
"description": "Setup and configuration guide for Arma2 game servers",
"category": "game",
"order": 10
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Arma 3 Server Documentation
*/
?>
<h1>Arma 3 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Arma 3 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Arma 3</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Arma 3 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Arma 3 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Arma 3",
"description": "Setup and configuration guide for Arma 3 game servers",
"category": "game",
"order": 12
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Assetto Corsa Server Documentation
*/
?>
<h1>Assetto Corsa Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Assetto Corsa server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Assetto Corsa</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Assetto Corsa server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Assetto Corsa community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Assetto Corsa",
"description": "Setup and configuration guide for Assetto Corsa game servers",
"category": "game",
"order": 15
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Atlas Server Documentation
*/
?>
<h1>Atlas Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Atlas server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Atlas</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Atlas server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Atlas community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Atlas",
"description": "Setup and configuration guide for Atlas game servers",
"category": "game",
"order": 17
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Avorion Server Documentation
*/
?>
<h1>Avorion Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Avorion server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Avorion</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Avorion server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Avorion community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Avorion",
"description": "Setup and configuration guide for Avorion game servers",
"category": "game",
"order": 19
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* BEC Server Documentation
*/
?>
<h1>BEC Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a BEC server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>BEC</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your BEC server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official BEC community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "BEC",
"description": "Setup and configuration guide for BEC game servers",
"category": "game",
"order": 20
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Battlefield 2 Server Documentation
*/
?>
<h1>Battlefield 2 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Battlefield 2 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Battlefield 2</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Battlefield 2 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Battlefield 2 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Battlefield 2",
"description": "Setup and configuration guide for Battlefield 2 game servers",
"category": "game",
"order": 21
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Battlefield Bad Company 2 Server Documentation
*/
?>
<h1>Battlefield Bad Company 2 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Battlefield Bad Company 2 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Battlefield Bad Company 2</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Battlefield Bad Company 2 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Battlefield Bad Company 2 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Battlefield Bad Company 2",
"description": "Setup and configuration guide for Battlefield Bad Company 2 game servers",
"category": "game",
"order": 23
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* Big Brother Bot Server Documentation
*/
?>
<h1>Big Brother Bot Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a Big Brother Bot server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Big Brother Bot</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Big Brother Bot server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Big Brother Bot community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Big Brother Bot",
"description": "Setup and configuration guide for Big Brother Bot game servers",
"category": "game",
"order": 24
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* Blood Frontier Server Documentation
*/
?>
<h1>Blood Frontier Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a Blood Frontier server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Blood Frontier</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Blood Frontier server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Blood Frontier community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Blood Frontier",
"description": "Setup and configuration guide for Blood Frontier game servers",
"category": "game",
"order": 26
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* BrainBread 2 Server Documentation
*/
?>
<h1>BrainBread 2 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a BrainBread 2 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>BrainBread 2</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your BrainBread 2 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official BrainBread 2 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "BrainBread 2",
"description": "Setup and configuration guide for BrainBread 2 game servers",
"category": "game",
"order": 27
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty Server Documentation
*/
?>
<h1>Call of Duty Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty",
"description": "Setup and configuration guide for Call of Duty game servers",
"category": "game",
"order": 33
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty 2 Server Documentation
*/
?>
<h1>Call of Duty 2 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty 2 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty 2</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty 2 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty 2 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty 2",
"description": "Setup and configuration guide for Call of Duty 2 game servers",
"category": "game",
"order": 29
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty 4: Modern Warfare Server Documentation
*/
?>
<h1>Call of Duty 4: Modern Warfare Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty 4: Modern Warfare server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty 4: Modern Warfare</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty 4: Modern Warfare server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty 4: Modern Warfare community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty 4: Modern Warfare",
"description": "Setup and configuration guide for Call of Duty 4: Modern Warfare game servers",
"category": "game",
"order": 31
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty: Modern Warfare 2 (IW4x) Server Documentation
*/
?>
<h1>Call of Duty: Modern Warfare 2 (IW4x) Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty: Modern Warfare 2 (IW4x) server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty: Modern Warfare 2 (IW4x)</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty: Modern Warfare 2 (IW4x) server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty: Modern Warfare 2 (IW4x) community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty: Modern Warfare 2 (IW4x)",
"description": "Setup and configuration guide for Call of Duty: Modern Warfare 2 (IW4x) game servers",
"category": "game",
"order": 35
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty: Modern Warfare 3 Server Documentation
*/
?>
<h1>Call of Duty: Modern Warfare 3 Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty: Modern Warfare 3 server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty: Modern Warfare 3</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty: Modern Warfare 3 server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty: Modern Warfare 3 community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty: Modern Warfare 3",
"description": "Setup and configuration guide for Call of Duty: Modern Warfare 3 game servers",
"category": "game",
"order": 36
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty: United Offensive Server Documentation
*/
?>
<h1>Call of Duty: United Offensive Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty: United Offensive server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty: United Offensive</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty: United Offensive server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty: United Offensive community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty: United Offensive",
"description": "Setup and configuration guide for Call of Duty: United Offensive game servers",
"category": "game",
"order": 37
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Call of Duty: World at War Server Documentation
*/
?>
<h1>Call of Duty: World at War Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Call of Duty: World at War server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Call of Duty: World at War</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Call of Duty: World at War server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Call of Duty: World at War community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Call of Duty: World at War",
"description": "Setup and configuration guide for Call of Duty: World at War game servers",
"category": "game",
"order": 39
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* Citadel: Forged with Fire Server Documentation
*/
?>
<h1>Citadel: Forged with Fire Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a Citadel: Forged with Fire server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Citadel: Forged with Fire</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Citadel: Forged with Fire server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Citadel: Forged with Fire community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Citadel: Forged with Fire",
"description": "Setup and configuration guide for Citadel: Forged with Fire game servers",
"category": "game",
"order": 41
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* CoD: Black Ops Server Documentation
*/
?>
<h1>CoD: Black Ops Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a CoD: Black Ops server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>CoD: Black Ops</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your CoD: Black Ops server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official CoD: Black Ops community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "CoD: Black Ops",
"description": "Setup and configuration guide for CoD: Black Ops game servers",
"category": "game",
"order": 43
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Colony Survival Server Documentation
*/
?>
<h1>Colony Survival Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Colony Survival server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Colony Survival</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Colony Survival server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Colony Survival community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Colony Survival",
"description": "Setup and configuration guide for Colony Survival game servers",
"category": "game",
"order": 44
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 B

View file

@ -0,0 +1,128 @@
<?php
/**
* Common Issues & Troubleshooting Documentation
*/
?>
<h1>Common Issues & Solutions</h1>
<h2>Server Won't Start</h2>
<h3>Symptoms</h3>
<ul>
<li>Server status shows "Stopped" even after clicking Start</li>
<li>Server starts but immediately crashes</li>
<li>Error messages in the console</li>
</ul>
<h3>Solutions</h3>
<ol>
<li><strong>Check Server Logs:</strong> Review the console output for error messages</li>
<li><strong>Verify Configuration:</strong> Ensure config files have correct syntax</li>
<li><strong>Check Port Conflicts:</strong> Make sure the port isn't already in use</li>
<li><strong>Memory Issues:</strong> Verify you have enough RAM allocated</li>
<li><strong>File Permissions:</strong> Ensure server files have correct permissions</li>
</ol>
<h2>Can't Connect to Server</h2>
<h3>Symptoms</h3>
<ul>
<li>Connection timeout when trying to join</li>
<li>"Server not responding" errors</li>
<li>Can't find server in server list</li>
</ul>
<h3>Solutions</h3>
<ol>
<li><strong>Verify Server is Running:</strong> Check control panel status</li>
<li><strong>Check IP and Port:</strong> Ensure you're using the correct address</li>
<li><strong>Firewall Settings:</strong> Make sure firewall allows the server port</li>
<li><strong>Server Whitelist:</strong> Check if server has whitelist enabled</li>
<li><strong>Game Version:</strong> Ensure your game version matches the server</li>
</ol>
<h2>Server Lag</h2>
<h3>Symptoms</h3>
<ul>
<li>Delayed responses to player actions</li>
<li>Rubber-banding or teleporting players</li>
<li>High ping times</li>
</ul>
<h3>Solutions</h3>
<ol>
<li><strong>Check Server Resources:</strong> Monitor CPU and RAM usage in control panel</li>
<li><strong>Reduce View Distance:</strong> Lower render distance in server config</li>
<li><strong>Limit Entities:</strong> Use plugins to limit mob spawning</li>
<li><strong>Optimize Plugins/Mods:</strong> Remove or update poorly performing addons</li>
<li><strong>Upgrade Plan:</strong> Consider upgrading to a higher-tier server</li>
</ol>
<h2>File Upload Issues</h2>
<h3>Symptoms</h3>
<ul>
<li>FTP connection refused</li>
<li>Can't upload files</li>
<li>Files upload but don't appear on server</li>
</ul>
<h3>Solutions</h3>
<ol>
<li><strong>Check FTP Credentials:</strong> Verify username and password are correct</li>
<li><strong>FTP Mode:</strong> Try switching between active and passive FTP mode</li>
<li><strong>File Size Limits:</strong> Check if file exceeds maximum upload size</li>
<li><strong>Directory Permissions:</strong> Ensure you have write permissions</li>
<li><strong>Stop Server First:</strong> Some files can't be modified while server runs</li>
</ol>
<h2>Mods/Plugins Not Working</h2>
<h3>Symptoms</h3>
<ul>
<li>Mods don't load</li>
<li>Plugin commands don't work</li>
<li>Server crashes when loading mods</li>
</ul>
<h3>Solutions</h3>
<ol>
<li><strong>Check Compatibility:</strong> Ensure mod/plugin matches server version</li>
<li><strong>Verify Dependencies:</strong> Install required dependency mods</li>
<li><strong>Check Installation Path:</strong> Files must be in correct folder</li>
<li><strong>Review Logs:</strong> Check for mod/plugin loading errors</li>
<li><strong>Update Software:</strong> Make sure mods and server are up to date</li>
</ol>
<h2>World Data Loss</h2>
<h3>Prevention</h3>
<ul>
<li>Make regular backups via FTP or control panel</li>
<li>Always stop server properly before shutting down</li>
<li>Don't force-stop unless absolutely necessary</li>
<li>Test configuration changes on backup worlds first</li>
</ul>
<h3>Recovery</h3>
<ol>
<li>Check if control panel has automatic backups</li>
<li>Restore from your most recent manual backup</li>
<li>Contact support if no backups are available</li>
</ol>
<h2>Getting Further Help</h2>
<p>If these solutions don't resolve your issue:</p>
<ul>
<li>Check the specific documentation for your game server type</li>
<li>Review server logs for detailed error messages</li>
<li>Contact support with:
<ul>
<li>Detailed description of the problem</li>
<li>Steps to reproduce the issue</li>
<li>Recent changes made to the server</li>
<li>Relevant error messages or screenshots</li>
</ul>
</li>
</ul>

View file

@ -0,0 +1,6 @@
{
"name": "Common Issues & Solutions",
"description": "Troubleshooting guide for common server problems",
"category": "troubleshooting",
"order": 1
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* Conan Exiles Server Documentation
*/
?>
<h1>Conan Exiles Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a Conan Exiles server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Conan Exiles</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Conan Exiles server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Conan Exiles community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Conan Exiles",
"description": "Setup and configuration guide for Conan Exiles game servers",
"category": "game",
"order": 45
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,66 @@
<?php
/**
* CS2D Server Documentation
*/
?>
<h1>CS2D Server Guide</h1>
<h2>Overview</h2>
<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;">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>
<p>To create a CS2D server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>CS2D</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your CS2D server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official CS2D community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "CS2D",
"description": "Setup and configuration guide for CS2D game servers",
"category": "game",
"order": 48
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,584 @@
<?php
/**
* Counter-Strike: Global Offensive / CS2 Server Documentation
* Comprehensive game server hosting guide
*/
?>
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;">Navigation</h3>
<div style="display: flex; flex-wrap: wrap; gap: 10px;">
<a href="#quick-info" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Quick Info</a>
<a href="#installation" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Installation</a>
<a href="#configuration" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Configuration</a>
<a href="#parameters" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Parameters</a>
<a href="#plugins-mods" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Plugins & Mods</a>
<a href="#troubleshooting" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Troubleshooting</a>
<a href="#gamemodes" style="background: #0f172a; padding: 8px 16px; border-radius: 4px; color: #a5b4fc; text-decoration: none;">Game Modes</a>
</div>
</div>
<h1>Counter-Strike: Global Offensive & CS2 Server Hosting Guide</h1>
<h2>Overview</h2>
<p>Counter-Strike: Global Offensive (CS:GO) and Counter-Strike 2 (CS2) are competitive tactical first-person shooters. This guide covers everything needed to host a dedicated CS:GO or CS2 server on Linux or Windows.</p>
<p><strong>Note:</strong> CS2 replaced CS:GO in September 2023. Most concepts apply to both, but CS2 uses Source 2 engine with some differences. This guide covers both versions.</p>
<h2 id="quick-info">Quick Info</h2>
<div style="background: #1e3a5f; padding: 20px; border-left: 4px solid #3b82f6; margin: 20px 0; border-radius: 4px;">
<ul style="color: #e5e7eb; line-height: 1.8; margin: 0;">
<li><strong style="color: #ffffff;">Default Port:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">27015</code> (UDP)</li>
<li><strong style="color: #ffffff;">Additional Ports:</strong> 27015 (TCP), 27020 (UDP), 27005 (UDP) for SourceTV</li>
<li><strong style="color: #ffffff;">Protocol:</strong> UDP (primary), TCP (RCON)</li>
<li><strong style="color: #ffffff;">Minimum RAM:</strong> 2GB (CS:GO), 4GB (CS2)</li>
<li><strong style="color: #ffffff;">Recommended RAM:</strong> 4GB+ (CS:GO), 8GB+ (CS2)</li>
<li><strong style="color: #ffffff;">CPU:</strong> High single-thread performance critical</li>
<li><strong style="color: #ffffff;">App ID:</strong> 740 (CS:GO), 730 (CS2)</li>
<li><strong style="color: #ffffff;">SteamCMD App:</strong> 740 (dedicated server)</li>
<li><strong style="color: #ffffff;">Log Files:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">csgo/logs/</code> or <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">cs2/logs/</code></li>
<li><strong style="color: #ffffff;">Main Config:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">server.cfg</code></li>
<li><strong style="color: #ffffff;">Server Launcher:</strong> <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">srcds_run</code> (Linux) or <code style="background: #0f172a; padding: 2px 6px; border-radius: 3px; color: #a5b4fc;">srcds.exe</code> (Windows)</li>
</ul>
</div>
<h2 id="installation">Installation & Setup</h2>
<h3>System Requirements</h3>
<h4>CS:GO</h4>
<ul>
<li><strong>OS:</strong> Linux (Ubuntu 18.04+, Debian 9+) or Windows Server 2012+</li>
<li><strong>CPU:</strong> Dual-core 3GHz+ (quad-core recommended)</li>
<li><strong>RAM:</strong> 2GB minimum, 4GB+ recommended</li>
<li><strong>Storage:</strong> 30GB+</li>
<li><strong>Bandwidth:</strong> 100Mbps+ for competitive play</li>
</ul>
<h4>CS2</h4>
<ul>
<li><strong>OS:</strong> Linux (Ubuntu 20.04+) or Windows Server 2019+</li>
<li><strong>CPU:</strong> Quad-core 3.5GHz+ recommended</li>
<li><strong>RAM:</strong> 4GB minimum, 8GB+ recommended</li>
<li><strong>Storage:</strong> 40GB+</li>
<li><strong>Network:</strong> 1Gbps connection recommended</li>
</ul>
<h3>Installing SteamCMD</h3>
<h4>Linux Installation</h4>
<pre><code># Install dependencies (Ubuntu/Debian)
sudo apt update
sudo apt install lib32gcc-s1 lib32stdc++6 steamcmd
# Or manual install
mkdir ~/steamcmd
cd ~/steamcmd
wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar -xvzf steamcmd_linux.tar.gz
</code></pre>
<h4>Windows Installation</h4>
<p>Download SteamCMD from: <a href="https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip" target="_blank">SteamCMD for Windows</a></p>
<h3>Installing CS:GO/CS2 Server</h3>
<h4>CS:GO Server</h4>
<pre><code># Run SteamCMD
./steamcmd.sh
# Login anonymously
login anonymous
# Set install directory
force_install_dir ./csgo-server
# Install CS:GO dedicated server
app_update 740 validate
# Exit
quit
</code></pre>
<h4>CS2 Server</h4>
<pre><code># Run SteamCMD
./steamcmd.sh
# Login (may require Steam account with CS2)
login anonymous
# Set install directory
force_install_dir ./cs2-server
# Install CS2 dedicated server
app_update 730 validate
# Exit
quit
</code></pre>
<h2 id="configuration">Server Configuration</h2>
<h3>server.cfg - Essential Settings</h3>
<p>Create <code>csgo/cfg/server.cfg</code> or <code>cs2/cfg/server.cfg</code>:</p>
<pre><code>// Server Information
hostname "My CS:GO/CS2 Server"
sv_password "" // Server password (leave blank for public)
sv_region "1" // 0=US East, 1=US West, 2=South America, 3=Europe, etc.
// RCON Configuration
rcon_password "YourSecurePassword"
sv_rcon_banpenalty 0
sv_rcon_maxfailures 5
// Server Settings
sv_cheats 0
sv_lan 0
sv_pure 1 // File consistency checking (0=off, 1=on, 2=strict)
sv_pure_kick_clients 1
sv_minrate 128000
sv_maxrate 0 // 0=unlimited
// Game Settings
mp_autoteambalance 1
mp_limitteams 1
mp_teamcashawards 1
mp_playercashawards 1
mp_maxmoney 16000
mp_startmoney 800
mp_buytime 90
mp_buy_anywhere 0
mp_freezetime 15
mp_friendlyfire 0
mp_c4timer 40
mp_roundtime 5
mp_roundtime_defuse 1.92
mp_maxrounds 30
mp_overtime_enable 1
mp_overtime_maxrounds 6
mp_overtime_startmoney 10000
// Competitive Settings (5v5)
mp_match_end_restart 1
mp_halftime 1
mp_warmuptime 30
mp_do_warmup_period 1
mp_warmup_pausetimer 1
// Communication
sv_alltalk 0
sv_deadtalk 0
sv_full_alltalk 0
sv_talk_enemy_dead 1
sv_talk_enemy_living 0
// Voting
sv_vote_issue_kick_allowed 0
sv_vote_issue_changelevel_allowed 0
sv_vote_issue_nextlevel_allowed 0
// SourceTV (GOTV)
tv_enable 1
tv_delay 90
tv_advertise_watchable 1
tv_name "GOTV"
tv_title "Source TV"
tv_autorecord 1
tv_allow_camera_man 1
// Logging
log on
sv_logbans 1
sv_logecho 1
sv_logfile 1
sv_log_onefile 0
// Execute additional configs
exec banned_user.cfg
exec banned_ip.cfg
</code></pre>
<h3>Game Mode Configuration Files</h3>
<h4>gamemode_competitive.cfg (5v5 Competitive)</h4>
<pre><code>mp_maxrounds 30
mp_roundtime 1.92
mp_roundtime_defuse 1.92
mp_freezetime 15
mp_buytime 90
mp_startmoney 800
mp_maxmoney 16000
mp_timelimit 0
sv_alltalk 0
sv_talk_enemy_dead 1
sv_deadtalk 0
</code></pre>
<h4>gamemode_casual.cfg (10v10 Casual)</h4>
<pre><code>mp_maxrounds 15
mp_roundtime 3
mp_roundtime_defuse 3
mp_freezetime 15
mp_buytime 90
mp_startmoney 1000
mp_maxmoney 16000
sv_alltalk 0
mp_autoteambalance 1
mp_limitteams 2
</code></pre>
<h3>mapcycle.txt</h3>
<p>List maps to rotate through:</p>
<pre><code>de_dust2
de_mirage
de_inferno
de_nuke
de_overpass
de_vertigo
de_ancient
de_anubis
</code></pre>
<h2 id="parameters">Startup Parameters</h2>
<h3>Basic Linux Startup (CS:GO)</h3>
<pre><code>#!/bin/bash
cd /path/to/csgo-server
./srcds_run -game csgo \
-console \
-usercon \
+ip 0.0.0.0 \
+game_type 0 \
+game_mode 1 \
+mapgroup mg_active \
+map de_dust2 \
-port 27015 \
+tv_port 27020 \
-tickrate 128 \
+maxplayers 10 \
+sv_setsteamaccount YOUR_GSLT_TOKEN
</code></pre>
<h3>Basic Linux Startup (CS2)</h3>
<pre><code>#!/bin/bash
cd /path/to/cs2-server
./game/bin/linuxsteamrt64/cs2 \
-dedicated \
-console \
+ip 0.0.0.0 \
+map de_dust2 \
-port 27015 \
+maxplayers 10 \
+sv_setsteamaccount YOUR_GSLT_TOKEN \
+game_type 0 \
+game_mode 1
</code></pre>
<h3>Windows Startup (CS:GO)</h3>
<pre><code>@echo off
cd C:\csgo-server
srcds.exe -game csgo -console -usercon +ip 0.0.0.0 +game_type 0 +game_mode 1 +mapgroup mg_active +map de_dust2 -port 27015 -tickrate 128 +maxplayers 10 +sv_setsteamaccount YOUR_GSLT_TOKEN
pause
</code></pre>
<h3>Parameter Breakdown</h3>
<ul>
<li><code>-game csgo</code> - Specify game (CS:GO only, not needed for CS2)</li>
<li><code>-console</code> - Enable server console</li>
<li><code>-usercon</code> - Enable user console input</li>
<li><code>+ip 0.0.0.0</code> - Bind to all network interfaces</li>
<li><code>+game_type 0</code> - Classic game type</li>
<li><code>+game_mode 1</code> - Competitive mode (0=casual, 1=competitive, 2=wingman)</li>
<li><code>+mapgroup mg_active</code> - Map group (active duty maps)</li>
<li><code>+map de_dust2</code> - Starting map</li>
<li><code>-port 27015</code> - Server port</li>
<li><code>-tickrate 128</code> - Server tickrate (64 or 128, CS:GO only)</li>
<li><code>+maxplayers 10</code> - Maximum players</li>
<li><code>+sv_setsteamaccount TOKEN</code> - Game Server Login Token (GSLT)</li>
</ul>
<h3>Game Server Login Token (GSLT)</h3>
<p><strong>Required for public servers to appear in server browser!</strong></p>
<ol>
<li>Go to <a href="https://steamcommunity.com/dev/managegameservers" target="_blank">Steam Game Server Account Management</a></li>
<li>Login with your Steam account</li>
<li>Click "Create New Game Server Account"</li>
<li>App ID: 730 (CS:GO) or 730 (CS2)</li>
<li>Memo: Your server name/description</li>
<li>Copy the generated token</li>
<li>Use in +sv_setsteamaccount parameter</li>
</ol>
<h2 id="plugins-mods">Plugins & Mods</h2>
<h3>SourceMod & MetaMod:Source</h3>
<p>The standard plugin framework for Source engine servers.</p>
<h4>Installation</h4>
<ol>
<li><strong>Download MetaMod:Source:</strong> <a href="https://www.sourcemm.net/downloads.php?branch=stable" target="_blank">SourceMM.net</a></li>
<li><strong>Download SourceMod:</strong> <a href="https://www.sourcemod.net/downloads.php?branch=stable" target="_blank">SourceMod.net</a></li>
<li><strong>Extract to server directory:</strong>
<pre><code># Both extract to csgo/ or cs2/ folder
cd /path/to/csgo-server/csgo
wget https://mms.alliedmods.net/mmsdrop/...
tar -xzf mmsource-...tar.gz
wget https://sm.alliedmods.net/smdrop/...
tar -xzf sourcemod-...tar.gz
</code></pre>
</li>
<li><strong>Restart server</strong></li>
<li><strong>Add yourself as admin:</strong>
<pre><code># Edit addons/sourcemod/configs/admins_simple.ini
"STEAM_0:1:12345678" "99:z" // Your Steam ID
</code></pre>
</li>
</ol>
<h3>Essential Plugins</h3>
<h4>Practice Mode</h4>
<p>For practicing smokes, flashes, and aim.</p>
<ul>
<li>Download: <a href="https://github.com/splewis/csgo-practice-mode" target="_blank">CS:GO Practice Mode</a></li>
<li>Features: Noclip, infinite ammo, grenade trajectory, bot spawning</li>
</ul>
<h4>Get5</h4>
<p>Competitive match plugin with knife rounds, veto, and more.</p>
<ul>
<li>Download: <a href="https://github.com/splewis/get5" target="_blank">Get5 on GitHub</a></li>
<li>Features: Automated match setup, team management, stats</li>
</ul>
<h4>RetakesPlugin</h4>
<p>Retake game mode - defenders defend bombsite, attackers retake.</p>
<ul>
<li>Download: <a href="https://github.com/b3none/retakes-plugin" target="_blank">Retakes Plugin</a></li>
</ul>
<h4>RankMe</h4>
<p>Player ranking and statistics system.</p>
<ul>
<li>Download: <a href="https://forums.alliedmods.net/showthread.php?t=290063" target="_blank">RankMe</a></li>
</ul>
<h4>In-Game Admin Menu</h4>
<p>Built into SourceMod. Access with <code>!admin</code> or <code>sm_admin</code> in chat.</p>
<h3>Workshop Maps & Collections</h3>
<pre><code># In server.cfg or startup parameters
host_workshop_collection 123456789 // Workshop collection ID
workshop_start_map 123456789 // Workshop map ID
</code></pre>
<h2 id="troubleshooting">Troubleshooting</h2>
<h3>Server Won't Start</h3>
<h4>Missing Libraries (Linux)</h4>
<pre><code># Install 32-bit libraries
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install lib32gcc-s1 lib32stdc++6
# CS:GO specific
sudo apt install libsdl2-2.0-0:i386
# CS2 specific
sudo apt install libtinfo5:i386
</code></pre>
<h4>Port Already in Use</h4>
<pre><code># Check what's using port 27015
sudo netstat -tulpn | grep 27015
sudo lsof -i :27015
# Kill existing process or change port
./srcds_run -game csgo -port 27016 ...
</code></pre>
<h3>Server Not in Browser</h3>
<ol>
<li><strong>Check GSLT is set:</strong> <code>+sv_setsteamaccount YOUR_TOKEN</code></li>
<li><strong>Verify sv_lan is 0:</strong> <code>sv_lan 0</code> in server.cfg</li>
<li><strong>Check firewall allows UDP 27015:</strong>
<pre><code>sudo ufw allow 27015/udp
sudo ufw allow 27015/tcp
sudo ufw allow 27020/udp # SourceTV
</code></pre>
</li>
<li><strong>Wait 5-10 minutes:</strong> Can take time to appear in browser</li>
<li><strong>Direct connect test:</strong> In CS:GO/CS2 console: <code>connect your.server.ip:27015</code></li>
</ol>
<h3>High Ping / Lag</h3>
<h4>Server-Side</h4>
<ol>
<li><strong>Check server load:</strong> <code>top</code> or <code>htop</code></li>
<li><strong>Increase rates:</strong>
<pre><code>sv_minrate 128000
sv_maxrate 0 // unlimited
</code></pre>
</li>
<li><strong>Enable multi-core (CS:GO):</strong>
<pre><code>host_thread_mode 2
</code></pre>
</li>
<li><strong>Reduce bots if present</strong></li>
<li><strong>Check network saturation</strong></li>
</ol>
<h4>Client-Side</h4>
<pre><code>// Player client commands
rate 786432
cl_interp 0
cl_interp_ratio 1
cl_updaterate 128
cl_cmdrate 128
</code></pre>
<h3>VAC Authentication Error</h3>
<ol>
<li><strong>Ensure sv_lan 0</strong></li>
<li><strong>Verify GSLT is valid and not banned</strong></li>
<li><strong>Check server files integrity:</strong>
<pre><code>./steamcmd.sh
login anonymous
force_install_dir /path/to/csgo-server
app_update 740 validate
quit
</code></pre>
</li>
<li><strong>Restart server after updates</strong></li>
</ol>
<h3>Can't Hear Voice Chat</h3>
<ol>
<li><strong>Check voice settings in server.cfg:</strong>
<pre><code>sv_use_steam_voice 1
sv_voiceenable 1
</code></pre>
</li>
<li><strong>Verify UDP ports open:</strong> 27015, 27020</li>
<li><strong>Test with different voice_loopback values:</strong>
<pre><code>voice_loopback 1 // Hear yourself (testing)
</code></pre>
</li>
</ol>
<h2 id="gamemodes">Game Modes Configuration</h2>
<h3>Competitive 5v5 (128 tick)</h3>
<pre><code>+game_type 0 +game_mode 1 -tickrate 128 +maxplayers 10
exec gamemode_competitive.cfg
</code></pre>
<h3>Casual 10v10</h3>
<pre><code>+game_type 0 +game_mode 0 +maxplayers 20
exec gamemode_casual.cfg
</code></pre>
<h3>Deathmatch</h3>
<pre><code>+game_type 1 +game_mode 2 +maxplayers 20
mp_respawn_on_death_t 1
mp_respawn_on_death_ct 1
mp_respawnwavetime 3
mp_timelimit 10
mp_dm_bonus_length_max 30
</code></pre>
<h3>Arms Race</h3>
<pre><code>+game_type 1 +game_mode 0 +maxplayers 12
mp_ggprogressive_round_restart_delay 3
mp_timelimit 20
mp_maxrounds 3
</code></pre>
<h3>Wingman 2v2</h3>
<pre><code>+game_type 0 +game_mode 2 +maxplayers 4
exec gamemode_competitive.cfg
mp_maxrounds 16
mp_overtime_maxrounds 4
</code></pre>
<h3>Custom Modes</h3>
<h4>Surf</h4>
<p>Download surf maps and configure:</p>
<pre><code>sv_airaccelerate 150
sv_staminajumpcost 0
sv_staminalandcost 0
sv_accelerate 10
sv_friction 4
</code></pre>
<h4>Bunny Hop</h4>
<pre><code>sv_enablebunnyhopping 1
sv_autobunnyhopping 1
sv_airaccelerate 1000
sv_staminajumpcost 0
sv_staminalandcost 0
</code></pre>
<h4>1v1 Arena</h4>
<p>Use arena plugin and configure multiple arenas on one map.</p>
<h2>Performance Optimization</h2>
<h3>CPU Affinity (Linux)</h3>
<pre><code># Bind server to specific CPU cores
taskset -c 0,1,2,3 ./srcds_run -game csgo ...
</code></pre>
<h3>Process Priority</h3>
<pre><code># Run with higher priority
nice -n -10 ./srcds_run -game csgo ...
</code></pre>
<h3>Network Optimization</h3>
<pre><code># Increase network buffers (Linux)
sudo sysctl -w net.core.rmem_max=16777216
sudo sysctl -w net.core.wmem_max=16777216
sudo sysctl -w net.ipv4.tcp_rmem="4096 87380 16777216"
sudo sysctl -w net.ipv4.tcp_wmem="4096 65536 16777216"
</code></pre>
<h3>Automate Updates</h3>
<pre><code>#!/bin/bash
# update_csgo.sh
cd /home/steam/steamcmd
./steamcmd.sh +login anonymous +force_install_dir /path/to/csgo-server +app_update 740 validate +quit
# Kill and restart server
killall -9 srcds_linux
sleep 5
cd /path/to/csgo-server
./srcds_run -game csgo +map de_dust2 ...
</code></pre>
<h2>Additional Resources</h2>
<ul>
<li><a href="https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers" target="_blank">Valve Developer Wiki - CS:GO Dedicated Servers</a></li>
<li><a href="https://developer.valvesoftware.com/wiki/Counter-Strike_2/Dedicated_Servers" target="_blank">Valve Developer Wiki - CS2 Dedicated Servers</a></li>
<li><a href="https://www.sourcemod.net/" target="_blank">SourceMod Official Site</a></li>
<li><a href="https://forums.alliedmods.net/" target="_blank">AlliedModders Forums</a></li>
<li><a href="https://steamcommunity.com/dev/managegameservers" target="_blank">Steam GSLT Management</a></li>
<li><a href="https://github.com/GameServerManagers/LinuxGSM" target="_blank">LinuxGSM - Game Server Management</a></li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8; margin: 0;">
<li>Always obtain and use a valid Game Server Login Token (GSLT)</li>
<li>Keep server files updated via SteamCMD</li>
<li>Monitor server resources (CPU, RAM, network)</li>
<li>Use strong RCON password</li>
<li>Configure firewall properly for security</li>
<li>Join CS:GO/CS2 server admin communities for support</li>
</ul>
</div>
<p style="text-align: center; margin-top: 30px; color: #666;">
<em>Last updated: November 2024 | Covers CS:GO & CS2</em>
</p>

View file

@ -0,0 +1,67 @@
<?php
/**
* Counter Strike Global Offensive 128tick Server Documentation
*/
?>
<h1>Counter Strike Global Offensive 128tick Server Guide</h1>
<h2>Overview</h2>
<p><strong>Counter Strike Global Offensive 128tick</strong> is available for hosting on our platform. This guide covers the basics of setting up and managing your Counter Strike Global Offensive 128tick 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>
</div>
<h2>Getting Started</h2>
<p>To create a Counter Strike Global Offensive 128tick server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>Counter Strike Global Offensive 128tick</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your Counter Strike Global Offensive 128tick server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official Counter Strike Global Offensive 128tick community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

View file

@ -0,0 +1,6 @@
{
"name": "Counter Strike Global Offensive 128tick",
"description": "Setup and configuration guide for Counter Strike Global Offensive 128tick game servers",
"category": "game",
"order": 50
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,68 @@
<?php
/**
* CSPromod Server Documentation
*/
?>
<h1>CSPromod Server Guide</h1>
<h2>Overview</h2>
<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;">Server Information</h3>
<ul style="color: #e5e7eb; line-height: 1.8;">
<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>
<p>To create a CSPromod server:</p>
<ol>
<li>Navigate to the <a href="/serverlist.php">Game Servers</a> page</li>
<li>Find <strong>CSPromod</strong> in the list</li>
<li>Select your preferred configuration (slots, duration, etc.)</li>
<li>Add to cart and complete checkout</li>
<li>Your server will be automatically provisioned within minutes</li>
</ol>
<h2>Server Configuration</h2>
<p>After your server is created, you can configure it through the control panel:</p>
<ul>
<li>Server settings and parameters</li>
<li>Player slots and limits</li>
<li>RCON/remote control access</li>
<li>FTP file access</li>
</ul>
<h2>Common Tasks</h2>
<h3>Starting Your Server</h3>
<p>Servers are automatically started after creation. You can stop/start your server from the control panel.</p>
<h3>Connecting to Your Server</h3>
<p>Use your server's IP address and port to connect from the game client.</p>
<h3>Managing Files</h3>
<p>Access your server files via FTP using the credentials provided in your control panel.</p>
<h2>Support</h2>
<p>If you need assistance with your CSPromod server:</p>
<ul>
<li>Check our <a href="/docs.php?action=view&doc=common-issues">Common Issues</a> guide</li>
<li>Contact support through your account dashboard</li>
<li>Visit the official CSPromod community for game-specific help</li>
</ul>
<div style="background: #78350f; padding: 20px; border-left: 4px solid #f59e0b; margin: 20px 0; border-radius: 4px;">
<h3 style="color: #ffffff; margin-top: 0;"><i class="fas fa-exclamation-triangle" style="color: #fbbf24; margin-right: 8px;"></i>Important Notes</h3>
<ul style="color: #fef3c7; line-height: 1.8;">
<li>Always keep your server updated to the latest version</li>
<li>Make regular backups of your server configuration</li>
<li>Review and follow the game's End User License Agreement (EULA)</li>
</ul>
</div>

Some files were not shown because too many files have changed in this diff Show more