From f463278b0cc689191ff6fe50f59943048571a3e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davy=20H=C3=A9lard?= Date: Mon, 16 Jun 2025 10:30:26 +0200 Subject: [PATCH] Remove references of removed extensions --- docs/gdevelop5/extensions/cheat-code/index.md | 33 ----- docs/gdevelop5/extensions/choose/index.md | 35 ------ .../gdevelop5/extensions/secret-code/index.md | 99 --------------- .../extensions/time-detector/index.md | 113 ------------------ 4 files changed, 280 deletions(-) delete mode 100644 docs/gdevelop5/extensions/cheat-code/index.md delete mode 100644 docs/gdevelop5/extensions/choose/index.md delete mode 100644 docs/gdevelop5/extensions/secret-code/index.md delete mode 100644 docs/gdevelop5/extensions/time-detector/index.md diff --git a/docs/gdevelop5/extensions/cheat-code/index.md b/docs/gdevelop5/extensions/cheat-code/index.md deleted file mode 100644 index e245ebf3d5..0000000000 --- a/docs/gdevelop5/extensions/cheat-code/index.md +++ /dev/null @@ -1,33 +0,0 @@ -# CheatCode - - -Add cheat codes to your game. - -**Authors and contributors** to this community extension: [AshBadas](https://gd.games/AshBadas). - -!!! warning - This is an extension made by a community member — but not reviewed - by the GDevelop extension team. As such, we can't guarantee it - meets all the quality standards of official extensions. In case of - doubt, contact the author to know more about what the extension - does or inspect its content before using it. - ---- - -- Use "Cheat Code Entered" (A Condition to check if a cheat code was entered). - -Note: Only lowercase alphabets and no special characters can be used as a cheat code. - -!!! tip - Learn [how to install new extensions](/gdevelop5/extensions/search) by following a step-by-step guide. - -## Conditions - -**Cheat code entered** -Check if a cheat code was entered. - - - ---- - -*This page is an auto-generated reference page about the **CheatCode** extension, made by the community of [GDevelop, the open-source, cross-platform game engine designed for everyone](https://gdevelop.io/).* Learn more about [all GDevelop community-made extensions here](/gdevelop5/extensions). \ No newline at end of file diff --git a/docs/gdevelop5/extensions/choose/index.md b/docs/gdevelop5/extensions/choose/index.md deleted file mode 100644 index 1be484d362..0000000000 --- a/docs/gdevelop5/extensions/choose/index.md +++ /dev/null @@ -1,35 +0,0 @@ -# Choose a random value (deprecated) - - -Choose a random value in a list of strings or numbers. - -**Authors and contributors** to this community extension: [UlisesFreitas](https://gd.games/UlisesFreitas). - -!!! warning - This is an extension made by a community member — but not reviewed - by the GDevelop extension team. As such, we can't guarantee it - meets all the quality standards of official extensions. In case of - doubt, contact the author to know more about what the extension - does or inspect its content before using it. - ---- - -In an expression, use `Choose::RandomString` or `Choose::RandomNumber` and set the values you want to randomize separated by commas. - -This extension is deprecated. Use the [Array Tools extension](https://wiki.gdevelop.io/gdevelop5/extensions/array-tools) to get a random value from an array variable instead. - -!!! tip - Learn [how to install new extensions](/gdevelop5/extensions/search) by following a step-by-step guide. - -## Expressions - -| Expression | Description | | -|-----|-----|-----| -| `Choose::RandomNumber(string)` | Choose a number randomly between comma-separated numbers. || -| | _string_ | The string containing all numbers to choose randomly from, separated by commas Example: "10,20,30" | -| `Choose::RandomString(string)` | Choose randomly between comma-separated strings. || -| | _string_ | The string containing all options to choose randomly from, separated by commas Example: "option1,option2,option3" | - ---- - -*This page is an auto-generated reference page about the **Choose a random value (deprecated)** extension, made by the community of [GDevelop, the open-source, cross-platform game engine designed for everyone](https://gdevelop.io/).* Learn more about [all GDevelop community-made extensions here](/gdevelop5/extensions). \ No newline at end of file diff --git a/docs/gdevelop5/extensions/secret-code/index.md b/docs/gdevelop5/extensions/secret-code/index.md deleted file mode 100644 index 5913499304..0000000000 --- a/docs/gdevelop5/extensions/secret-code/index.md +++ /dev/null @@ -1,99 +0,0 @@ -# Secret Code - - -Allows to input a secret code for cheats and easter eggs. - -**Authors and contributors** to this community extension: [Dekar](https://gd.games/Dekar). - -!!! warning - This is an extension made by a community member — but not reviewed - by the GDevelop extension team. As such, we can't guarantee it - meets all the quality standards of official extensions. In case of - doubt, contact the author to know more about what the extension - does or inspect its content before using it. - ---- - -Allows to input a secret code for cheats and easter eggs. - -There are two behaviors in this extension: `SecretCode` and `ManualSecretCode`. - -To use `SecretCode`, simply attach the behavior to any object in a scene and set the desired code. Use the `Code entered` condition in the editor to trigger your desired effects with events. - -To use `ManualSecretCode`, first attach the behavior to any object in a scene. To enter a key, use the `Input key` action, and use the `Code entered` condition in the editor to trigger your desired effects with events. - -Inspired by Konami Code extension. - -!!! tip - Learn [how to install new extensions](/gdevelop5/extensions/search) by following a step-by-step guide. - - - -## Manual Secret Code - -Allows to manually input a secret code for cheats and easter eggs. - -### Behavior actions - -**Accept code** -Accept code input. - -**Change code** -Change secret code. - -**Input key** -Input key. - -**Reset code entered correctly status** -Reset code entered correctly status. - -**Reset inputted code** -Reset currently inputted code. - -### Behavior conditions - -**Is the code currently being entered** -Check if the code is currently being entered. - -**Code entered correctly** -Code entered correctly. - -**Is accepting code** -Check if the object is accepting code. - -### Behavior expressions - -| Expression | Description | | -|-----|-----|-----| -| `Object.ManualSecretCode::LastValidIndex()` | Return the last valid index. || -| `Object.ManualSecretCode::LastValidKey()` | Return the last valid key. || - -## Secret Code - -Allows to input a secret code for cheats and easter eggs. - -### Behavior actions - -**Accept code** -Accept code input. - -**Change code** -Change secret code. - -**Reset code entered correctly status** -Reset code entered correctly status. - -### Behavior conditions - -**Code entered correctly** -Code entered correctly. - -**Is accepting code** -Check if the object is accepting code. - -_No expressions for this behavior._ - - ---- - -*This page is an auto-generated reference page about the **Secret Code** extension, made by the community of [GDevelop, the open-source, cross-platform game engine designed for everyone](https://gdevelop.io/).* Learn more about [all GDevelop community-made extensions here](/gdevelop5/extensions). \ No newline at end of file diff --git a/docs/gdevelop5/extensions/time-detector/index.md b/docs/gdevelop5/extensions/time-detector/index.md deleted file mode 100644 index b8e824437d..0000000000 --- a/docs/gdevelop5/extensions/time-detector/index.md +++ /dev/null @@ -1,113 +0,0 @@ -# TimeDetector - - -Detects the current time of the day, week and month. - -**Authors and contributors** to this community extension: [TheMime](https://gd.games/TheMime). - -!!! warning - This is an extension made by a community member — but not reviewed - by the GDevelop extension team. As such, we can't guarantee it - meets all the quality standards of official extensions. In case of - doubt, contact the author to know more about what the extension - does or inspect its content before using it. - ---- - -1. Detects one of the following parts of the day : - - -- Morning. -- Dusk. -- Night. -- Dawn. - -2. Detects current day : - - -- Saturday, sunday, etc.. - -3. Detects current month of the year : - - -- January, February, etc.. - -!!! tip - Learn [how to install new extensions](/gdevelop5/extensions/search) by following a step-by-step guide. - -## Conditions - -**Is April** -Check if it is April. - -**Is August** -Check if it is August. - -**Is Dawn** -Check if it is Dawn. - -**Is December** -Check if it is December. - -**Is Dusk** -Check if it is Dusk. - -**Is February** -Check if it is February. - -**Is Friday** -Check if it is Friday. - -**Is January** -Check if it is January. - -**Is July** -Check if it is July. - -**Is June** -Check if it is June. - -**Is March** -Check if it is March. - -**Is May** -Check if it is May. - -**Is Monday** -Check if it is Monday. - -**Is Morning** -Check if it is Morning. - -**Is Night** -Check if it is Night. - -**Is November** -Check if it is November. - -**Is October** -Check if it is October. - -**Is Saturday** -Check if it is Saturday. - -**Is Septemper** -Check if it is Septemper. - -**Is Sunday** -Check if it is Sunday. - -**Is Thrusday** -Check if it is Thrusday. - -**Is Tuesday** -Check if it is Tuesday. - -**Is Wednesday** -Check if it is Wednesday. - - - ---- - -*This page is an auto-generated reference page about the **TimeDetector** extension, made by the community of [GDevelop, the open-source, cross-platform game engine designed for everyone](https://gdevelop.io/).* Learn more about [all GDevelop community-made extensions here](/gdevelop5/extensions). \ No newline at end of file