HCF - HCFStats [0/2 VC LEFT]

Status
This thread has been locked.

MrTazz4077

Feedback score
5
Posts
34
Reactions
16
Resources
0
NOTE: This plugin requires a MySQL database to save stats in.

Hello,

I am here to sell a HCF Stats plugin. This plugin will track a users' kills, deaths, kd and ores mined in a MySQL database. The MySQL database connection can be defined in the config.yml.

You can view the statistics of another player using /stats <player>. /stats alone will show you your own statistics. You can also view the stats of an offline player, as long as he has connected to the server.

8pdMWaR.png

You can also view the leaderboards of most kills, deaths and diamonds mined. The command is /leaderboards <kills | deaths | diamonds>. This will send you a chat message with the leaderboards.

zsnyb43.png

This example only displays 1 person as it is a test server.


9wXpioC.png

Code:
dbName: Name of database to connect to
Username: Username to connect to database with
Password: Password to match the username
host: jdbc:mysql://localhost:3306/ URL and port of the database; port will basically always be 3306.

Code:
By purchasing this plugin, you agree to the following terms of service:
You are not permitted to sell, distribute or give out copies of the plugin in any form.
You are not permitted to decompile or modify the plugin in any form, unless you have my permission.
You will not receive any refunds - if you need help, message me on Skype.


I am selling this plugin for $2.5.
If you have any questions, please ask below.
If you are interested in purchasing the plugin please msg me on telegram @Tazz_VPF or Discord Tazz#1767.

Regards,

Tazz

Code:
Nick_0251: Vouch, bought this and works flawless. Had 1 error but that has been fixed already, dev is nice and supportive and looks forwards for updates and improvements.

Server: Vouch, Plugin works perfectly.

MTG: Vouch - Plugin looking good.
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Cold Services

discord.coldservices.net
Supreme
Feedback score
9
Posts
123
Reactions
229
Resources
4
Vouch, bought this and works flawless. Had 1 error but that has been fixed already, dev is nice and supportive and looks forwards for updates and improvements.
 

WristzPvP

Feedback score
1
Posts
138
Reactions
49
Resources
0
Looks like a great plugin, that would be useful to plenty of servers.
I would recommend cleaning up the GUI a little bit, as personally I don't think it looks to hot.
 

MrTazz4077

Feedback score
5
Posts
34
Reactions
16
Resources
0
Looks like a great plugin, that would be useful to plenty of servers.
I would recommend cleaning up the GUI a little bit, as personally I don't think it looks to hot.
Thank you,
what do you think I should change?
 

WristzPvP

Feedback score
1
Posts
138
Reactions
49
Resources
0

Server

i dont play mc
Supreme
Feedback score
5
Posts
66
Reactions
65
Resources
0
If you're still doing vouch copies, Shoot me a PM.[DOUBLEPOST=1490393187][/DOUBLEPOST]Vouch, Plugin works perfectly.
 
Last edited:

MTG

Supreme
Feedback score
78
Posts
2,455
Reactions
2,600
Resources
0
Vouch - Plugin looking good.
 

Kuzni

If you signed up after 2016 don't diss me thx
Supreme
Feedback score
12
Posts
1,688
Reactions
950
Resources
0
Looks like a sick plugin
Would ask for a vouch copy but I'm on holiday

GLWS
 

Rj

PhD Candidate, Control Theorist
Supreme
Feedback score
7
Posts
730
Reactions
221
Resources
0
Just saying why do you have spigot as an external jar. you are using maven so do this

in pom.xml

Code:
    <repositories>
        <repository>
            <id>md5-repo</id>
            <url>https://repo.md-5.net/content/groups/public/</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>org.spigotmc</groupId>
            <artifactId>spigot-api</artifactId>
            <version>1.7.10-R0.1-SNAPSHOT</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

if you want his my basic one
my pom.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>GROUPID</groupId>
    <artifactId>ARTIFACTID</artifactId>
    <version>VER</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>


    <repositories>
        <repository>
            <id>md5-repo</id>
            <url>https://repo.md-5.net/content/groups/public/</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>org.spigotmc</groupId>
            <artifactId>spigot-api</artifactId>
            <version>1.7.10-R0.1-SNAPSHOT</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

</project>
 
Status
This thread has been locked.
Top