Searching for plugin testers [Active Servers]

Status
This thread has been locked.

Frankfurt

Banned
Feedback score
0
Posts
243
Reactions
94
Resources
0
This is a copy of my thread on Spigot.

Hello,

I'm currently looking for a couple servers to test a plugin. I've been working on it for about a month, and would like it to be tested on a server that has some active players that would use it. It's a warps plugin with features that I haven't seen before. It could (should, ideally) also be used to replace the homes feature from Essentials. This plugin will be a premium resource. Any testers that provide useful feedback will be added to the list of buyers and receive regular plugin updates as if you bought it.

Everything has been tested and I feel confident that the plugin will perform as it should. This is more so to attain useful feedback, not to find bugs.

Features Include:

General:



    • Permission based
    • Very configurable
    • 95% GUI Based
    • Has Economy integration (Vault)
For non-staff players:



    • Allow players to set private warps, based on a permission node. This could replace the "Homes" feature of Essentials for new servers. No current compatibility exists, though.
    • Allow players to create public warps (Accessible through a button in the GUI while viewing their private warps). (Configurable, like most things)
      • When the player wants to create a public warp, it will submit their warp for a staff member to approve to avoid player's creating public warps into lava, etc.
      • There is a limit on how many public warps a player can have.
      • Staff will be alerted when a player submits a warp for approval.
    • Rename warps
For staff members:



    • Ability to delete public warps through the GUI.
    • A Staff warps GUI, in which any staff members can create warps that other staff members can see/use.
    • A spy command, to view all warps of another player.
The following information is very rough, taken directly from my notes and subject to change.
Permission nodes will be refined before the official release of the plugin to be more user friendly. The commands will most likely remain the same. The config.yml will without a doubt be added to and changed.
Code:
             "warps.'X'" = amount of warps a player can use, 1-9999
             "warps.discount.'X'" = discount, 0-100. Requires economy to be enabled

             "warps.use" = permission to use /warp, opens Default Gui
             "warps.public" = access to /warp public <warpName> allows a player to submit a warp to become public
             "warps.public.delete" = gives ability to delete public warps in gui
             "warps.approve" = permission for /warp queue, opens Approval Queue GUI
             "warps.spy" = permission for /warp spy <playerName>, views a player's warps
             "warps.rename" = allows a player to use /warp rename <oldName> <newName>

             "warps.staff" = allows a staff member to view staff-only warps using /warp staff
             "warps.staff.create" = allows a staff member to create a staff warp
             "warps.staff.remove" = allows a staff member to delete a staff warp

Code:
             /warp - opens default gui

             /warp public <warpName> = adds a warp to a queue to be processed by staff to make sure malicious warps
                                       aren't added
             /warp public remove <warpName> = Remove a public warp

             /warp queue = view the warps in the queue, and approve/deny them.
             /warp spy <playerName> = View another player's warps (Doesn't grant functionality to remove/create warps
                                      for them)
             /warp rename <oldName> <newName> = renames a warp

             /warp staff = Opens a gui of staff-only warps

Code:
###############################
#### General Configuration ####
###############################
# This is HIGHLY recommended
enable-update-checker: true

# If, enabled this will alert staff when a public warp is
# submitted for approval
alert-staff: true

# Limit the amount of warps a player can have as "public".
# Includes warps approved, and awaiting approval.
# Useful for avoiding approval spam
# Set to 0 for unlimited.
public-warps-limit: 5

#############################
### Economy Configuration ###
#############################
# Enable this if you would like to integrate an economy plugin
use-economy: true

# this is the default warp price (Before discounts)
warp-price: 1000

# Enable or disable refunds when a player deletes a warp
enable-refunds: false

# If enabled, specify an amount 1-100%
refund-amount: 0

##########################
### Chat Configuration ###
##########################
# This is sent to the player when /warp public <warpName> is used
public-warp-submitted: '&aYou have successfully submitted your warp. If a staff member approves it, it shall become public!'
public-warp-approved: '&aYour warp, %warpName%, has been approved by %approver%!'
public-warp-denied: '&aYour warp, %warpName%, has been denied by %denier%!'

# This is only used if alerts are enabled, see Line 9
public-warp-staff-alert: '&1%player% has submitted a warp for your approval. Use "/warp queue" to check!'

Methods of Contact:
Skype: Trev915
Discord: SpiroMarshes#1774
OR pm.
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

xLightbulbx

Supreme
Feedback score
1
Posts
105
Reactions
16
Resources
0
This sounds like a good usefull plugin. Sadly my server is shutting down and has no players. Other wise, GL. I'm sure it will work fine.
 

YourPanda

Retired Moderator
Supreme
Feedback score
34
Posts
3,287
Reactions
1,310
Resources
0
This is a copy of my thread on Spigot.

Hello,

I'm currently looking for a couple servers to test a plugin. I've been working on it for about a month, and would like it to be tested on a server that has some active players that would use it. It's a warps plugin with features that I haven't seen before. It could (should, ideally) also be used to replace the homes feature from Essentials. This plugin will be a premium resource. Any testers that provide useful feedback will be added to the list of buyers and receive regular plugin updates as if you bought it.

Everything has been tested and I feel confident that the plugin will perform as it should. This is more so to attain useful feedback, not to find bugs.

Features Include:

General:



    • Permission based
    • Very configurable
    • 95% GUI Based
    • Has Economy integration (Vault)
