You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-27Lines changed: 14 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,43 +1,34 @@
1
-
# WooMinecraft - Self-hosted Minecraft Donations
1
+
# WooMineSponge - Self-hosted Minecraft Donations
2
2
3
-
[WooMinecraft](http://woominecraft.com) is a free Minecraft Donation plugin for your server that provides a self-hosted solution where you're the boss. By leveraging a well known eCommerce plugin on the
3
+
WooMineSponge is a port of free Minecraft Donation plugin from Bukkit to Sponge's API. By leveraging a well known eCommerce plugin on the
4
4
WordPress side of things, we allow you to specify commands for product variations, general product commands, and resending of donations at any time.
This build supports only **Minecraft Spigot 1.12.2**
8
+
This build supports only **Minecraft Sponge**
9
9
10
10
If in your config you are using the **/shop** path as your URL, you must NOT use that going forward. Your host MUST support
11
11
access to the WordPress Rest API. If they do not, you should consider changing hosts.
12
12
13
13
## Config
14
14
Your config should look like the below section.
15
15
```
16
-
# Set this to the desired language file you wish to load.
17
-
#
18
-
# If your l10n is not available but one is that you know how to speak,consider
19
-
# contributing to this plugin at https://github.com/WooMinecraft/WooMinecraft/
20
-
lang: "en"
21
-
22
-
# This is how often, in seconds, the server will contact your WordPress installation
23
-
# to see if there are donations that need made.
24
-
update_interval: 1500
25
-
26
16
# You must set this to your WordPress site URL. If you installed WordPress in a
27
17
# subdirectory, it should point there.
28
-
url: "http://example.com"
18
+
url = "https://ar0n.com"
29
19
30
20
# This must match the WordPress key in your admin panel for WooMinecraft
21
+
# This is a key that YOU set, both needing to be identical in the admin panel
22
+
# and in this config file
31
23
# For security purposes, you MUST NOT leave this empty.
32
-
key: ""
24
+
key = ""
33
25
34
-
# Allowed words the player need to be on to run the commands.
35
-
# Disabled by default!
36
-
# whitelist-worlds:
37
-
# - world
26
+
# This is how often, in seconds, the server will contact your WordPress installation
27
+
# to see if there are donations that need made.
28
+
interval = 300
38
29
39
30
# Set to true in order to toggle debug information
40
-
debug: false
31
+
debug = false
41
32
```
42
33
43
34
## How does it work?
@@ -48,13 +39,6 @@ the WordPress server to check for donations for all online players.
48
39
If online players have commands waiting to be processed, then all necessary commands are ran. There is NO LIMIT to the type of commands you can set, `give`, `i`, `tp`, etc... all commands are ran
49
40
by the console sender, and not a player.
50
41
51
-
## Contributions
52
-
53
-
As with all Github projects, we encourage our users to contribute, even if it's just a small as [opening an issue](https://github.com/WooMinecraft/WooMinecraft). Every little bit helps, especially with pre-releases
54
-
that may be unstable.
55
-
56
-
Please review the [Contributors Guidelines](https://github.com/WooMinecraft/WooMinecraft/blob/master/CONTRIBUTING.md) for the best way to contribute. If you'd like to see our list of contributors, [check that out on github here](https://github.com/WooMinecraft/WooMinecraft/graphs/contributors).
57
-
58
42
## Mojang Guidelines
59
43
Since this plugin is GPL and entirely opensource, we cannot be sure how you will use this. However, when providing 'donation' options, you are still considered a
60
44
`commercial` entity and therefore are bound to the [Mojang Commercial Usage Guidelines](https://account.mojang.com/terms#commercial)
@@ -64,6 +48,9 @@ You'll need the WordPress plugin for this MC Plugin to work - you can [get it he
64
48
65
49
## Changelog
66
50
51
+
## 1.2.0-SPONGE
52
+
* Ported over to Sponge API. World whitelisting + language change is disabled.
53
+
67
54
## 1.2.0
68
55
* Tested on Spigot 1.12.2
69
56
* Cleaned up a lot of internals by simplifying a ton of requests.
0 commit comments