Advertisement
Guest User

Simple Player List ftw.

a guest
May 19th, 2012
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ====================== config.yml ======================
  2. Server:
  3. Name: BoostCraft
  4. IP: play.boostcraft.fr
  5. Url: http://boostcraft.fr/playerlist/receiver.php
  6. Passcode: **********
  7. SendDelay: 180
  8. Verbose: false
  9. Rank:
  10. admin: '[Admin]'
  11. op: '[Op]'
  12. member: '[Member]'
  13.  
  14.  
  15. ====================== config.php ======================
  16. <?php
  17. //--------------------------------------------------//
  18. # Simple Player List by Flabaliki
  19.  
  20. # Edit this file.
  21. //--------------------------------------------------//
  22.  
  23. # Enter your passcode here, this must be the same
  24. # as the one entered in your plugin config.yml file.
  25. $passcode = "**********";
  26.  
  27. # This feature requires PHP GD, it will enable
  28. # the face of a users minecraft skin to display next
  29. # to their name on the list.
  30. $enableFaces = false;
  31.  
  32. #Number of faces to display on each row of the grid.
  33. #REQUIRES faceGrid set to true;
  34. $faceGridWidth = 5;
  35.  
  36. #This will allow the use of colours in rank names.
  37. #These are the same colours you use in Minecraft chat.
  38. #Eg &e &f
  39. $enableRankColors = true;
  40.  
  41. #Size of the user faces in pixels.
  42. $faceSize = 16;
  43.  
  44. # This will display the online users in a grid format using only their faces, names will popup on hover.
  45. $faceGrid = false;
  46.  
  47. # The following variables; [Name], [IP], [Players],
  48. # and [Slots] will be replaced by their respective content.
  49. # Put them in any order you would like, you can even remove
  50. # them completely.
  51. $template = "[Name][IP][Players][Slots]";
  52.  
  53. # --------------------------------------------------------- #
  54. # DO NOT EDIT ANYTHING BELOW THIS LINE
  55. # --------------------------------------------------------- #
  56. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement