Advertisement
Zueira

Untitled

Nov 9th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. */
  3. interface Configurations {
  4. #SITE SETTINGS
  5. const Name = "AQuest";
  6. const Description = "MMORPG";
  7. const RootPath = "/";
  8.  
  9. #GAME SETTINGS
  10. const NewUserFile = "Newuser/NewUserTest.swf";
  11. const LoaderFile = "LoaderR1.swf";
  12.  
  13. #DATABASE SETTINGS
  14. const MySQLHost = "127.0.0.1";
  15. const MySQLUser = "root";
  16. const MySQLPort = 3306;
  17. const MySQLPass = "";
  18. const MySQLData = "Cake";
  19. }
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement