Skip to content

Commit

Permalink
Merge branch 'dev' into LabAPIUpdate
Browse files Browse the repository at this point in the history
  • Loading branch information
louis1706 committed Feb 10, 2025
2 parents c15bcc2 + 61c1c23 commit 6560885
Show file tree
Hide file tree
Showing 41 changed files with 359 additions and 631 deletions.
4 changes: 2 additions & 2 deletions .github/documentation/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It also allows plugin developers to not have to change their code after every up
This documentation will show you the bare basics of making an Exiled Plugin. From here you can start showing the world what creative things you can make with this framework!

### Example Plugin
The [Example Plugin](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Example) which is a simple plugin that shows off events and how to properly make them. Using this example will help you learn how to properly use Exiled. There are a couple of things in that plugin that are important, lets talk about them
The [Example Plugin](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Example) which is a simple plugin that shows off events and how to properly make them. Using this example will help you learn how to properly use Exiled. There are a couple of things in that plugin that are important, lets talk about them

#### On Enable + On Disable Dynamic Updates
Exiled is a framework that has a **Reload** command which can be used to reload all the plugins and get new ones. This means you must make your plugins **Dynamically Updatable.** This means that every variable, event, coroutine, etc *must* be assigned when enabled and nullified when disabled. The **On Enable** method should enable it all, and the **On Disable** method should disable it all. But you might be wondering what about **On Reload**? That void is meant to carry over static variables, as in every static constant you make won't be wiped. So you could do something like this:
Expand Down Expand Up @@ -203,4 +203,4 @@ If you want more information you should join our [discord!](https://discord.gg/P

We have a #resources channel that you might find useful, as well as exiled contributors and plugin developers who would be willing to assist you in the creation of your plugin(s).

Or you could read all the events that we have! If you want to check them out [here!](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Events/EventArgs)
Or you could read all the events that we have! If you want to check them out [here!](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Events/EventArgs)
4 changes: 2 additions & 2 deletions .github/documentation/localization/GettingStarted-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Isso também permite que desenvolvedores de plug-in não precisem atualizar seus
Esse documento mostrará a você os básicos de como se fazer um Plug-in para o Exiled. A partir daqui, você poderá mostrar ao mundo as coisas criativas que você pode criar com essa framework!

### Exemplo de Plug-in
Um [Exemplo de Plug-in](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Example) que é um plug-in simples que mostra eventos e como fazer eles adequadamente. Usar esse exemplo ajudará você a aprender a como usar o Exiled apropriadamente. Há alguns aspectos nesse plug-in que são importantes, falaremos sobre eles.
Um [Exemplo de Plug-in](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Example) que é um plug-in simples que mostra eventos e como fazer eles adequadamente. Usar esse exemplo ajudará você a aprender a como usar o Exiled apropriadamente. Há alguns aspectos nesse plug-in que são importantes, falaremos sobre eles.

#### Atualizações Dinâmicas em On Enable + On Disable
Exiled é uma framework que tem um comando de **Reload** que pode ser usado para recarregar todos os plug-ins e obter novos. Isso significa que você deve fazer com que seus plug-ins sejam **Dinamicamente Atualizáveis.** Isso significa que toda variável, evento, corrotina, etc *deve* ser atribuída quando ativada e anulada quando desativada. O método **On Enable** deve ativar todos, e o método **On Disable** deve desativar todos. Mas talvez você esteja se perguntando 'E o **On Reload**'? Essa função tem como objetivo carregar variáveis estáticas para que toda constante estática que você fizer não seja apagada. Então você poderia fazer algo assim:
Expand Down Expand Up @@ -203,4 +203,4 @@ Se você quiser mais informações, você deve entrar no nosso [discord!](https:

Nós temos um canal de #resources que você pode considerar útil, assim como colaboradores do EXILED e desenvolvedores de plug-in que estariam dispostos a ajudá-lo na criação de seus plug-ins.

Ou você poderia ler sobre todos os eventos que nós temos! Se você deseja verificá-los, veja [aqui!](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Events/EventArgs)
Ou você poderia ler sobre todos os eventos que nós temos! Se você deseja verificá-los, veja [aqui!](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Events/EventArgs)
2 changes: 1 addition & 1 deletion .github/documentation/localization/GettingStarted-FR.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,4 @@ Si vous voulez plus d'informations, vous devriez rejoindre notre [discord!](http

Nous avons un canal #resources que vous pourriez trouver utile, ainsi que des contributeurs Exiled et des développeurs de plugins qui seraient prêts à vous aider dans la création de votre/vos plugin(s).

Ou vous pourriez consulter tous les événements que nous avons ! Si vous voulez les consulter, [ici!](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Events/EventArgs)
Ou vous pourriez consulter tous les événements que nous avons ! Si vous voulez les consulter, [ici!](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Events/EventArgs)
4 changes: 2 additions & 2 deletions .github/documentation/localization/GettingStarted-KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Exiled는 불필요한 부분 없이 게임에서 함수를 직접적으로 호
이 문서는 Exiled 플러그인을 만들기 위한 가장 기본적인 부분을 설명하고 있습니다. 여기서부터 Exiled와 함께 당신의 창의력으로 무엇이든지 만들어보세요!

### 플러그인 예제
[플러그인 예제](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Example)는 이벤트를 사용하는 방법과 기본적인 구조를 설정하는 방법을 잘 나타내고 있습니다. 이것을 통해 Exiled를 제대로 사용하는 방법을 알 수 있으며, 이 플러그인 예제 안에는 몇 가지의 중요한 부분이 있습니다. 한번 볼까요?
[플러그인 예제](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Example)는 이벤트를 사용하는 방법과 기본적인 구조를 설정하는 방법을 잘 나타내고 있습니다. 이것을 통해 Exiled를 제대로 사용하는 방법을 알 수 있으며, 이 플러그인 예제 안에는 몇 가지의 중요한 부분이 있습니다. 한번 볼까요?

#### OnEnable + OnDisable 동적 업데이트
Exiled는 **Reload** 명령어를 통해 원래 있던 모든 플러그인과 새 플러그인들을 리로드 할 수 있습니다. 이 말은 여러분이 여러분들의 플러그인을 **동적으로 업데이트** 할 수 있게 만들어야 한다는 뜻입니다. 모든 변수, 이벤트, 코루틴 등등은 *무조건* 활성화되었을 때 할당되고 비활성화되었을 때 null이 되어야 합니다. **OnEnable** 메소드는 모든 것들을 활성화시켜야 하고, **OnDisable** 메소드는 모든 것을 비활성화시켜야 합니다. 그러면 **OnReload**는 뭘까요? 정적인 변수들은 리로드 될 때 지워지지 않으므로, 이 메소드는 변수들을 지워지게 놔두고 싶지 않을 때 사용합니다. 예를 들어:
Expand Down Expand Up @@ -211,4 +211,4 @@ public override OnEnabled()

#resources 채널에 들어가 유용한 정보들을 찾을 수 있으며, 여러분의 플러그인 개발을 기꺼이 도와줄 Exiled 기여자분들 또는 플러그인 개발자분들이 준비되어 있습니다.

...아니면 현재 존재하는 이벤트를 모두 읽고 싶으시다면 [여기](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Events/EventArgs)를 클릭해주세요!
...아니면 현재 존재하는 이벤트를 모두 읽고 싶으시다면 [여기](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Events/EventArgs)를 클릭해주세요!
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Exiled เป็น API ระดับต่ำ ซึ่งหมายคว
เอกสารนี้จะแสดงพื้นฐานเบื้องต้นของการสร้าง Exiled Plugin จากที่นี่. คุณสามารถเริ่มแสดงให้โลกเห็นว่าคุณสร้างสรรค์สิ่งสร้างสรรค์อะไรได้บ้างด้วยเฟรมเวิร์กนี้!

### ตัวอย่างปลั๊กอิน
นี้คือ [ตัวอย่างปลั๊กอิน](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Example) ซึ่งเป็นปลั๊กอินง่ายๆ ที่แสดงอีเวนท์ต่างๆ และวิธีสร้างอีเวนท์อย่างเหมาะสม. การใช้ตัวอย่างนี้จะช่วยให้คุณเรียนรู้วิธีใช้ Exiled ได้อย่างถูกต้อง. มีสองสิ่งที่สำคัญในปลั๊กอินนั้น, มาพูดถึงกันดีกว่า
นี้คือ [ตัวอย่างปลั๊กอิน](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Example) ซึ่งเป็นปลั๊กอินง่ายๆ ที่แสดงอีเวนท์ต่างๆ และวิธีสร้างอีเวนท์อย่างเหมาะสม. การใช้ตัวอย่างนี้จะช่วยให้คุณเรียนรู้วิธีใช้ Exiled ได้อย่างถูกต้อง. มีสองสิ่งที่สำคัญในปลั๊กอินนั้น, มาพูดถึงกันดีกว่า

#### On Enable + On Disable Dynamic Updates
Exiled เป็นเฟรมเวิร์กที่มีคำสั่ง **Reload** ซึ่งสามารถใช้เพื่อรีโหลดปลั๊กอินทั้งหมดและโหลดปลั๊กอินใหม่. ซึ่งหมายความว่าคุณต้องทำให้ปลั๊กอินของคุณ **Dynamically Updatable.** ซึ่งหมายความว่าทุกตัวแปร, อีเวนท์, coroutine, ฯลฯ *ต้อง* ได้รับการกำหนดเมื่อเปิดใช้งาน และจะเป็น nullified เมื่อปิดใช้งาน. วิธี **On Enable** ควรเปิดใช้งานทั้งหมด, และวิธีการ **เปิดปิดใช้งาน** ควรปิดใช้งานทั้งหมด. แต่คุณอาจสงสัยว่า **On Reload** เป็นอย่างไร? void นั้นมีไว้เพื่อส่งต่อตัวแปรคงที่, เนื่องจากค่าคงที่คงที่ทุกค่าที่คุณสร้างจะไม่ถูกล้าง. ดังนั้นคุณสามารถทำสิ่งนี้ได้:
Expand Down Expand Up @@ -204,4 +204,4 @@ public class EventHandlers

เรามีช่อง #dev-resources ที่คุณอาจพบว่ามีประโยชน์, เช่นเดียวกับผู้มีส่วนร่วมที่ Exiled และนักพัฒนาปลั๊กอินที่ยินดีช่วยเหลือคุณในการสร้างปลั๊กอินของคุณ.

หรือคุณสามารถอ่านอีเวนท์ทั้งหมดที่เรามี! คุณสามารถที่จะตรวจสอบได้จาก [ตรงนี้!](https://github.com/ExMod-Team/EXILED/tree/master/Exiled.Events/EventArgs)
หรือคุณสามารถอ่านอีเวนท์ทั้งหมดที่เรามี! คุณสามารถที่จะตรวจสอบได้จาก [ตรงนี้!](https://github.com/ExMod-Team/EXILED/tree/master/EXILED/Exiled.Events/EventArgs)
4 changes: 2 additions & 2 deletions .github/documentation/localization/README-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ A instalação do EXILED é bastante simples. Ele se carrega por meio da API de
Se você optar por usar o instalador, se executado corretamente, ele cuidará de instalar todos os recursos do EXILED.

# Windows
### Instalação automática ([mais informações](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Instalação automática ([mais informações](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))
**Nota**: Verifique se você está conectado ao usuário que executa o servidor ou se possui privilégios de administrador antes de executar o Instalador.

- Baixe o **`Exiled.Installer-Win.exe` [daqui](https://github.com/ExMod-Team/EXILED/releases)** (clique em Assets -> clique no Instalador)
Expand All @@ -49,7 +49,7 @@ Se você optar por usar o instalador, se executado corretamente, ele cuidará de
- Mova-o para: ``C:\Users\%NomeDoUsuário%\AppData\Roaming\EXILED\Plugins`` (mova-se para cá pressionando Win + R e, em seguida, escrevendo `%appdata%`)

# Linux
### Instalação automática ([mais informações](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Instalação automática ([mais informações](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))

**Nota:** Se você estiver instalando o EXILED em um servidor remoto, certifique-se de executar o instalador como o mesmo usuário que executa seus servidores de SCP:SL (ou root)

Expand Down
4 changes: 2 additions & 2 deletions .github/documentation/localization/README-CS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Instalace EXILED je poměrně jednoduchá. Načítá se prostřednictvím rozhra
Pokud se rozhodnete použít instalační program, postará se při správném spuštění o instalaci všech funkcí EXILED.

# Windows
### Automatická instalace ([více informací](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Automatická instalace ([více informací](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))
**Poznámka:**: Před spuštěním instalačního programu se ujistěte, že jste uživatelem, který provozuje server, nebo že máte oprávnění správce.

- Stáhněte **`Exiled.Installer-Win.exe` [odsud](https://github.com/ExMod-Team/EXILED/releases)** (Klikněte na Assets -> klikněte na Instalátor)
Expand All @@ -49,7 +49,7 @@ To je vše, EXILED by nyní měl být nainstalován a aktivní při příštím
- Přesuňte jej do: ``C:\Users\%UserName%\AppData\Roaming\EXILED\Plugins`` (dostaňte se sem stiskem Win + R, a pak psaním `%appdata%`)

# Linux
### Automatická instalace ([více informací](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Automatická instalace ([více informací](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))

**Poznámka:** Pokud instalujete EXILED na vzdálený server, ujistěte se, že jste instalátor spustili jako stejný uživatel, který spouští servery SCP:SL (nebo jako root).

Expand Down
4 changes: 2 additions & 2 deletions .github/documentation/localization/README-DE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Die Installation von EXILED ist ziemlich einfach. Es lädt sich selbst über Nor
Wenn Sie den Installer verwenden, wird er, wenn er korrekt ausgeführt wird, sich um die Installation aller EXILED-Funktionen kümmern.

# Windows
### Automatische Installation ([mehr Informationen](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Automatische Installation ([mehr Informationen](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))
**Hinweis**: Stellen Sie sicher, dass Sie als Benutzer, der den Server ausführt, angemeldet sind, oder Sie Adminrechte haben, bevor Sie den Installer ausführen.

- Laden Sie den **`Exiled.Installer-Win.exe` [hier](https://github.com/ExMod-Team/EXILED/releases)** herunter (klicken Sie auf Assets -> klicken Sie auf den Installer)
Expand All @@ -49,7 +49,7 @@ Das war's, EXILED sollte nun installiert sein und beim nächsten Start Ihres Ser
- Verschieben Sie es nach: ``C:\Users\%UserName%\AppData\Roaming\EXILED\Plugins`` (bewegen Sie sich hierhin, indem Sie Win + R drücken, dann `%appdata%` schreiben)

# Linux
### Automatische Installation ([mehr Informationen](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Automatische Installation ([mehr Informationen](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))

**Hinweis:** Wenn Sie EXILED auf einem Remote-Server installieren, stellen Sie sicher, dass Sie den Installer als denselben Benutzer ausführen, der Ihre SCP:SL-Server ausführt (oder root)

Expand Down
4 changes: 2 additions & 2 deletions .github/documentation/localization/README-DK.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Installation af EXILED er ganske enkel. Den indlæser sig selv gennem NW Plugin
Hvis du vælger at bruge installationsprogrammet, vil det, hvis det køres korrekt, sørge for at installere alle EXILED-funktioner.

# Windows
### Automatisk installation ([mere information](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Automatisk installation ([mere information](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))
**Note**: Sørg for, at du er på den bruger, der kører serveren, eller at du har administratorrettigheder, før du kører installationsprogrammet.

- Download **`Exiled.Installer-Win.exe` [herfra](https://github.com/ExMod-Team/EXILED/releases)** (klik på Assets -> klik på Installer) - Placer den i din servermappe (download den dedikerede server, hvis du ikke har gjort det).
Expand All @@ -46,7 +46,7 @@ Det var det, EXILED skulle nu være installeret og aktiv, næste gang du starter
- Download et plugin fra [*deres* udgivelsesside](https://i.imgur.com/u34wgPD.jpg) (**det SKAL være en `.dll`!**) - Flyt det til: ``C:\Users\(Your_User)\AppData\Roaming\EXILED\Plugins`` (flyt den hertil ved at trykke Win + R, og skriv derefter `%appdata%`)

# Linux
### Automatisk installation ([mere information](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Automatisk installation ([mere information](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))

**Bemærk:** Hvis du installerer EXILED på en fjernserver, skal du sørge for at køre installationsprogrammet som den samme bruger, der kører dine SCP:SL-servere (eller root).

Expand Down
4 changes: 2 additions & 2 deletions .github/documentation/localization/README-ES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ La instalación de EXILED es, en realidad, muy simple. Se carga por sí solo por
Si eliges el instalador automático (si se ejecuta correctamente) se encargará de instalar todas las funcionalidades de EXILED.

# Windows
### Instalación automática ([más información](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Instalación automática ([más información](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))
**Nota:** Asegurate de que estás en el usuario que ejecuta el servidor o tiene privilegios de administrador antes de iniciar el Instalador.

- Descarga **`Exiled.Installer-Win.exe` [de aquí](https://github.com/ExMod-Team/EXILED/releases)** (selecciona Assets -> descarga el Instalador).
Expand All @@ -50,7 +50,7 @@ Si eliges el instalador automático (si se ejecuta correctamente) se encargará
- Colócalo en: ``C:\Users\%UserName%\AppData\Roaming\EXILED\Plugins`` (muévete a esta carpeta presionando Win + R, después escribiendo `%appdata%`)

# Linux
### Instalación automática ([más información](https://github.com/ExMod-Team/EXILED/blob/master/Exiled.Installer/README.md))
### Instalación automática ([más información](https://github.com/ExMod-Team/EXILED/blob/master/EXILED/Exiled.Installer/README.md))

**Nota:** Si estás instalando EXILED en un servidor remoto, asegúrate de que inicias el Instalador con el mismo usuario que ejecuta el servidor de SCP: SL (o con root)

Expand Down
Loading

0 comments on commit 6560885

Please sign in to comment.