First commit!
This commit is contained in:
commit
b487444b65
24 changed files with 4165 additions and 0 deletions
33
src/main/resources/config.yml
Normal file
33
src/main/resources/config.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
License: 'TP-ABC-ABC'
|
||||
AntiFreerun:
|
||||
Enabled: false
|
||||
Fastpass:
|
||||
ItemName: '&6ThemeParkTicket'
|
||||
MachineSign:
|
||||
Row1: "&3[ThemePark]"
|
||||
Row2: "&bMachine"
|
||||
ControlSign:
|
||||
Row1: "&3[ThemePark]"
|
||||
Row2: "&bControl"
|
||||
DiscordWebhook:
|
||||
Enabled: false
|
||||
WebhookURL: ""
|
||||
Embed:
|
||||
Title: "%RideName% - Status change"
|
||||
Copyright: "Copyright ThemePark 2020"
|
||||
CopyrightImage: "https://www.spigotmc.org/data/resource_icons/48/48648.jpg?1544984106"
|
||||
Colors:
|
||||
OPEN: 0x55FF55
|
||||
CLOSED: 0xAA0000
|
||||
MAINTENANCE: 0xFFAA00
|
||||
CONSTRUCTION: 0xAAAAAA
|
||||
MALFUNCTION: 0xAA00AA
|
||||
ACTIVE: 0x55FF55
|
||||
INACTIVE: 0xAA0000
|
||||
WaitingRows:
|
||||
MinutesPerWaitingPerson: 2
|
||||
Sign:
|
||||
Row1: "&3[ThemePark]"
|
||||
Row2: "&bWaitingrow"
|
||||
Row3: "%AttractionName%"
|
||||
Row4: "%WaitTime% min."
|
45
src/main/resources/messages.yml
Normal file
45
src/main/resources/messages.yml
Normal file
|
@ -0,0 +1,45 @@
|
|||
General:
|
||||
OnlyForPlayers: "&cOnly players can run this command!"
|
||||
NoPermission: "&cYou don't have the permission to do this!"
|
||||
Gates:
|
||||
Open:
|
||||
ChooseDirection: "&cYou have to choose between: NORTH, EAST, SOUTH and WEST"
|
||||
AlreadyOpen: "&cThat gate is already opened!"
|
||||
Opened: "&aThat gate is now open!"
|
||||
OpenedPlayers: "&aThat gate is now open! A maximum of %COUNT% %SINGMULTI:visitor:visitors% can now walk through it!"
|
||||
Close:
|
||||
AlreadyClosed: "&cThat gate is already closed!"
|
||||
Closed: "&aThat gate is now closed!"
|
||||
NoGate: "&cThat block is not a gate!"
|
||||
NoGateConsole: "&cThe gate on the location %LocationXYZ% in the world %World% couldn't be find! It's now removed of the data!"
|
||||
InvalidDirection: "&cYou can't walk through that gate in this direction!"
|
||||
Lamps:
|
||||
TurnOn:
|
||||
NoLampOrAlreadyOn: "&cCouldn't turn that lamp on! Maybe it's already on, or it's not a redstone lamp."
|
||||
IncorrectNumber: "&cThe number of seconds isn't correct! Give a number please."
|
||||
TurnedOn: "&aThat lamp is succesfully turned on!"
|
||||
TurnedOnSeconds: "&fThat lamp is succesfully turned on for %COUNT% %SINGMULTI:second:seconds%!"
|
||||
TurnOff:
|
||||
NoLampOrAlreadyOff: "&cCouldn't turn that lamp off! Maybe it's already off, or it's not a redstone lamp."
|
||||
TurnedOff: "&aThat lamp is succesfully turned off!"
|
||||
Fastpass:
|
||||
NotEnoughMoney: "&cYou don't have enough money for this Fastpass ticket!"
|
||||
AlreadyHasOne: "&cYou've already got a Fastpass ticket for this ride!"
|
||||
MoneyWithdrawed: "&aA amount of $%MoneyAmount%,- is taken of your account!"
|
||||
WrongLocation: "&cThat sign contains wrong coordinates!"
|
||||
Expired: "&cYour fastpass ticket is already expired!"
|
||||
NotOpen: "&cThat ride is not open!"
|
||||
YouNeedATicket: "&cYou need a (correct) ticket to use the FastPass row!"
|
||||
Succes: "&aHave fun in this ride!"
|
||||
Malfunction:
|
||||
ReasonQuestion: "&aPlease type the reason of the malfunction! (Type STOP to set it to Unknown)"
|
||||
Reported: "&aThe malfunction has been reported to the Technical Service!"
|
||||
Fixed: "&aThe malfunction has succesfully been removed!"
|
||||
NotAllowedToChange: "&cYou can't change the status if a ride has a malfunction!"
|
||||
WaitingRows:
|
||||
WrongLocation: "&cA waitingrow sign (from the attraction %AttractionID%) couldn't be found! It will be deleted."
|
||||
WrongAttraction: "&cThat attraction doesn't exists!"
|
||||
ForgotSelection: "&cYou forgot to select a region! Please select a point one (left) and point two (right) with a STICK."
|
||||
PosOneSelected: "&aSuccesfully selected position one!"
|
||||
PosTwoSelected: "&aSuccesfully selected position two!"
|
||||
SignCreated: "&aYou've succesfully created a WaitingRow sign!"
|
13
src/main/resources/plugin.yml
Normal file
13
src/main/resources/plugin.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: ThemeParkPlus
|
||||
version: ${project.version}
|
||||
main: nl.sbdeveloper.themeparkplus.ThemeParkPlus
|
||||
api-version: "1.13"
|
||||
authors: [SBDeveloper]
|
||||
softdepend: [Vault, ThemePark, WorldEdit]
|
||||
description: Plus version of ThemePark!
|
||||
website: https://sbdplugins.nl
|
||||
commands:
|
||||
themeparkplus:
|
||||
description: The ThemeParkPlus command!
|
||||
permission: tpp.command
|
||||
aliases: ['tpp', 'themeparkp']
|
Reference in a new issue