If you want it in full do something like:
1) Make a file called chatbox.php
2) Put this as it's contents:
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'chatbox');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array();
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
if (empty($_REQUEST['do']))
{
$_REQUEST['do'] = 'empty';
}
if ($_REQUEST['do'] == 'empty')
{
if (can_moderate())
{
$vbulletin->db->query_write("TRUNCATE TABLE chatboxlite_shout");
}
else
{
print_no_permission();
}
}
?>
and then only people who can moderate will be able to use it.