diff --git a/plugins.json b/plugins.json new file mode 100644 index 000000000000..618218e82253 --- /dev/null +++ b/plugins.json @@ -0,0 +1,10 @@ +[ + { + "internalName": "lizardman-chest-helper", + "displayName": "Lizardman Chest Helper", + "author": "GonkyBTW", + "description": "Helpful plugin to tell you when you've failed or succeeded so you dont need to spam click at chests.", + "tags": ["skilling"], + "version": "1.0.0" + } +] diff --git a/plugins/lizardman-chest-helper b/plugins/lizardman-chest-helper new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/plugins/lizardman-chest-helper @@ -0,0 +1 @@ + diff --git a/plugins/lizardmanchesthelper/build.gradle b/plugins/lizardmanchesthelper/build.gradle new file mode 100644 index 000000000000..f968ae4eacd9 --- /dev/null +++ b/plugins/lizardmanchesthelper/build.gradle @@ -0,0 +1,13 @@ +plugins { id 'java' } + +group = 'com.lizardman' +version = '1.0.0' + +repositories { + mavenCentral() + maven { url 'https://repo.runelite.net' } +} + +dependencies { + implementation group: 'net.runelite', name: 'client', version: 'latest.release' +} diff --git a/plugins/lizardmanchesthelper/settings.gradle b/plugins/lizardmanchesthelper/settings.gradle new file mode 100644 index 000000000000..0776bb1afcf9 --- /dev/null +++ b/plugins/lizardmanchesthelper/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'lizardman-chest-helper' \ No newline at end of file diff --git a/plugins/lizardmanchesthelper/src/main/java/com/lizardman/chesthelper/LizardmanChestHelperPlugin.java b/plugins/lizardmanchesthelper/src/main/java/com/lizardman/chesthelper/LizardmanChestHelperPlugin.java new file mode 100644 index 000000000000..1e27ed6f2490 --- /dev/null +++ b/plugins/lizardmanchesthelper/src/main/java/com/lizardman/chesthelper/LizardmanChestHelperPlugin.java @@ -0,0 +1,13 @@ +package com.lizardman.chesthelper; + +import net.runelite.client.plugins.Plugin; +import net.runelite.client.plugins.PluginDescriptor; + +@PluginDescriptor( + name = "Lizardman Chest Helper", + description = "Helpful plugin to tell you when you've failed or succeeded so you dont need to spam click at chests.", + tags = {"lizardman","chest"}, + enabledByDefault = false +) +public class LizardmanChestHelperPlugin extends Plugin { +} diff --git a/plugins/lizardmanchesthelper/src/main/resources/runelite-plugin.properties b/plugins/lizardmanchesthelper/src/main/resources/runelite-plugin.properties new file mode 100644 index 000000000000..63ee264a57d1 --- /dev/null +++ b/plugins/lizardmanchesthelper/src/main/resources/runelite-plugin.properties @@ -0,0 +1,3 @@ +displayName=Lizardman Chest Helper +author=GonkyBTW +description=Helpful plugin to tell you when you've failed or succeeded so you dont need to spam click at chests.