Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
# # Main configuration file # # You can find a list of available tags here: https://alessiodp.com/docs/parties/placeholders/ # # / = = = = = = = = = = = = = = = = \ # | PARTIES SETTINGS | # \ = = = = = = = = = = = = = = = = / parties: updates: # Check for updates, recommended. Parties will check for updates when the server finish to load check: true # Send a message to admins if an update is available warn: true # Message upon login and logout of partymates join-leave-messages: false bungeecord-sync: # Sync Parties plugins that are installed into your bungeecord server # You don't need to install it into Bungeecord too # This will let you synchronize database between different servers enable: false # Choose which things dispatch between servers dispatch: broadcasts: true chat: true # / = = = = = = = = = = = = = = = = \ # | STORAGE SETTINGS | # \ = = = = = = = = = = = = = = = = / storage: # What type of storage Parties should use? # Available types: # none = Parties data is saved into memory (A reload reset everything, disable log if used on it) # File based: # * txt = Output to file (ONLY LOG) # * yaml = Save all data into a YAML file (ONLY DATABASE) # SQL based: # * mysql = Save all data into a MySQL database # * sqlite = Save all data into a SQLite database log-storage-type: none database-storage-type: yaml log-settings: # Log format # %date% = Date as yyyy-MM-dd # %time% = Time as HH:mm:ss # %position% = Debug purpose, show caller class (USE IT TO REPORT BUGS) # %level% = Mode of the message # %message% = Message format: "%date% [%time%] (%level%) {%position%} %message%\n" # Log chat of parties chat: true # Print messages on the console print-console: true # Levels: # 1: Basic log level # 2: Log all events that interacts with the database # 3: Debug level (Log a lot of events) log-level: 1 migrate-settings: # Used to initialize an unused database to make it migratable initialize-storage: yaml: false mysql: false sqlite: false # Command migrate can be used only via console migrate-only-console: true # Rename old data.yml (Empty to overwrite) migration-suffix: "_backup" storage-settings: file-based: # File based DBs: YAML txt: log-name: "log.txt" yaml: database-name: "data.yml" sql-based: # SQL based DBs: MySQL, SQLite general-settings: varchar-size: 255 upgrade: save-old-table: true old-table-suffix: "_backup" tables: parties: "parties_parties" players: "parties_players" log: "parties_log" versions: "parties_versions" mysql: address: "localhost" port: "3306" database: "database" username: "username" password: "password" # Size of the connection pool pool-size: 10 # Lifetime of each connection, in milliseconds (Default: 30 minutes = 1800000ms) connection-lifetime: 1800000 # Property used to alert when the connection is not using a valid SSL certificate use-ssl: false # Charset used by tables charset: "utf8" sqlite: # SQLite is a SQL database that store data into a file database-name: "database.db" none: disband-on-leader-left: true # Delete empty parties after tot seconds delay-delete-party: 600 # / = = = = = = = = = = = = = = = = \ # | ADDITIONAL SETTINGS | # \ = = = = = = = = = = = = = = = = / additional: auto-command: # All partymates will use the same command that the leader uses (Rank permission: party.autocommand) # You can configure the leader with rank permissions enable: false # Choose which command should be repeated # You need to use regex here # By default it will allows any command except /party, /pay or /money) regex-whitelist: '^(?!(\/party|\/pay|\/money)).*' exp-system: # Documentation here: https://alessiodp.com/docs/parties/expsystem/ enable: true levels: enable: false # Modes: progressive, fixed, custom mode: progressive # Make infinite levels with a progressive multiplier progressive: # Level 1: 100, Level 2: 200, Level 3: 400 level-start: 100 level-multiplier: "*2" # Fixed levels experience cap # Example: Level 1 is 100, Level 2 is 600, Level 3 is 1600 fixed: - 100 - 500 - 1000 # Use a custom formula, it is a function of total experience # Only for EXPERTS (math functions knowledge required) # Use it only if you need a complex formula to calculate the # level from the total experience custom: # Use javascript code here. # Default formula is: f(x) = 2 log2(x/100) # Use x as %total_exp% to obtain current level. # By default, this is: 100, 200, 400, 800 of TOTAL experience # If you use the custom mode, you cannot use anymore placeholders # to calculate how many exp you need to level up. formula: "2 + (Math.log(%total_exp%/100) / Math.log(2))" exp-drop: # Enable exp dropping enable: true sharing: # Enable exp sharing between players # Useless if you are collecting exp for the party # Useful if you are collecting exp for each player enable: true if-more-than: 1 range: 30 # Special tags: # %exp% = Experience dropped # %number_players% = Number of players in range # %level% = Current level of the party divide-formula: "%exp% / %number_players%" exp-to-get: # Choose which kind of experience to get # 1. normal = Minecraft normal experience # 2. skillapi = Get the experience of each mob from SkillAPI config normal: true skillapi: true convert-exp-into: # You can choose how to transfer the exp # 1. party = send the exp to the party (total experience) # 2. normal = send it as vanilla Minecraft experience # 3. skillapi = send it as SkillAPI experience # Read the documentation for more information about exp convert normal: party skillapi: party # When Parties get mob experience, remove it from the mob # (mobs will not drop experience anymore) # If you want just level up the party, you can still let your players # level up, by leaving this option to false remove-real-exp: false addons: skillapi: # Enable support for SkillAPI enable: false exp-source: "MOB" mythicmobs: # Enable support for MythicMobs entities # Parties will get exp and skillapi-exp of custom mobs enable: true # If enabled, Parties will ONLY get experience from MM drops # Useful if you have customized every mob drop handle-only-mm-mobs: true follow-party: # When the party leader joins a world, the party will follow him enable: false # Enable the command /party follow to toggle this feature toggle-command: false # Type of teleport: # 1 = Teleport into world spawn # 2 = Same point of followed player type-of-teleport: 1 # Minimum rank to let partymates follow you (0 = all ranks) rank-needed: 0 # Minimum rank to follow the party (0 = all ranks) minimum-rank-to-follow: 0 # Timeout before player can re-use portal in seconds, important to fix join portals spam (20 ticks = 1 second) timeout-portal: 100 # List of worlds that would use follow-party feature ('*' = all worlds) list-worlds: - '*' mute: # Enable mute command # If an user use mute command, it will stop to receive every notification enable: false block: invite: true placeholders: # This options are used to customize Parties placeholders # You can customize every external placeholder # Use classic placeholders inside the option! color-name: "%color_name%" color-code: "%color_code%" color-command: "%color_command%" desc: "%desc%" # Total experience of the party experience-total: "%experience_total%" # Level number of the party experience-level: "%experience_level%" # Current and necessary number of experience to level up. # Example: 100/400 = %experience_levelup_current% / %experience_levelup_necessary% experience-levelup-current: "%experience_levelup_current%" experience-levelup-necessary: "%experience_levelup_necessary%" kills: "%kills%" motd: "%motd%" party: "%party%" rank-name: "%rank_name%" rank-chat: "%rank_chat%" customs: example1: "[%color_code%%party%] " example2: "[%rank_chat% %party%] " # / = = = = = = = = = = = = = = = = \ # | ADDONS SETTINGS | # \ = = = = = = = = = = = = = = = = / addons: # BanManager is used to auto kick banned users and prevents to speak into party chat if an user is muted banmanager: enable: false prevent-chat-muted: true # Warning: BanManager doesn't work good with offline-mode UUIDs auto-kick-banned: true # You can create a mark for each party home dynmap: enable: false hide-by-default: false settings: # Minimum party players to show up the marker on Dynmap minimum-players: 3 markers: layer: "Party homes" # HTML Allowed. Tags: %party%, %kills% label: "<b>%party%</b>'s home" # Dynmap icons icon: "house" # Give GP permissions to your entire party griefprevention: # This will enable "/party claim <permission>" command enable: false # To perform the command you need to be the Owner of the claim, or Manager need-to-be-owner-claim: false sub-commands: trust: "trust" container: "container" access: "access" remove: "remove" # Give a price to each command vault: # Enable Vault support (Use permission 'parties.admin.vaultbypass' to bypass commands) enable: false confirm-command: # This will enable "/party confirm" command # True: use confirm command # False: buy when the command is used enable: true # Timeout in ms timeout: 10000 # Set a price for these commands (use doubles, 1.1, 1.5, etc..) price-commands: claim: 0.0 color: 0.0 create: 0.0 desc: 0.0 home: 0.0 join: 0.0 motd: 0.0 set-home: 0.0 teleport: 0.0 # / = = = = = = = = = = = = = = = = \ # | COMMANDS SETTINGS | # \ = = = = = = = = = = = = = = = = / commands: # Enable tab support (/party <tab> to see every allowed command) tab-support: true help-pages: commands-per-page: 9 descriptions: party: "Parties help page" p: "Send a party message" main-commands: help: "help" party: "party" p: "p" accept: "accept" chat: "chat" claim: "claim" color: "color" confirm: "confirm" create: "create" delete: "delete" deny: "deny" desc: "desc" follow: "follow" home: "home" ignore: "ignore" info: "info" invite: "invite" join: "join" kick: "kick" leave: "leave" list: "list" migrate: "migrate" motd: "motd" mute: "mute" password: "password" protection: "protection" rank: "rank" reload: "reload" rename: "rename" sethome: "sethome" spy: "spy" teleport: "teleport" version: "version" sub-commands: on: "on" off: "off" silent: "silent" # Sub-command of "/party create <partyname> fixed" (if enabled) fixed: "fixed" # Sub-command used to remove something (desc, motd, etc..) remove: "remove" order: - help - create - accept - deny - join - ignore - mute - p - leave - invite - info - list - chat - desc - motd - protection - follow - home - sethome - color - claim - teleport - password - rank - rename - kick - spy - delete - reload - version - migrate # End of configuration file dont-edit-this: version: 5
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
API Flaw Money Method ✅
CSS | 36 min ago | 1.03 KB
This month smells like moneys
CSS | 39 min ago | 1.03 KB
PRCE internal cursor
8 hours ago | 0.73 KB
AI Interaction Method
8 hours ago | 1.60 KB
awkwrapper.c
C | 8 hours ago | 2.35 KB
z66is_archive.zip.txt
15 hours ago | 39.19 KB
Clients: Setting up 2FA
1 day ago | 1.44 KB
Prevent duplicate recerrence when using [even...
1 day ago | 0.93 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!