2015-05-29 11:20:55 -05:00
|
|
|
<?php
|
|
|
|
//init
|
2015-12-30 07:37:25 -06:00
|
|
|
$Pre_Type = $_SERVER['QUERY_STRING'];
|
2015-06-26 00:37:54 -05:00
|
|
|
require_once('config.php');
|
2015-10-31 07:33:17 -05:00
|
|
|
$plugins = array();
|
2015-06-26 00:37:54 -05:00
|
|
|
|
|
|
|
require(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'Base.php');
|
|
|
|
require_once(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'init.php');
|
|
|
|
|
|
|
|
//load plugins
|
2016-01-01 08:56:39 -06:00
|
|
|
$load_plugins = glob(PATH.'plugins'.DIRECTORY_SEPARATOR.'*.php');
|
|
|
|
foreach ($load_plugins as $key => $value) {
|
|
|
|
if ($value == PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php') {
|
|
|
|
unset($load_plugins[$key]);
|
2015-10-31 07:33:17 -05:00
|
|
|
}
|
2016-01-01 08:56:39 -06:00
|
|
|
}
|
|
|
|
foreach ($TAGs as $TAG) {
|
|
|
|
foreach ($load_plugins as $value) {
|
|
|
|
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
|
|
|
if (preg_match("/^(".preg_quote($TAG, '/').$plugin_name."|".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.") (.*)$/", $text, $matches)) {
|
|
|
|
$plugin_text = $matches[2];
|
|
|
|
$plugin_sendto = $from;
|
2016-03-08 02:55:42 -06:00
|
|
|
require_once $value;
|
2016-01-01 08:56:39 -06:00
|
|
|
break;
|
2016-03-08 02:55:42 -06:00
|
|
|
}elseif ($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) {
|
2016-01-01 08:56:39 -06:00
|
|
|
$plugin_sendto = $from;
|
2016-03-08 02:55:42 -06:00
|
|
|
$BOT->msg($plugin_sendto, "Missing argument(s)");
|
2016-01-01 08:56:39 -06:00
|
|
|
break;
|
2015-10-31 07:33:17 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-01 08:56:39 -06:00
|
|
|
}
|
|
|
|
require_once PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php';
|
2015-06-30 02:05:22 -05:00
|
|
|
|
2016-01-01 08:56:39 -06:00
|
|
|
//function
|
|
|
|
function PluginSet($desc){
|
|
|
|
global $plugins,$plugin_name,$TAG;
|
|
|
|
$plugins[] .= $TAG.$plugin_name." ".$desc;
|
|
|
|
}
|
2015-06-30 02:05:22 -05:00
|
|
|
|
2015-05-29 11:20:55 -05:00
|
|
|
?>
|