Earlier Versions
| Name | Size | Uploaded | Game Version | Downloads | |
| VoteSQL v1.4 release | 22.98 KB | Apr 23, 2013 | CB 1.5.1-R0.2 | 1,645 | Download |
| VoteSQL v1.3.1 release | 30.64 KB | Feb 10, 2013 | CB 1.4.7-R1.0 | 1,447 | Download |
| VoteSQL v1.3 release | 29.92 KB | Dec 9, 2012 | CB 1.4.5-R0.2 | 941 | Download |
| VoteSQL v1.2.1 release | 29.06 KB | Nov 24, 2012 | CB 1.4.5-R0.2 | 702 | Download |
| VoteSQL v1.2 release | 29.06 KB | Nov 22, 2012 | CB 1.4.5-R0.2 | 624 | Download |
| VoteSQL v1.1.6 release | 26.55 KB | Oct 28, 2012 | CB 1.3.2-R3.0 | 234 | Download |
| VoteSQL v1.1.5 release | 26.26 KB | Oct 28, 2012 | CB 1.3.2-R3.0 | 194 | Download |
| VoteSQL v0.1 release | 10.71 KB | Oct 18, 2012 | CB 1.3.2-R2.0 | 195 | Download |
Description
VoteSQL [Requires Votifier!]
Version: 1.4
Craft Bukkit 1.5.1-R0.2
This plugin logs player votes to a MySQL table or a Flat-File! While your at it you might as well go ahead and add a custom message with colors for when they vote! Also, it logs the amount of times they vote in numerals. This can be used to set up a stats php page or something :).
Video
Soon!
Features
- Logs votes to a SQL table
- Config
- SuperPerms support
- Plugin Metrics
- Now can log with Flat-File Support!
- Make your own custom messages with colors and such!
- Gives money on vote!
Demo
- http://pr3datorcraft.com/stats/vote.php
Config
# Thanks for choosing VoteSQL! Simply change the info below. The FlatFileListener on the first vote may not record it! VoteSQL: onVote: Enabled: false # %P = Player Name %S = The Site they voted from! Message: '&2Thank you for voting %P from %S!' MySQL: Enabled: false Server: Server Address eg.Localhost Database: Place Database name here User: Place User of MySQL Database here Password: Place User password here Table_Prefix: votesql FlatFile: Enabled: false currency: Enabled: false Amount: 150 # %P = Player Name %M = Money received. Message: '&2%P, You received %M dollars!'
If some config options are not coming up delete the config and restart the server!
Commands
- /votesql – Displays help page
- /votesql reload – Reloads config.
- /votesql check <string> – Adds to the database with a vote of 1
- /votesql top – Shows the top 5 voters.
Permissions
- votesql.reload
- votesql.check
- votesql.top
Planned
- User Suggestions.
- Adding the Auto-Updater Option!
- Adding in game commands for leader-boards (Top 5 players and such! Amount will be Configurable)! See your individual placing and also your amount of votes you have!
Adding Vault support so they can receive money!- Give items on vote
Change Log
To see the change-log go on the files tab and click on the version to read any info on it!
Source
https://github.com/javoris767/VoteSQL
Metrics

Bugs
Find any? Please submit a ticket and post errors in a gist!
Link to gist: https://gist.github.com/
PHP Code
<?PHP $user_name = "USERHERE"; $password = "PASSWORDHERE"; $database = "DATABASEHERE"; $server = "SERVERIPHERE"; $db_handle = mysql_connect($server, $user_name, $password); $db_found = mysql_select_db($database, $db_handle); if ($db_found) { $SQL = "SELECT * FROM votesql ORDER BY votes DESC"; $result = mysql_query($SQL); $value = 1; while ($db_field = mysql_fetch_assoc($result)) { print "<tr>"; print "<td>" . $value . "</td>"; print "<td>" . $db_field['playername'] . "</td>"; print "<td>" . $db_field['votes'] . "</td>"; $value = $value + 1; print "</tr>"; } mysql_close($db_handle); } else { print "Database NOT Found "; mysql_close($db_handle); } ?>
Donate
Donations are greatly appreciated 🙂

Get 0.05 TON 💎
Download


Add a comment