mstats-spigot/README.md
2024-12-07 14:33:28 +01:00

31 lines
No EOL
590 B
Markdown

### Instructions
In `pom.xml`:
```xml
<dependency>
<groupId>eu.m724</groupId>
<artifactId>mstats-spigot</artifactId>
</dependency>
```
In `plugin.yml`:
```yaml
libraries:
- eu.m724:mstats-spigot
```
In main class:
```java
import eu.m724.mstats.MStats;
import org.bukkit.plugin.java.JavaPlugin;
public class MyPlugin extends JavaPlugin {
@Override
public void onEnable() {
// it's recommended that this is the last line of onEnable
int mStatsId = 1; // replace this of course with your plugin ID
MStats.init(this, mStatsId);
}
}
```