From b11a28843019b09d7714d084e7d1edc0c989fecb Mon Sep 17 00:00:00 2001 From: anvorgesa <95182588+anvorgesa@users.noreply.github.com> Date: Tue, 23 Jul 2024 23:02:38 -0300 Subject: [PATCH] Updated --- 404.html | 8 +- addons/{banannouncer => }/index.html | 171 ++++++++++++------ .../addon-creation}/index.html | 93 +++++++--- getting-started/bot-creation/index.html | 10 +- getting-started/configuration/index.html | 10 +- getting-started/external-addons/index.html | 16 +- index.html | 18 +- knownissues/index.html | 21 ++- resources/css/retype.css | 2 +- resources/js/config.js | 2 +- resources/js/lunr.js | 2 +- resources/js/prism.js | 4 +- resources/js/retype.js | 2 +- resources/js/search.json | 2 +- sitemap.xml.gz | Bin 342 -> 368 bytes 15 files changed, 232 insertions(+), 129 deletions(-) rename addons/{banannouncer => }/index.html (68%) rename {addons/template => development/addon-creation}/index.html (86%) diff --git a/404.html b/404.html index e040ae2..e8fa910 100644 --- a/404.html +++ b/404.html @@ -3,7 +3,7 @@
- + @@ -27,11 +27,11 @@ - + - + - +
- Download
-
- Source Code
-
+ Made by the creator of Spicord, ProfileViewer is a premium/paid plugin that integrates with your Discord server, allowing your users to view their in-game statistics in a nice image. With ProfileViewer, users can see in-game stats (level, exp, kills, deaths, balance, etc.) Money obtained from this plugin is used to keep the Spicord project alive and to pay for its expenses (domain names,
+maven repository, site & bot hosting, etc.)
+ Purchase page (BuiltByBit)
+
+ Purchase page (Polymart)
+
+ Discord
+ Reward your players for being active! DiscordRewards is the ultimate plugin for incentivizing and rewarding player activity on your Discord server. With this plugin, you can easily encourage your Minecraft players to chat and socialize on Discord by offering in-game rewards for their participation.
+ Plugin page
+
+ GitHub
+
Discord
Announce the bans on your Discord server. BanAnnouncer is a plugin whose purpose is announcing in-game punishments to your Discord server. With this plugin, you can easily promote transparency and fairness within your community by ensuring that all members are aware of any rule violations and the consequences that have been imposed. The following announcement types are supported:
+ Plugin page
+
+ GitHub
+
+ Discord
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -251,7 +302,7 @@
© Copyright 2023. All rights reserved.
© Copyright 2024. All rights reserved.
(Main page)[]
+Maven
+<dependency>
+ <groupId>org.spicord</groupId>
+ <artifactId>spicord-common</artifactId>
+ <version>5.3.0</version>
+ <scope>provided</scope>
+</dependency>
+Addon class creation
+import org.spicord.api.addon.SimpleAddon;
+import org.spicord.bot.DiscordBot;
+
+import net.dv8tion.jda.api.JDA;
+
+public class YourAddon extends SimpleAddon {
+
+ public YourAddon() {
+ super("YourAddonName", "your_addon_id", "TheAuthor");
+ }
+
+ @Override
+ public void onReady(DiscordBot bot) {
+ // If you know how to use the JDA api you can go ahead and use it as usual.
+ JDA jda = bot.getJda();
+ }
+}
+Example addon registration with a spigot plugin
+import org.spicord.SpicordLoader;
+
+public class YourPlugin extends JavaPlugin {
+
+ @Override
+ public void onEnable() {
+ YourAddon addonInstance = new YourAddon();
+
+ SpicordLoader.addStartupListener(spicord -> {
+ spicord.getAddonManager().registerAddon(addonInstance);
+ });
+ }
+}
+