For non-staff players:



    • Allow players to set private warps, based on a permission node. This could replace the "Homes" feature of Essentials for new servers. No current compatibility exists, though.
    • Allow players to create public warps (Accessible through a button in the GUI while viewing their private warps). (Configurable, like most things)
      • When the player wants to create a public warp, it will submit their warp for a staff member to approve to avoid player's creating public warps into lava, etc.
      • There is a limit on how many public warps a player can have.
      • Staff will be alerted when a player submits a warp for approval.
    • Rename warps
For staff members:



    • Ability to delete public warps through the GUI.
    • A Staff warps GUI, in which any staff members can create warps that other staff members can see/use.
    • A spy command, to view all warps of another player.
The following information is very rough, taken directly from my notes and subject to change.
Permission nodes will be refined before the official release of the plugin to be more user friendly. The commands will most likely remain the same. The config.yml will without a doubt be added to and changed.
Code:
             "warps.'X'" = amount of warps a player can use, 1-9999
             "warps.discount.'X'" = discount, 0-100. Requires economy to be enabled

             "warps.use" = permission to use /warp, opens Default Gui
             "warps.public" = access to /warp public <warpName> allows a player to submit a warp to become public
             "warps.public.delete" = gives ability to delete public warps in gui
             "warps.approve" = permission for /warp queue, opens Approval Queue GUI
             "warps.spy" = permission for /warp spy <playerName>, views a player's warps
             "warps.rename" = allows a player to use /warp rename <oldName> <newName>

             "warps.staff" = allows a staff member to view staff-only warps using /warp staff
             "warps.staff.create" = allows a staff member to create a staff warp
             "warps.staff.remove" = allows a staff member to delete a staff warp

Code:
             /warp - opens default gui

             /warp public <warpName> = adds a warp to a queue to be processed by staff to make sure malicious warps
                                       aren't added
             /warp public remove <warpName> = Remove a public warp

             /warp queue = view the warps in the queue, and approve/deny them.
             /warp spy <playerName> = View another player's warps (Doesn't grant functionality to remove/create warps
                                      for them)
             /warp rename <oldName> <newName> = renames a warp

             /warp staff = Opens a gui of staff-only warps

Code:
###############################
#### General Configuration ####
###############################
# This is HIGHLY recommended
enable-update-checker: true

# If, enabled this will alert staff when a public warp is
# submitted for approval
alert-staff: true

# Limit the amount of warps a player can have as "public".
# Includes warps approved, and awaiting approval.
# Useful for avoiding approval spam
# Set to 0 for unlimited.
public-warps-limit: 5

#############################
### Economy Configuration ###
#############################
# Enable this if you would like to integrate an economy plugin
use-economy: true

# this is the default warp price (Before discounts)
warp-price: 1000

# Enable or disable refunds when a player deletes a warp
enable-refunds: false

# If enabled, specify an amount 1-100%
refund-amount: 0

##########################
### Chat Configuration ###
##########################
# This is sent to the player when /warp public <warpName> is used
public-warp-submitted: '&aYou have successfully submitted your warp. If a staff member approves it, it shall become public!'
public-warp-approved: '&aYour warp, %warpName%, has been approved by %approver%!'
public-warp-denied: '&aYour warp, %warpName%, has been denied by %denier%!'

# This is only used if alerts are enabled, see Line 9
public-warp-staff-alert: '&1%player% has submitted a warp for your approval. Use "/warp queue" to check!'

Methods of Contact:
Skype: Trev915
Discord: SpiroMarshes#1774
OR pm.
You are not allowed to link a spigot thread, if I remember correctly. However, nice server :p
 

Frankfurt

Banned
Feedback score
0
Posts
243
Reactions
94
Resources
0
This sounds like a good usefull plugin. Sadly my server is shutting down and has no players. Other wise, GL. I'm sure it will work fine.

Everything has been tested and I feel confident that the plugin will perform as it should. This is more so to attain useful feedback, not to find bugs.

It will work fine, I would just like it to be tested in an environment where it's being used by multiple people. This is to add features and build upon it based on feedback before I release it publicly.

Please use the Default colour. ;-;
Fixed. :)[DOUBLEPOST=1476910323][/DOUBLEPOST]
However, nice server :p
o_O
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/spiromarshes-scam-report.395704/)

YourPanda

Retired Moderator
Supreme
Feedback score
34
Posts
3,287
Reactions
1,310
Resources
0
It will work fine, I would just like it to be tested in an environment where it's being used by multiple people. This is to add features and build upon it based on feedback before I release it publicly.


Fixed. :)[DOUBLEPOST=1476910323][/DOUBLEPOST]
o_O
My bad, plugin lmao I am used to saying server D:
 

Frankfurt

Banned
Feedback score
0
Posts
243
Reactions
94
Resources
0
Wouldnt "none" be default?
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/spiromarshes-scam-report.395704/)

Jayson

Supreme
Feedback score
17
Posts
1,258
Reactions
741
Resources
0
I'll take one copy :) I can probably use it on my pre-purchase plugin/configuration test server.
 

Frankfurt

Banned
Feedback score
0
Posts
243
Reactions
94
Resources
0
I'll take one copy :) I can probably use it on my pre-purchase plugin/configuration test server.
Sorry, it's for servers that are currently active with a playerbase.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/spiromarshes-scam-report.395704/)
Status
This thread has been locked.
Top