Merge remote-tracking branch 'origin/master'

# Conflicts:
#	README.md
This commit is contained in:
OmerBenGera 2021-06-19 00:13:06 +03:00
commit d82ba44f1f
4 changed files with 69 additions and 19 deletions

12
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,12 @@
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: Ome_R
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

25
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@ -0,0 +1,25 @@
---
name: Bug report
about: Report a bug in the plugin
title: ''
labels: Bug Report, Pending
assignees: OmerBenGera
---
**Minecraft's Version**
The minecraft version your server run on. Use /version to find which version you use.
It's recommended to also mention which jar you use (Spigot, Paper, etc)
**Plugin's Version**: -
The version of the plugin. If you use a dev build, mention which dev build you use.
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the bug.
**Additional information**
Additional information that can help understanding the issue.
Config file, clips, etc are more than welcome.

5
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Feature Requests
url: https://github.com/OmerBenGera/WildLoaders/discussions
about: Create feature requests, any posted in issue tracker will be removed.

View File

@ -1,6 +1,13 @@
# WildLoaders
WildLoaders - The best alternative for alts!
<p align="center">
<img src="https://bg-software.com/imgs/wildloaders-logo.png" />
<h2 align="center">The best alternative for alts!</h2>
</p>
<br>
<p align="center">
<a href="https://bg-software.com/discord/"><img src="https://img.shields.io/discord/293212540723396608?color=7289DA&label=Discord&logo=discord&logoColor=7289DA&link=https://bg-software.com/discord/"></a>
<a href="https://bg-software.com/patreon/"><img src="https://img.shields.io/badge/-Support_on_Patreon-F96854.svg?logo=patreon&style=flat&logoColor=white&link=https://bg-software.com/patreon/"></a><br>
<a href=""><img src="https://img.shields.io/maintenance/yes/2020"></a>
</p>
## Compiling
@ -12,28 +19,29 @@ You must add yourself all the private jars or purchase access to our private rep
##### Private Jars:
- EpicSpawners by Songoda [[link]](https://songoda.com/marketplace/product/13)
## API
You can hook into the plugin by using the built-in API module.<br>
The API module is safe to be used, its methods will not be renamed or changed, and will not have methods removed
without any further warning.<br>
You can add the API as a dependency using Maven or Gradle:<br>
The plugin is packed with a rich API for interacting with chunk loaders and more. When hooking into the plugin, it's highly recommended to only use the API and not the compiled plugin, as the API methods are not only commented, but also will not get removed or changed unless they are marked as deprecated. This means that when using the API, you won't have to do any additional changes to your code between updates.
#### Maven
##### Maven
```
<repository>
<id>bg-repo</id>
<url>https://repo.bg-software.com/repository/api/</url>
</repository>
<repositories>
<repository>
<id>bg-repo</id>
<url>https://repo.bg-software.com/repository/api/</url>
</repository>
</repositories>
<dependency>
<groupId>com.bgsoftware</groupId>
<artifactId>WildLoadersAPI</artifactId>
<version>latest</version>
</dependency>
<dependencies>
<dependency>
<groupId>com.bgsoftware</groupId>
<artifactId>WildLoadersAPI</artifactId>
<version>latest</version>
</dependency>
</dependencies>
```
#### Gradle
##### Gradle
```
repositories {
maven { url 'https://repo.bg-software.com/repository/api/' }