Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/core-concepts/scripting/dimensions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ All you need to know about Dimensions

## What is a Dimension

Dimensions are separated worlds in the client-side, where players and actors are separated. In nanos world, they are represented by numbers. It is possible to have up to 65.535 different dimensions.
Dimensions are separated worlds in the client-side, where players and actors are separated. In nanos world, they are represented by numbers. It is possible to have up to 65,535 different dimensions.

By default all players and entities are in the dimension `1`. By moving a Player to another dimension, all entities that are not from that dimension will be destroyed to that player, and all entities in the new dimension will spawn for him.

Expand Down Expand Up @@ -44,4 +44,4 @@ By sending an entity, their "children" will be moved to that dimension too, for
- When sending an **Actor**, all the other attached **Actors** will move as well.
- When sending a **Player**, the **Character** will move too.
- When sending a **Character**, the **Player** is not moved together, but the grabbing **Weapons** or **Props** (and attached **Actors**) will.
- When sending a **Vehicle**, all **Characters** will leave the vehicle (this will be improved soon™).
- When sending a **Vehicle**, all **Characters** will leave the vehicle (this will be improved soon™).
4 changes: 2 additions & 2 deletions docs/core-concepts/server-manual/command-line-interface.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Command Line Interface - CLI
description: How to use theCommand Line Interface to install packages and update the server.
description: How to use the Command Line Interface to install packages and update the server.
sidebar_position: 3
tags: [hosting]
---
Expand Down Expand Up @@ -113,4 +113,4 @@ You can also install/update several Packages/Assets in a single command, separat
install package sandbox battlefield-kill-ui
```

:::
:::
2 changes: 1 addition & 1 deletion docs/core-concepts/server-manual/game-panels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ After the nest is created, go back to the `NESTS` page and click on the button `

:::tip

Congrats! You have installed nanos world server on pterodactyl!. You can check how to configure the server below.
Congrats! You have installed nanos world server on Pterodactyl! You can check how to configure the server below.

:::

Expand Down
2 changes: 1 addition & 1 deletion docs/scripting-reference/classes/file.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ It's not allowed to access files outside the client's cache folder `Packages/`,

The default directory is in the client's cached `Packages/.transient/` folder.

Example accessing a file from a Package (with ready-only access): `../my-package/Client/MyFile.json`.
Example accessing a file from a Package (with read-only access): `../my-package/Client/MyFile.json`.

Example accessing a transient file (with write access): `MyFile.json`.

Expand Down
Loading