-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.yml
47 lines (44 loc) · 1.65 KB
/
plugin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# _ __ _ _
# | | / / | | | |
# | | / / | | | |
# | |/ / _ _ ____ ____| | ______ ____ _____ ______ ____ | | __
# | |\ \| | | |/ __ \ / __ \ |/ / __/ __ \ / __ | _ _ \ / __ \| |/ /
# | | \ \ \_| | <__> | ___/ <| / | <__> | <__| | |\ |\ | <__> | <
# By |_| \_\__ |\___ |\____|_|\_\_| \____^_\___ |_||_||_|\____^_\|\_\
# | | | | | |
# ___/ | ___/ | | |
# |____/ |____/ |_|
#
# A PocketMine-MP plugin to see the server TPS and a player's ping
# Copyright (C) 2020-2023 Kygekraqmak, KygekTeam
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# he Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
name: KygekPingTPS
version: 2.0.2
main: Kygekraqmak\KygekPingTPS\Main
api: 5.0.0
authors: [Kygekraqmak, KygekTeam, thebigcrafter]
description: See server TPS and a player's ping
website: https://github.com/thebigcrafter/KygekPingTPS
commands:
ping:
description: Current ping of a player
permission: kygekpingtps.ping
usage: "/ping [player]"
tps:
description: Current TPS of the server
permission: kygekpingtps.tps
usage: "/tps"
permissions:
kygekpingtps.ping:
description: Permission to use /ping
default: true
kygekpingtps.tps:
description: Permission to use /tps
default: true
...