Fluid MC Stats

Discussion in 'Bukkit Tools' started by Zachary DuBois, Mar 16, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    Zachary DuBois

    v0.2.0
    It's been awhile!

    This release fixes a TON of bugs (Including a lot related to being in a subdirectory).

    New Features:
    • Nice URLs.
    • Live Ticker (See what is going on in-game from the stats interface).
    • Top Stats (See multiple leader boards at the same time with offset display).
    • Comes with Nginx example config.
    • Re-adds server query with cacheing of the server query output. No more spamming the query!
    This update is many thanks to @Lolmewn for continued support of the Stats plugin and @lippoliv for helping out with a lot of the new features and bug fixes :)

    DOWNLOAD!

    Demo: here! (I'd prefer you guys don't join the server listed. It is more of a private server for a few friends. Thanks!)
     
    Last edited: Mar 27, 2015
  2. Offline

    TSFGames

    Is it ok when i modify the old webstatsx for the stats plugin 1.38 ?
     
  3. Offline

    Zachary DuBois

    TSFGames, I do not know as I am not the copyright/license holder. I made Fluid MC Stats, not WebStatsX. If you want the old one because it has advanced stats, that is coming in Beta v0.2.0.
     
  4. Offline

    metincasper

  5. Offline

    Zachary DuBois

    metincasper, those errors are basically saying that you are still running the old database layout. Try re-downloading and making sure you are running the stats plugin without error.
     
  6. Offline

    chaseoes

    The purple is uhh.. bright.
     
    CeramicTitan, excusemyluck and Skyost like this.
  7. Offline

    Zachary DuBois

    chaseoes Can be changed on line 12 of the css/custom.css. More config options will be available soon.
    Code:
      background-color: #5a17df;
     
    Skyost likes this.
  8. Offline

    Zachary DuBois

    There are not many issues left for v0.1.2. Please report them or it gets released when the remainder are done.

    View the fixes here.
     
  9. Offline

    JoeyDevs

    Oooooo, I love BootStrap / Font-Awesome <3
     
  10. Offline

    Zachary DuBois

    JoeyDevs me too :) Big re-theme coming up in v0.2.0!
     
  11. Offline

    JoeyDevs


    Aaaaaah nice!

    Good job!
     
    Zachary DuBois likes this.
  12. Offline

    Zachary DuBois

    If you use the interface, please tell us your experiences by filling out this survey.
     
  13. Offline

    maxlehot1234

    I see this: The configurations file is missing! Please reinstall or find the issue!
    But i have have config.php in the FTP with all SQL data... What i need to do please?

    I really need help, this is my stats website: http://blocs-craft.com/bcstats/
     
  14. Offline

    Zachary DuBois

    maxlehot1234

    Excerpt From README.md:

     
  15. Offline

    maxlehot1234

    I fix it, i use bad sql informations, but when i edit quick links with install.php file and add " . " for my IP: hc.blocs-craft.com, it puts: hc.blocs-craftécom and i need to go into config.php and remove bad character by the " . ", is it normal? Check the screnshot

    fixit.png
    Juste to see errors: my website is: blocs-craft.com/bcstats
    I have this error too in player.php page:

    Warning: Division by zero in/home/blocs234/public_html/bcstats/inc/util.phpon line 174

    I have this for all informations about the player...


    Can you change this please:
    1.9075445009310545 Meters, can you simply add 2 numbers after " , " ? because i don't need 16 after it ;) Thanks

    I see players are online now! but it is not online, how can i fix it too?

    Sorry if i say a lot of things in a single message :p
     
  16. Offline

    Zachary DuBois

    maxlehot1234, please open a ticket on BitBucket for each of the issues you are having. Links are in the thread.
     
  17. Hello ,

    Need help for edit MCstats.

    I want change "Kills" only for players kills.

    Not for monster kills.

    Ty


    PD: I have fluid-mc-stats and the plugin: High scores and Stats web v0.1.1-DEV
     
  18. Offline

    Zachary DuBois

    As said in the discription:
    "It will to basics of statistics at first and then we will add in more advanced features."

    I am currently not at my computer, when I am if might be able to change it easily for you.
     
  19. Offline

    bobacadodl

    Suggestion: Truncate the averages to 2 or 3 decimal places :p
    Other than that, it looks awesome!
     
  20. Offline

    moose517

    haha yeah suggestion has been brought to him already.
     
    Zachary DuBois likes this.
  21. Offline

    Zachary DuBois

  22. @Zachary DuBois
     
  23. Offline

    Zachary DuBois

    ocbxpert
    Oh, yeah. Sorry about that...

    Open inc/util.php and go to line #105. Should look something like:
    PHP:
        case "kill":
          
    $query "SELECT SUM(amount) AS value FROM {$dbPrefix}kill "
            
    " WHERE player_id=" $player_id
            
    . (usesSnapshots($mysqli$dbPrefix) ? " AND snapshot_name='main_snapshot'" "");
          break;
    Change that to this:

    PHP:
        case "kill":
          
    $query "SELECT SUM(amount) AS value FROM {$dbPrefix}kill "
            
    " WHERE player_id=" $player_id " AND type=Player"
            
    . (usesSnapshots($mysqli$dbPrefix) ? " AND snapshot_name='main_snapshot'" "");
          break;
    That should work :)
     
    Last edited: Dec 16, 2014
  24. Offline

    Lolmewn

  25. Offline

    Zachary DuBois

    Lolmewn... You're brilliant...

    ocbxpert, Do this instead:

    PHP:
        case "kill":
          
    $query "SELECT SUM(amount) AS value FROM {$dbPrefix}kill "
            
    " WHERE player_id=" $player_id " AND type='Player'"
            
    . (usesSnapshots($mysqli$dbPrefix) ? " AND snapshot_name='main_snapshot'" "");
          break;
    Should work.
     
  26. Offline

    maxlehot1234

  27. Offline

    Lolmewn

  28. Offline

    Zachary DuBois

    Beta v0.1.2 Released! Coming soon to BukkitDev!
     
    Last edited: Dec 16, 2014
Thread Status:
Not open for further replies.

Share This Page