Skip to content

Commit 2987db4

Browse files
committed
Add documentation for new features: Vanish, Demoscreen, and Endscreen commands
- Introduced `/vanish` command documentation for player invisibility. - Detailed `/demoscreen` and `/endscreen` for demo and cinematic effects. - Updated sidebar structure to include new commands. - Added supporting media assets for command demos.
1 parent c74f428 commit 2987db4

File tree

16 files changed

+127
-12
lines changed

16 files changed

+127
-12
lines changed

content/docs/eternalcore/features/adminchat.mdx

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,37 @@ import { AlertBox } from "../../../components/ui/alert-box";
1212

1313
## Introduction
1414

15-
The `/adminchat` command allows server staff to communicate privately, keeping sensitive discussions out of the public chat.
16-
It's ideal for coordination, moderation, and behind-the-scenes conversations between admins and moderators.
15+
The `/adminchat` command lets your staff communicate privately without cluttering public chat.
16+
It's useful for moderation, coordination, and any behind-the-scenes discussion between team members.
17+
18+
With EternalCore 2.0, AdminChat now supports **two modes**:
19+
1. **Quick message mode** — send a single message to staff.
20+
2. **Channel mode** — enable a persistent admin-only chat channel until you turn it off.
1721

1822
## Usage
1923

20-
To send a message to the admin chat, simply use the command followed by your message.
24+
### Quick Message
25+
Use this when you just want to send one message to the staff channel:
2126

2227
```text
2328
/adminchat <message>
29+
````
30+
31+
### Channel Mode (Toggle)
32+
33+
You can also enter a dedicated admin chat channel.
34+
While it’s enabled, everything you type goes directly to staff members.
35+
36+
```text
37+
/adminchat
2438
```
2539

40+
Run the command again to leave the channel.
41+
2642
## Showcase
2743

2844
![adminchat.gif](/docs/eternalcore/adminchat.gif)
45+
![adminchat2.gif](/docs/eternalcore/adminchat-channel.gif)
46+
47+
```
48+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Demoscreen Command
3+
description: Display a demo screen effect for a player.
4+
icon: Monitor
5+
---
6+
7+
import { AlertBox } from "../../../components/ui/alert-box";
8+
9+
<AlertBox type="info" title="Commands & Permissions">
10+
Check out the **[Commands & Permissions](/docs/eternalcore/commands-and-permissions)** page for a full list of commands and permissions.
11+
</AlertBox>
12+
13+
## Usage
14+
15+
```text
16+
/demoscreen <player>
17+
````
18+
19+
* Shows a demo screen effect for the specified player.
20+
21+
## Demo
22+
23+
![demoscreen-demo.gif](/docs/eternalcore/demoscreen.gif)
24+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Endscreen Command
3+
description: Trigger a cinematic end-screen effect for a player.
4+
icon: Zap
5+
---
6+
7+
import { AlertBox } from "../../../components/ui/alert-box";
8+
9+
<AlertBox type="info" title="Commands & Permissions">
10+
Check out the **[Commands & Permissions](/docs/eternalcore/commands-and-permissions)** page for a full list of commands and permissions.
11+
</AlertBox>
12+
13+
## Usage
14+
15+
```text
16+
/endscreen <player>
17+
````
18+
19+
* Triggers a cinematic end-screen effect for the specified player.
20+
21+
## Demo
22+
23+
![endscreen-demo.gif](/docs/eternalcore/endscreen.gif)
24+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: Vanish Command
3+
description: Hide yourself from other players and control visibility with the /vanish command.
4+
icon: EyeOff
5+
---
6+
7+
import { AlertBox } from "../../../components/ui/alert-box";
8+
9+
<AlertBox type="info" title="Commands & Permissions">
10+
Check out the **[Commands & Permissions](/docs/eternalcore/commands-and-permissions)** page for full details on who can use /vanish and related permissions.
11+
</AlertBox>
12+
13+
## Introduction
14+
15+
The `/vanish` command allows staff to become invisible to regular players.
16+
It's perfect for moderation, monitoring, or just moving around the server without being noticed.
17+
18+
With EternalCore 2.0, vanish is fully customizable via `config.yml`, giving you control over:
19+
20+
- Silent join
21+
- Godmode
22+
- Night vision
23+
- Silent inventory access
24+
- Glow effect color
25+
- Block item drop / pickup
26+
- Block hunger loss
27+
- Block chat usage
28+
- Block block-placing
29+
30+
## Usage
31+
32+
```text
33+
/vanish [toggle]
34+
````
35+
36+
* Running `/vanish` toggles your vanish state on or off.
37+
* Options can be configured globally in `config.yml` or overridden per permission group.
38+
39+
## Showcase
40+
41+
![vanish-demo.gif](/docs/eternalcore/vanish.gif)
42+

lib/sidebar-structure.ts

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,9 @@ export const docsStructure: DocItem[] = [
4646
icon: "PackageOpen",
4747
},
4848
{
49-
title: "Fun Commands",
50-
path: "/docs/eternalcore/features/fun",
51-
children: [
52-
{
53-
title: "Elder Guardian",
54-
path: "/docs/eternalcore/features/elderguardian",
55-
icon: "ScanEye",
56-
},
57-
],
49+
title: "Elder Guardian",
50+
path: "/docs/eternalcore/features/elderguardian",
51+
icon: "ScanEye",
5852
},
5953
{ title: "Feed", path: "/docs/eternalcore/features/feed", icon: "Apple" },
6054
{ title: "Fireball", path: "/docs/eternalcore/features/fireball", icon: "Volleyball" },
@@ -107,6 +101,17 @@ export const docsStructure: DocItem[] = [
107101
icon: "MapPinHouse",
108102
},
109103
{ title: "Time", path: "/docs/eternalcore/features/time", icon: "Clock" },
104+
{ title: "Vanish", path: "/docs/eternalcore/features/vanish", icon: "EyeOff" },
105+
{
106+
title: "Endscreen",
107+
path: "/docs/eternalcore/features/endscreen",
108+
icon: "Zap",
109+
},
110+
{
111+
title: "Demoscreen",
112+
path: "/docs/eternalcore/features/demoscreen",
113+
icon: "Monitor",
114+
},
110115
],
111116
},
112117
{ title: "FAQ", path: "/docs/eternalcore/faq", icon: "HelpCircle" },
15.8 MB
Loading
7.49 MB
Loading

public/docs/eternalcore/burn.gif

2.86 MB
Loading
2.51 MB
Loading
1.08 MB
Loading

0 commit comments

Comments
 (0)