options.php 816 B

123456789101112131415161718192021
  1. <?php
  2. //GLOBAL VAR SETUP
  3. //setup global variables You will need to change these.
  4. define('MYSQLHOST','127.0.0.1'); // MYSQL server host ip/address.
  5. define('MYSQLUSER','MYSQLUSERNAME'); // MYSQL login name.
  6. define('MYSQLPASS','MYSQLPASSWORD'); // MYSQL login password.
  7. define('MYSQLDB','eq2emu'); // MYSQL database name.
  8. //setup admin accounts by name and id.
  9. define('ADMINID','1234567890'); // Admin account userID.
  10. define('ADMINNAME','USERNAME'); // Admin account username.
  11. //admin 2+ example
  12. //define('ADMINID2','123456789101121314');
  13. //define('ADMINNAME2','EXAMPLEADMIN 2');
  14. //BOT VARIABLES ** NEEDED FOR BOT TO START **
  15. define('BOTTOKEN', 'EXAMPLE.EXAMPLE-EAMPLE1231fsDFSDQWREKHasdasdawe'); // Your bots server token
  16. define('BOTDNS', '1.1.1.1'); // DNS to use. Some are more stable than others.
  17. ?>