Skip to content
Open
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
10 changes: 10 additions & 0 deletions plugins.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
1 change: 1 addition & 0 deletions plugins/lizardman-chest-helper
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

13 changes: 13 additions & 0 deletions plugins/lizardmanchesthelper/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
}
1 change: 1 addition & 0 deletions plugins/lizardmanchesthelper/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'lizardman-chest-helper'
Original file line number Diff line number Diff line change
@@ -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 {
}
Original file line number Diff line number Diff line change
@@ -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.