Skip to content

Commit d5b8ac6

Browse files
committed
Add reselling notice
1 parent 12a1ea8 commit d5b8ac6

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

src/main/java/com/funniray/lbwd/LBWD.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ public void onEnable() {
7070

7171
datastore = new SQLStore(config.getString("jdbcurl"),config.getString("dbusername"),config.getString("dbpassword"));
7272

73+
if (getConfig().getBoolean("showpiracywarning")) {
74+
this.getLogger().critical("A WaterDogPE plugin that attempts at being fully compatible with litebans\n" +
75+
"A free plugin by Funniray. https://github.com/funniray/waterdog-litebans If you paid for this plugin, you were scammed.\n" +
76+
"Report resellers to beingscammed@reallyisnt.fun");
77+
}
78+
7379
getProxy().getCommandMap().registerCommand(new BanCommand());
7480
getProxy().getCommandMap().registerCommand(new PardonCommand());
7581
getProxy().getCommandMap().registerCommand(new MuteCommand());

src/main/resources/config.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
#
2+
# WD-Litebans - A WaterDogPE plugin that attempts at being fully compatible with litebans
3+
# Copyright (C) 2021 Funniray
4+
#
5+
# This program is free software; you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation; either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# I am available for any questions/requests: funniray10@gmail.com
16+
#
17+
18+
###############################################################################################################
19+
###############################################################################################################
20+
#### ####
21+
#### IF YOU PAID FOR THIS, YOU WERE SCAMMED ####
22+
#### THIS IS A FREE PLUGIN ####
23+
#### https://github.com/funniray/waterdog-litebans ####
24+
#### Report scammers to beingscammed@reallyisnt.fun ####
25+
#### ####
26+
###############################################################################################################
27+
###############################################################################################################
28+
29+
showpiracywarning: true
30+
131
jdbcurl: "jdbc:mysql://localhost:3306/litebans"
232
dbusername: "root"
333
dbpassword: ""

0 commit comments

Comments
 (0)