Guest User

Untitled

a guest
Aug 4th, 2018
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php
  2.  
  3. $pv = 6; /* This is the version of propractice SUPPORTED: 5, 6 */
  4.  
  5. $servername = "UltimaPvP";
  6. $homelink = "#";
  7. $serverurl = "play.ultimapvp.com";
  8. $sn1 = "My";
  9. $sn2 = "Server";
  10.  
  11.  
  12. $topplayers = 10;
  13. $showuuid = 0;
  14.  
  15. /* General */
  16. /* This is pre configured for litebans. */
  17. $banlistSupport = 0;
  18. $banlistURL = "/Bans/history.php";
  19.  
  20. /* MYSQL CONFIGURATION */
  21. /* IP of the MySQL Database. Use localhost if it is on the same server as the webpage */
  22. $ip = "127.0.0.1";
  23. /* User used to access the database. This user only needs to have the SELECT permission. */
  24. $user = "ProPractice";
  25. /* Password of the user. */
  26. $password = "PASSWORD";
  27. /* Name of the database holding the propractice information */
  28. $database = "ProPractice";
  29.  
  30.  
  31. /* The table doesn't need to be changed */
  32. $table = "ProPracticeData";
  33.  
  34. /* Enter all your ladder names. You nolonger need to add these twice! */
  35. $ladder_list = array(
  36. "NoDebuff",
  37. "Debuff",
  38. "BuildUHC",
  39. "Archer",
  40. "Combo",
  41. "Gapple"
  42. "NoEnchants"
  43. "Soup"
  44. "OPSoup"
  45. "Classic"
  46. "Vanilla"
  47. "Axe"
  48. );
  49.  
  50. /* For some of the dank debugging that I have to do to find that 1 semicolon I missed. */
  51. $debug = 0;
Add Comment
Please, Sign In to add comment