Advertisement
Guest User

Untitled

a guest
Oct 8th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. use strict;
  2. use warnings;
  3.  
  4. our $loginConfig = {
  5. servPort => 6112,
  6. servType => 'login',
  7. debugging => 1};
  8.  
  9. our $gameConfig = {
  10. servHost => 'localhost',
  11. servName => 'Blizzard',
  12. servPort => 6113,
  13. servType => 'game',
  14. debugging => 1,
  15. userPrefix => '!',
  16. staffPrefix => '#',
  17. autoUpdateCrumbs => 0
  18. };
  19.  
  20. our $dbConfig = {
  21. dbHost => 'localhost',
  22. dbName => 'Luna',
  23. dbUser => 'root',
  24. dbPass => 'SunDeadliRaz12'
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement