Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. ######################################################
  2. # Server Address
  3. # - Used for online/offline status
  4. # - PHP fsockopen() must be enabled on your web server
  5. ######################################################
  6. $server = "173.208.123.195";
  7.  
  8. ######################################################
  9. # SQL Connection
  10. ######################################################
  11. $db_user = "wowcrysis_admin";
  12. $db_pass = "crysis93" ;
  13. $db_host = "173.208.123.195";
  14.  
  15. ######################################################
  16. # Website Database Name
  17. # - For this CMS
  18. ######################################################
  19. $db_name = "crysis_web";
  20.  
  21. ######################################################
  22. # World Database Name
  23. # - Not so important, helps admin to search item IDs.
  24. ######################################################
  25. $item_db ="wowcrysis_world";
  26.  
  27. ######################################################
  28. # Accounts Database Name
  29. # - Where all accounts are stored
  30. ######################################################
  31. $acc_db ="wowcrysis_accounts";
  32.  
  33. ######################################################
  34. # Realm Configuration
  35. # - You can have unlimited amount of realms
  36. # - Example: (X represents number 1 -> infinity)
  37. #
  38. # //Server no.X
  39. # $realm[X] = array(
  40. # "name" => "Realm Name",
  41. # "port" => "3306",
  42. # "port_ra" => "3443",
  43. # "db" => "realm_database"
  44. # );
  45. ######################################################
  46. //Realm no.1
  47. $realm[1] = array(
  48. "name" => "Crysis - INSTANT 255 PVP",
  49. "port" => "8085",
  50. "port_ra" => "3443",
  51. "db" => "wowcrysis_characters"
  52. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement