diff --git a/content/docs/eternalcore/features/burn.mdx b/content/docs/eternalcore/features/burn.mdx new file mode 100644 index 00000000..1a53a528 --- /dev/null +++ b/content/docs/eternalcore/features/burn.mdx @@ -0,0 +1,12 @@ +--- +title: Burn command +description: Allows to set a player on fire for a set amount of ticks. +--- + +## Set Players on Fire with /burn Command +The `/burn` command enables server staff to set a player on fire for a specified duration, measured in ticks. This can be useful for various gameplay scenarios, such as punishments or challenges. +### Usage +To use the command, type `/burn `, replacing `` with the target player's name and `` with the desired duration in ticks (20 ticks = 1 second). +You can also use `/burn ` to set yourself on fire for the specified duration. + +![burn.gif](/docs/eternalcore/burn.gif) diff --git a/content/docs/eternalcore/features/fireball.mdx b/content/docs/eternalcore/features/fireball.mdx new file mode 100644 index 00000000..afe03179 --- /dev/null +++ b/content/docs/eternalcore/features/fireball.mdx @@ -0,0 +1,13 @@ +--- +title: Fireball Command +description: Launch fireballs at players or entities using the /fireball command. +--- + +## Launch Fireballs with /fireball Command +The `/fireball` command allows server staff to launch fireballs at players or entities, adding an exciting dynamic to gameplay. This can be used for fun, challenges, or even as a form of punishment. +### Usage +To use the command, type `/fireball `. Fireball will be launched in the direction you are facing. +The `` parameter controls how fast the fireball travels; higher values result in faster fireballs. +Negative values can be used to launch fireballs backward. + +![fireball.gif](/docs/eternalcore/fireball.gif) diff --git a/lib/sidebar-structure.ts b/lib/sidebar-structure.ts index d56d6ee0..b2fe1f7b 100644 --- a/lib/sidebar-structure.ts +++ b/lib/sidebar-structure.ts @@ -18,6 +18,8 @@ export const docsStructure: DocItem[] = [ { title: "Butcher Command", path: "/docs/eternalcore/features/butcher-command" }, { title: "AdminChat Command", path: "/docs/eternalcore/features/adminchat" }, { title: "Homes", path: "/docs/eternalcore/features/homes" }, + { title: "Burn", path: "/docs/eternalcore/features/burn" }, + { title: "Fireball", path: "/docs/eternalcore/features/fireball" } ], }, { title: "FAQ", path: "/docs/eternalcore/faq" }, diff --git a/public/docs/eternalcore/burn.gif b/public/docs/eternalcore/burn.gif new file mode 100644 index 00000000..b620e8d5 Binary files /dev/null and b/public/docs/eternalcore/burn.gif differ diff --git a/public/docs/eternalcore/fireball.gif b/public/docs/eternalcore/fireball.gif new file mode 100644 index 00000000..31ec205e Binary files /dev/null and b/public/docs/eternalcore/fireball.gif differ