2015-05-29 11:20:55 -05:00
|
|
|
<?php
|
2015-12-30 07:37:25 -06:00
|
|
|
define('TYPE', $Pre_Type);
|
2015-06-26 00:19:40 -05:00
|
|
|
define('PATH', dirname(__FILE__).DIRECTORY_SEPARATOR);
|
2016-01-05 21:13:06 -06:00
|
|
|
define('OWNER_NAME', 'YOUR_NAME');
|
|
|
|
define('BOT_NAME', 'D_bot'); //Now For Telegram-Bot Only
|
|
|
|
define('HELP_BEGIN', "The_Sentence_Before_Help_Command");
|
|
|
|
define('HELP_END', "The_Sentence_After_Help_Command");
|
2016-02-07 06:34:08 -06:00
|
|
|
$TAGs = array('\'','#','/','!'); //array for commands
|
2015-06-29 09:13:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
//For Telegram-Bot
|
2015-12-02 03:17:48 -06:00
|
|
|
define('TB_TOKEN', 'YOUR_TELEGRAM_BOT_TOKEN_HERE');
|
2016-01-05 21:13:06 -06:00
|
|
|
define('TB_API_URL', 'https://api.telegram.org/bot'.TB_TOKEN.'/'); //DO NOT CHANGE THIS
|
2015-07-02 01:15:47 -05:00
|
|
|
|
2016-01-06 18:08:33 -06:00
|
|
|
//For Wechat-MP
|
|
|
|
define('WC_UserName', 'YOUR_WECHAT_USERNAME_HERE');
|
|
|
|
|
2015-07-02 01:15:47 -05:00
|
|
|
//For plugins
|
2015-12-02 03:17:48 -06:00
|
|
|
define('PLUGIN_GITHUB_TOKEN', 'YOUR_GITHUB_TOKEN_HERE');
|
2016-01-06 18:08:33 -06:00
|
|
|
define('PLUGIN_STEAM_KEY', 'YOUR_STEAM_KEY_HERE');
|