-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation.html
More file actions
899 lines (796 loc) · 40.2 KB
/
documentation.html
File metadata and controls
899 lines (796 loc) · 40.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Complete documentation for ServerMaster Pro - installation guides, user manuals, and API reference.">
<title>Documentation - ServerMaster Pro</title>
<link rel="stylesheet" href="styles.css">
<style>
.tab-container {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}
.tab-button {
padding: 1rem 2rem;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
color: var(--text-secondary);
cursor: pointer;
transition: all var(--transition-fast);
font-weight: 600;
}
.tab-button:hover {
border-color: var(--primary-color);
color: var(--primary-color);
}
.tab-button.active {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
.tab-content {
display: none;
animation: fadeIn 0.3s ease;
}
.tab-content.active {
display: block;
}
.doc-section {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-lg);
padding: var(--spacing-md);
margin-bottom: var(--spacing-md);
}
.doc-section h3 {
color: var(--primary-color);
margin-bottom: var(--spacing-sm);
}
.step-list {
counter-reset: step-counter;
list-style: none;
padding: 0;
}
.step-list li {
counter-increment: step-counter;
margin-bottom: var(--spacing-md);
padding-left: 3rem;
position: relative;
}
.step-list li::before {
content: counter(step-counter);
position: absolute;
left: 0;
top: 0;
width: 2rem;
height: 2rem;
background: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}
.command-box {
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 1rem;
font-family: var(--font-mono);
color: var(--primary-light);
margin: var(--spacing-sm) 0;
position: relative;
}
.info-box {
background: rgba(0, 212, 255, 0.1);
border-left: 4px solid var(--primary-color);
padding: 1rem;
margin: var(--spacing-sm) 0;
border-radius: var(--radius-sm);
}
.warning-box {
background: rgba(255, 107, 107, 0.1);
border-left: 4px solid var(--secondary-color);
padding: 1rem;
margin: var(--spacing-sm) 0;
border-radius: var(--radius-sm);
}
.success-box {
background: rgba(76, 217, 100, 0.1);
border-left: 4px solid #4cd964;
padding: 1rem;
margin: var(--spacing-sm) 0;
border-radius: var(--radius-sm);
}
</style>
<link rel="icon" type="image/png" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎮</text></svg>">
<script src="https://sites.super.myninja.ai/_assets/ninja-daytona-script.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">
<div class="nav-logo-icon">SMP</div>
<span>ServerMaster Pro</span>
</a>
<ul class="nav-menu" id="navMenu">
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="documentation.html" class="active">Documentation</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div style="display: flex; gap: 1rem; align-items: center;">
<button class="theme-toggle" id="themeToggle" aria-label="Toggle theme">🌙</button>
<button class="mobile-menu-toggle" id="mobileMenuToggle" aria-label="Toggle menu">☰</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero" style="min-height: 50vh;">
<div class="hero-content">
<div class="hero-badge">📚 Complete Documentation</div>
<h1>Documentation</h1>
<p class="hero-subtitle">
Everything you need to install, configure, and master ServerMaster Pro.
</p>
</div>
</section>
<!-- Documentation Content -->
<section class="section">
<div class="container">
<!-- Tab Navigation -->
<div class="tab-container">
<button class="tab-button active" data-tab="installation">Installation Guide</button>
<button class="tab-button" data-tab="quickstart">Quick Start</button>
<button class="tab-button" data-tab="configuration">Configuration</button>
<button class="tab-button" data-tab="features">Feature Guide</button>
<button class="tab-button" data-tab="commands">Commands</button>
<button class="tab-button" data-tab="troubleshooting">Troubleshooting</button>
<button class="tab-button" data-tab="faq">FAQ</button>
</div>
<!-- Installation Guide Tab -->
<div id="installation" class="tab-content active">
<div class="doc-section">
<h2>📥 Installation Guide</h2>
<p>Follow these steps to install ServerMaster Pro on your Project Zomboid server.</p>
</div>
<div class="doc-section">
<h3>Prerequisites</h3>
<ul class="feature-list">
<li>Project Zomboid Dedicated Server (Build 41+)</li>
<li>Server administrator access</li>
<li>Your Steam ID (for admin permissions)</li>
<li>Basic knowledge of file editing</li>
</ul>
</div>
<div class="doc-section">
<h3>Installation Steps</h3>
<ol class="step-list">
<li>
<strong>Download ServerMaster Pro</strong>
<p>Download the latest version from the <a href="download.html">Downloads page</a> or Steam Workshop.</p>
<div class="command-box">
ServerMasterPro-v1.0.0.zip
</div>
</li>
<li>
<strong>Extract the Files</strong>
<p>Extract the downloaded archive to your Project Zomboid mods directory:</p>
<div class="command-box">
Windows: C:\Users\[YourUsername]\Zomboid\mods\<br>
Linux: ~/.local/share/Zomboid/mods/
</div>
</li>
<li>
<strong>Find Your Steam ID</strong>
<p>You'll need your Steam ID64 for admin permissions. Find it at:</p>
<div class="command-box">
https://steamid.io/
</div>
<div class="info-box">
<strong>💡 Tip:</strong> Your Steam ID64 is a 17-digit number that looks like: 76561198012345678
</div>
</li>
<li>
<strong>Configure Admin Permissions</strong>
<p>Edit the configuration file located at:</p>
<div class="command-box">
mods/ServerMasterPro/media/lua/shared/ServerMasterPro_Config.lua
</div>
<p>Add your Steam ID to the Admins table:</p>
<div class="code-block">
<button class="copy-button" onclick="copyCode(this)">Copy</button>
<pre><code>Admins = {
["76561198012345678"] = {
name = "YourName",
role = "owner",
permissions = {"all"}
}
}</code></pre>
</div>
</li>
<li>
<strong>Enable the Mod</strong>
<p>Add ServerMaster Pro to your server's mod list in the server settings:</p>
<div class="command-box">
Mods=ServerMasterPro
</div>
</li>
<li>
<strong>Start Your Server</strong>
<p>Launch your Project Zomboid server. The mod will load automatically.</p>
<div class="success-box">
<strong>✅ Success!</strong> ServerMaster Pro is now installed. Press F9 in-game to open the admin panel.
</div>
</li>
</ol>
</div>
<div class="doc-section">
<h3>Verification</h3>
<p>To verify the installation was successful:</p>
<ul class="feature-list">
<li>Check the server console for "ServerMaster Pro loaded successfully"</li>
<li>Join the server and press F9 (default hotkey)</li>
<li>The admin panel should appear if you're configured as an admin</li>
</ul>
</div>
</div>
<!-- Quick Start Tab -->
<div id="quickstart" class="tab-content">
<div class="doc-section">
<h2>🚀 Quick Start Guide</h2>
<p>Get up and running with ServerMaster Pro in 5 minutes.</p>
</div>
<div class="doc-section">
<h3>First Time Setup</h3>
<ol class="step-list">
<li>
<strong>Open the Admin Panel</strong>
<p>Press <code>F9</code> (default hotkey) to open the ServerMaster Pro interface.</p>
</li>
<li>
<strong>Explore the Dashboard</strong>
<p>The Dashboard tab shows server overview, online players, and quick actions.</p>
</li>
<li>
<strong>Customize Your Settings</strong>
<p>Go to the Settings tab to configure hotkeys, themes, and preferences.</p>
</li>
</ol>
</div>
<div class="doc-section">
<h3>Common Tasks</h3>
<h4>Teleporting to a Player</h4>
<ol class="feature-list">
<li>Open the Players tab</li>
<li>Select the player from the list</li>
<li>Click "Teleport to Player"</li>
</ol>
<h4>Spawning Items</h4>
<ol class="feature-list">
<li>Open the Items tab</li>
<li>Search for the item you want</li>
<li>Click "Spawn" or use a pre-configured kit</li>
</ol>
<h4>Making Announcements</h4>
<ol class="feature-list">
<li>Open the Communication tab</li>
<li>Type your message in the announcement field</li>
<li>Click "Send Announcement"</li>
</ol>
</div>
<div class="doc-section">
<h3>Essential Hotkeys</h3>
<div class="grid grid-2">
<div class="card">
<h4>F9</h4>
<p>Toggle admin panel</p>
</div>
<div class="card">
<h4>Ctrl + T</h4>
<p>Quick teleport menu</p>
</div>
<div class="card">
<h4>Ctrl + I</h4>
<p>Quick item spawn</p>
</div>
<div class="card">
<h4>Ctrl + P</h4>
<p>Player list</p>
</div>
</div>
</div>
</div>
<!-- Configuration Tab -->
<div id="configuration" class="tab-content">
<div class="doc-section">
<h2>⚙️ Configuration Guide</h2>
<p>Detailed configuration options for ServerMaster Pro.</p>
</div>
<div class="doc-section">
<h3>Configuration File Location</h3>
<div class="command-box">
mods/ServerMasterPro/media/lua/shared/ServerMasterPro_Config.lua
</div>
</div>
<div class="doc-section">
<h3>Admin Configuration</h3>
<p>Configure admin users and their permissions:</p>
<div class="code-block">
<button class="copy-button" onclick="copyCode(this)">Copy</button>
<pre><code>Admins = {
["76561198012345678"] = {
name = "Owner",
role = "owner",
permissions = {"all"}
},
["76561198087654321"] = {
name = "Moderator",
role = "moderator",
permissions = {
"player_management",
"teleport",
"kick",
"mute"
}
}
}</code></pre>
</div>
<h4>Permission Levels</h4>
<ul class="feature-list">
<li><strong>owner</strong> - Full access to all features</li>
<li><strong>admin</strong> - Most features except critical server settings</li>
<li><strong>moderator</strong> - Player management and basic moderation</li>
<li><strong>helper</strong> - Limited access to help players</li>
</ul>
</div>
<div class="doc-section">
<h3>UI Configuration</h3>
<div class="code-block">
<button class="copy-button" onclick="copyCode(this)">Copy</button>
<pre><code>UI = {
hotkey = Keyboard.KEY_F9,
theme = "dark", -- "dark", "light", or "custom"
position = {x = 100, y = 100},
size = {width = 800, height = 600},
opacity = 0.95,
fontSize = 14
}</code></pre>
</div>
</div>
<div class="doc-section">
<h3>Feature Toggles</h3>
<div class="code-block">
<button class="copy-button" onclick="copyCode(this)">Copy</button>
<pre><code>Features = {
playerManagement = true,
worldControl = true,
itemSpawning = true,
automation = true,
chatLogging = true,
profanityFilter = false,
antiGrief = true,
afkKick = true
}</code></pre>
</div>
</div>
<div class="doc-section">
<h3>Automation Settings</h3>
<div class="code-block">
<button class="copy-button" onclick="copyCode(this)">Copy</button>
<pre><code>Automation = {
scheduledRestart = {
enabled = true,
times = {"06:00", "18:00"},
warningMinutes = {30, 15, 5, 1}
},
autoBackup = {
enabled = true,
interval = 3600, -- seconds
keepBackups = 10
},
afkKick = {
enabled = true,
timeout = 1800, -- 30 minutes
exemptAdmins = true
}
}</code></pre>
</div>
</div>
</div>
<!-- Feature Guide Tab -->
<div id="features" class="tab-content">
<div class="doc-section">
<h2>📖 Feature Guide</h2>
<p>Comprehensive guide to all ServerMaster Pro features.</p>
</div>
<div class="doc-section">
<h3>Dashboard Tab</h3>
<p>The Dashboard provides an overview of your server status:</p>
<ul class="feature-list">
<li><strong>Server Info</strong> - Name, version, uptime, player count</li>
<li><strong>Performance Metrics</strong> - CPU, memory, TPS</li>
<li><strong>Online Players</strong> - Quick list of connected players</li>
<li><strong>Quick Actions</strong> - Common admin tasks</li>
<li><strong>Recent Events</strong> - Latest server events and actions</li>
</ul>
</div>
<div class="doc-section">
<h3>Players Tab</h3>
<p>Complete player management interface:</p>
<ul class="feature-list">
<li><strong>Player List</strong> - All online players with stats</li>
<li><strong>Player Actions</strong> - Teleport, heal, kick, ban, mute</li>
<li><strong>Inventory View</strong> - See player inventories</li>
<li><strong>Health Management</strong> - Heal, cure, adjust stats</li>
<li><strong>Moderation Tools</strong> - Warnings, kicks, bans</li>
</ul>
</div>
<div class="doc-section">
<h3>World Tab</h3>
<p>Control the game world:</p>
<ul class="feature-list">
<li><strong>Zombie Control</strong> - Spawn, clear, adjust population</li>
<li><strong>Weather</strong> - Change weather conditions</li>
<li><strong>Time Control</strong> - Set time, fast forward</li>
<li><strong>Events</strong> - Trigger helicopter, gunshots, alarms</li>
<li><strong>Utilities</strong> - Toggle power, water, fuel</li>
</ul>
</div>
<div class="doc-section">
<h3>Server Tab</h3>
<p>Server configuration and monitoring:</p>
<ul class="feature-list">
<li><strong>Settings</strong> - Adjust server parameters</li>
<li><strong>Performance</strong> - Monitor resource usage</li>
<li><strong>Gameplay</strong> - Modify game mechanics</li>
<li><strong>Security</strong> - Configure protection settings</li>
</ul>
</div>
<div class="doc-section">
<h3>Items Tab</h3>
<p>Item spawning and management:</p>
<ul class="feature-list">
<li><strong>Item Search</strong> - Find items by name or category</li>
<li><strong>Quick Spawn</strong> - Spawn items to inventory or ground</li>
<li><strong>Pre-configured Kits</strong> - Starter, Medical, Builder, Farmer, Combat</li>
<li><strong>Custom Kits</strong> - Create and save your own kits</li>
<li><strong>Bulk Operations</strong> - Spawn multiple items at once</li>
</ul>
</div>
<div class="doc-section">
<h3>Communication Tab</h3>
<p>Messaging and announcements:</p>
<ul class="feature-list">
<li><strong>Global Announcements</strong> - Broadcast to all players</li>
<li><strong>Private Messages</strong> - Send DMs to specific players</li>
<li><strong>Chat Monitor</strong> - View live chat feed</li>
<li><strong>Templates</strong> - Save common messages</li>
</ul>
</div>
<div class="doc-section">
<h3>Logs Tab</h3>
<p>Comprehensive logging system:</p>
<ul class="feature-list">
<li><strong>Player Logs</strong> - Connections, disconnections, deaths</li>
<li><strong>Admin Logs</strong> - All admin actions</li>
<li><strong>Chat Logs</strong> - Complete chat history</li>
<li><strong>Server Logs</strong> - Server events and errors</li>
<li><strong>Export</strong> - Export logs to file</li>
</ul>
</div>
<div class="doc-section">
<h3>Automation Tab</h3>
<p>Automated server management:</p>
<ul class="feature-list">
<li><strong>Scheduled Restarts</strong> - Configure automatic restarts</li>
<li><strong>Auto-Backups</strong> - Set up backup schedules</li>
<li><strong>Anti-Grief</strong> - Enable protection systems</li>
<li><strong>AFK Management</strong> - Configure AFK kick settings</li>
</ul>
</div>
<div class="doc-section">
<h3>Settings Tab</h3>
<p>Customize ServerMaster Pro:</p>
<ul class="feature-list">
<li><strong>UI Settings</strong> - Theme, position, size</li>
<li><strong>Hotkeys</strong> - Configure keyboard shortcuts</li>
<li><strong>Permissions</strong> - Manage admin roles</li>
<li><strong>Features</strong> - Enable/disable features</li>
<li><strong>Import/Export</strong> - Backup and restore settings</li>
</ul>
</div>
</div>
<!-- Commands Tab -->
<div id="commands" class="tab-content">
<div class="doc-section">
<h2>💻 Command Reference</h2>
<p>Complete list of chat commands and their usage.</p>
</div>
<div class="doc-section">
<h3>Player Commands</h3>
<div class="command-box">
/smp help - Display help menu<br>
/smp version - Show mod version<br>
/smp info - Display server information
</div>
</div>
<div class="doc-section">
<h3>Admin Commands - Player Management</h3>
<div class="command-box">
/smp tp <player> - Teleport to player<br>
/smp bring <player> - Teleport player to you<br>
/smp heal <player> - Heal player<br>
/smp kick <player> [reason] - Kick player<br>
/smp ban <player> [reason] - Ban player<br>
/smp mute <player> [duration] - Mute player<br>
/smp unmute <player> - Unmute player
</div>
</div>
<div class="doc-section">
<h3>Admin Commands - World Control</h3>
<div class="command-box">
/smp spawnzombie <count> - Spawn zombies<br>
/smp clearzombies <radius> - Clear zombies<br>
/smp weather <type> - Change weather<br>
/smp time <hour> - Set time of day<br>
/smp event <type> - Trigger event
</div>
</div>
<div class="doc-section">
<h3>Admin Commands - Items</h3>
<div class="command-box">
/smp give <player> <item> [count] - Give item to player<br>
/smp kit <player> <kit_name> - Give kit to player<br>
/smp spawn <item> [count] - Spawn item at location
</div>
</div>
<div class="doc-section">
<h3>Admin Commands - Communication</h3>
<div class="command-box">
/smp announce <message> - Global announcement<br>
/smp pm <player> <message> - Private message<br>
/smp broadcast <message> - Broadcast message
</div>
</div>
<div class="doc-section">
<h3>Admin Commands - Server</h3>
<div class="command-box">
/smp save - Save server<br>
/smp restart [minutes] - Schedule restart<br>
/smp backup - Create backup<br>
/smp reload - Reload configuration
</div>
</div>
</div>
<!-- Troubleshooting Tab -->
<div id="troubleshooting" class="tab-content">
<div class="doc-section">
<h2>🔧 Troubleshooting</h2>
<p>Solutions to common issues and problems.</p>
</div>
<div class="doc-section">
<h3>Mod Not Loading</h3>
<div class="warning-box">
<strong>Problem:</strong> ServerMaster Pro doesn't appear in-game
</div>
<p><strong>Solutions:</strong></p>
<ul class="feature-list">
<li>Verify the mod is in the correct directory</li>
<li>Check that the mod is enabled in server settings</li>
<li>Ensure you're running a compatible Project Zomboid version (Build 41+)</li>
<li>Check server console for error messages</li>
<li>Try restarting the server</li>
</ul>
</div>
<div class="doc-section">
<h3>Admin Panel Not Opening</h3>
<div class="warning-box">
<strong>Problem:</strong> Pressing F9 doesn't open the admin panel
</div>
<p><strong>Solutions:</strong></p>
<ul class="feature-list">
<li>Verify your Steam ID is correctly added to the config</li>
<li>Check that you have admin permissions</li>
<li>Try a different hotkey in the configuration</li>
<li>Ensure you're connected to the server (not in main menu)</li>
<li>Check for conflicting mods</li>
</ul>
</div>
<div class="doc-section">
<h3>Commands Not Working</h3>
<div class="warning-box">
<strong>Problem:</strong> Chat commands return errors or don't work
</div>
<p><strong>Solutions:</strong></p>
<ul class="feature-list">
<li>Verify command syntax is correct</li>
<li>Check that you have permission for the command</li>
<li>Ensure the feature is enabled in configuration</li>
<li>Try using the UI instead of commands</li>
<li>Check server logs for error messages</li>
</ul>
</div>
<div class="doc-section">
<h3>Performance Issues</h3>
<div class="warning-box">
<strong>Problem:</strong> Server lag or poor performance
</div>
<p><strong>Solutions:</strong></p>
<ul class="feature-list">
<li>Disable unused features in configuration</li>
<li>Reduce logging frequency</li>
<li>Limit automation tasks</li>
<li>Check for other resource-heavy mods</li>
<li>Increase server resources if needed</li>
</ul>
</div>
<div class="doc-section">
<h3>Configuration Not Saving</h3>
<div class="warning-box">
<strong>Problem:</strong> Changes to config file don't persist
</div>
<p><strong>Solutions:</strong></p>
<ul class="feature-list">
<li>Ensure the file isn't read-only</li>
<li>Check file permissions</li>
<li>Save the file in UTF-8 encoding</li>
<li>Verify Lua syntax is correct</li>
<li>Restart the server after changes</li>
</ul>
</div>
<div class="doc-section">
<h3>Getting Help</h3>
<p>If you're still experiencing issues:</p>
<ul class="feature-list">
<li>Check the <a href="#faq">FAQ section</a></li>
<li>Search existing GitHub issues</li>
<li>Join our Discord server for support</li>
<li>Create a new GitHub issue with details</li>
<li>Include server logs and error messages</li>
</ul>
</div>
</div>
<!-- FAQ Tab -->
<div id="faq" class="tab-content">
<div class="doc-section">
<h2>❓ Frequently Asked Questions</h2>
<p>Answers to common questions about ServerMaster Pro.</p>
</div>
<div class="doc-section">
<h3>General Questions</h3>
<h4>Is ServerMaster Pro free?</h4>
<p>Yes! ServerMaster Pro is completely free and open source under the MIT License.</p>
<h4>What versions of Project Zomboid are supported?</h4>
<p>ServerMaster Pro supports Project Zomboid Build 41 and later versions.</p>
<h4>Can I use this on a client (single-player)?</h4>
<p>ServerMaster Pro is designed for dedicated servers, but can work in single-player with host privileges.</p>
<h4>Is it compatible with other mods?</h4>
<p>Yes, ServerMaster Pro is designed to be compatible with most other mods. Report any conflicts on GitHub.</p>
</div>
<div class="doc-section">
<h3>Installation & Setup</h3>
<h4>How do I find my Steam ID?</h4>
<p>Visit <a href="https://steamid.io/" target="_blank">steamid.io</a> and enter your Steam profile URL. Use the Steam ID64 (17-digit number).</p>
<h4>Can I have multiple admins?</h4>
<p>Yes! Add multiple Steam IDs to the Admins table in the configuration file with different permission levels.</p>
<h4>Do I need to restart the server after installation?</h4>
<p>Yes, you need to restart the server for the mod to load initially. After that, most config changes can be reloaded without restart.</p>
</div>
<div class="doc-section">
<h3>Features & Usage</h3>
<h4>Can I customize the hotkey?</h4>
<p>Yes, edit the UI.hotkey value in the configuration file to any keyboard key.</p>
<h4>How do I create custom item kits?</h4>
<p>Use the Items tab in the admin panel to select items and save them as a custom kit, or edit the configuration file directly.</p>
<h4>Can I schedule automatic restarts?</h4>
<p>Yes, configure scheduled restarts in the Automation section of the config file.</p>
<h4>Does it log admin actions?</h4>
<p>Yes, all admin actions are logged and can be viewed in the Logs tab or exported to file.</p>
</div>
<div class="doc-section">
<h3>Permissions & Security</h3>
<h4>What permission levels are available?</h4>
<p>Owner, Admin, Moderator, and Helper. Each level has different access to features.</p>
<h4>Can I restrict specific features?</h4>
<p>Yes, you can configure granular permissions for each admin in the configuration file.</p>
<h4>Is there protection against abuse?</h4>
<p>Yes, all admin actions are logged, and you can configure anti-grief protection systems.</p>
</div>
<div class="doc-section">
<h3>Technical Questions</h3>
<h4>Does it affect server performance?</h4>
<p>ServerMaster Pro is optimized for minimal performance impact. You can disable unused features to reduce overhead.</p>
<h4>Can I use it with RCON?</h4>
<p>Yes, ServerMaster Pro works alongside RCON and other server management tools.</p>
<h4>Where are logs stored?</h4>
<p>Logs are stored in the mod's data directory and can be exported through the Logs tab.</p>
<h4>Can I backup my configuration?</h4>
<p>Yes, use the Import/Export feature in the Settings tab to backup and restore your configuration.</p>
</div>
<div class="doc-section">
<h3>Support & Community</h3>
<h4>Where can I get help?</h4>
<p>Join our Discord server, check GitHub issues, or refer to this documentation.</p>
<h4>How do I report bugs?</h4>
<p>Create an issue on our GitHub repository with detailed information about the bug.</p>
<h4>Can I contribute to the project?</h4>
<p>Yes! ServerMaster Pro is open source. Check the GitHub repository for contribution guidelines.</p>
<h4>How often is it updated?</h4>
<p>We release updates regularly with new features, bug fixes, and improvements. Check the changelog for details.</p>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="section section-alt">
<div class="container">
<div style="text-align: center; max-width: 800px; margin: 0 auto;">
<h2 style="font-size: 2.5rem; margin-bottom: 1.5rem;">
Ready to Get Started?
</h2>
<p style="font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2rem;">
Download ServerMaster Pro and start managing your server like a pro.
</p>
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
<a href="download.html" class="btn btn-primary btn-large">Download Now</a>
<a href="features.html" class="btn btn-outline btn-large">View Features</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>ServerMaster Pro</h3>
<p style="color: var(--text-secondary);">
The ultimate server administration mod for Project Zomboid.
Free, open source, and built by the community.
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Resources</h3>
<ul class="footer-links">
<li><a href="https://github.com/NovaSysErr-X/ServerMasterPro">GitHub Repository</a></li>
<li><a href="https://steamcommunity.com/sharedfiles/filedetails/?id=YOUR_WORKSHOP_ID" target="_blank">Steam Workshop</a></li>
<li><a href="https://discord.gg/YOUR_INVITE_CODE" target="_blank">Discord Server</a></li>
<li><a href="https://github.com/NovaSysErr-X/ServerMasterPro/issues">Issue Tracker</a></li>
<li><a href="https://github.com/NovaSysErr-X/ServerMasterPro/releases">Changelog</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Legal</h3>
<ul class="footer-links">
<li><a href="https://github.com/NovaSysErr-X/ServerMasterPro/blob/main/LICENSE">MIT License</a></li>
<li><a href="https://github.com/NovaSysErr-X/ServerMasterPro/blob/main/PRIVACY.md">Privacy Policy</a></li>
<li><a href="https://github.com/NovaSysErr-X/ServerMasterPro/blob/main/TERMS.md">Terms of Use</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 ServerMaster Pro. Released under MIT License. Project Zomboid is a trademark of The Indie Stone.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>