Advertisement
Guest User

Untitled

a guest
Jun 21st, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?php
  2. //--------------------------------------------------//
  3. # Simple Player List by Flabaliki
  4.  
  5. # Edit this file.
  6. //--------------------------------------------------//
  7.  
  8. # Enter your passcode here, this must be the same
  9. # as the one entered in your plugin config.yml file.
  10. $passcode = "abc123";
  11.  
  12. # This feature requires PHP GD, it will enable
  13. # the face of a users minecraft skin to display next
  14. # to their name on the list.
  15. $enableFaces = true;
  16.  
  17. #Number of faces to display on each row of the grid.
  18. #REQUIRES faceGrid set to true;
  19. $faceGridWidth = 5;
  20.  
  21. #This will allow the use of colours in rank names.
  22. #These are the same colours you use in Minecraft chat.
  23. #Eg &e &f
  24. $enableRankColors = true;
  25.  
  26. #Size of the user faces in pixels.
  27. $faceSize = 16;
  28.  
  29. # This will display the online users in a grid format using only their faces, names will popup on hover.
  30. $faceGrid = false;
  31.  
  32. # The following variables; [Name], [IP], [Players],
  33. # and [Slots] will be replaced by their respective content.
  34. # Put them in any order you would like, you can even remove
  35. # them completely.
  36. $template = "[Name][IP][Players][Slots]";
  37.  
  38. # --------------------------------------------------------- #
  39. # DO NOT EDIT ANYTHING BELOW THIS LINE
  40. # --------------------------------------------------------- #
  41. $LC = 1340293940;
  42. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement