LegendaryVoting

logo

Source Code on BitBucket Read the wiki documentation about legendaryvoting Report a bug with the plugin Make a paypal donation

Requirements

  • Vault
  • Votifier

About

LegendaryVoting is your all-in-one voting plugin. It safely handles all your votes even if the player is offline. It has random rewards with reward rarity. A token system featuring a token store with many customization options

Features

  • MySQL Support
  • Random Rewards
  • Reward Rarity
  • Tokens
  • Token Store
  • API for token expansions

Setup

  • Download The Plugin
  • Place LegendaryVoting.jar in the /plugins/ folder
  • Restart The Server
  • Edit the config
  • Restart The Server
  • Finished!

Website Leaderboard

<?php
  echo "<h1>Top 10 Votes</h1>";
  $con = mysql_connect("localhost","root","password");
  mysql_select_db("voting", $con);
  $result = mysql_query("SELECT * FROM votes ORDER BY votes DESC LIMIT 0, 10");
  echo "<table cellpadding=3 cellspacing=5><tr><td width=50><div align=center><b>Rank</b></div></td><td width=125><b>Username</b></td><td width=80><b>Total Votes<b></td></tr>";
  $x = 1;
  while($row = mysql_fetch_assoc($result)){

    echo "<tr><td colspan=3><hr></td></tr>";
    echo "<tr><td width=50><div align=center><b>".$x.".</b></div></td><td width=125>";
    echo $row['user'];
    echo "</td><td width=80>";
    echo $row['votes'];
    echo "</td></tr>";
    $x = $x + 1;
  }
?>

Default Config

Database:
  Enabled: false
  Host: localhost
  Port: 3306
  Database: voting
  Username: root
  Password: password
Settings:
  RankCommand: 'pex user %name% group set %rank%'
  Probability:
    COMMON: 40
    UNCOMMON: 30
    RARE: 10
    ULTRA_RARE: 7
    EPIC: 3
Messages:
  Broadcast: '&7%player% &8has voted on &7%service%'
  PlayerOnly: '&aThanks for voting! Here is your rewards!'

To-Do

  • More uses for tokens
  • Request Ideas Below

Comments

  • To post a comment, please or register a new account.
Posts Quoted:
Reply
Clear All Quotes

About This Project

  • Project ID
    46365
  • Created
    Oct 24, 2012
  • Last Released File
    Jun 11, 2014
  • Total Downloads
    2,506
  • License

Categories

Members

Recent Files