Spigot Plugin Configurations
These are some important settings you should turn on use your plugin successfully.
Step 1 - Configure Security Features
First thing that I highly recommend that you do to keep the plugin hidden is change the plugins details. The configuration option can be found in the config.yml .
plugin_info: # Modify plugin information
name: "HalosPlayerSpoof" # Name that appears when using /plugins
authors: [ "HalosDev" ] # Author that appears when using /version
version: "1.0.0" # Version that appears when using /version
command_proxy: "spoof" # Change the name of the main plugin commandStep 2 - Configure Fluctuation
Fluctuation will be the backbone to how the plugin works and spoofs your player counts. The configuration config may be a little tricky to get correct for your server.
provider:
# Available types: NAMEMC, LOCAL
type: NAMEMC
# This URL is ONLY relevant if your using namemc account generator.
url: https://api.namemc.com/server/mc.hypixel.net/likes
min-delay: 5
max-delay: 30
max-fake: 50
# Define how many real players need to be online before fluctuation will start.
# If set to -1 it will always run.
min-real-players: -1
# Customize LifeSpan.
# How long a fake player will stay on the server before leaving.
# Numbers are in mins here.
min-lifespan: 5
max-lifespan: 10This field is very important. This will control min and max of spoof players on your server. The percentages will fluctuate in between and will not go under or over.
max-fake: 50This setting will determine at what real player count will flucation turn on. If you have a smaller server I suggest you do 1-5. Bigger servers you can do more.
min-real-players: -1Step 3 - Configure Ping Module
Setting the ping will make your spoof players look more legit when looked at from the tab list. So it is make sure you set them correctly.
ping:
enabled: true
settings:
delay-min: 10
delay-max: 25
ping-min: 50
ping-max: 150Step 4 - Configure Ranks Module
The ranks module is a very important module to have configured. So that spoofed players will have ranks to match the real players on your server.
enabled: true
min-delay: 30
max-delay: 60
persistent-ranks: true
ranks:
default: 100If you have a Minecraft network, we recommend going to the next page and learn how to setup our Network sync option.
Last updated