Advertisement
Guest User

PlayerList

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