// vvvvvvvvvvvvv The Computer Mutt's Post As Random User Hack vvvvvvvvvvvvv
if ((($_POST['do'] == 'postthread') and ($_POST['sbutton'] == 'Submit New Thread'))
or (($_POST['do'] == 'postreply') and ($_POST['sbutton'] == 'Submit Reply'))
or (($_POST['do'] == 'postreply') and ($_POST['sbutton'] == 'Post Quick Reply')))
{
if ($bbuserinfo['userid'] != 1 || $bbuserinfo['userid'] != 2){ //Put the exempt IDs in here
$bodies = array(171);
$randomuserchoice[1] = array(
'userid' => 1272,
'username' => "Dawolf");
$randomuserchoice[2] = array(
'userid' => 1273,
'username' => "Wayne");
$randomuserchoice[3] = array(
'userid' => 783,
'username' => "Joyfull");
$randomuserchoice[4] = array(
'userid' => 794,
'username' => "Cbc");
$randomuserchoice[5] = array(
'userid' => 797,
'username' => "OpelisGay");
$randomuser = rand(1,count($randomuserchoice));
$bbuserinfo['userid'] = $randomuserchoice[$randomuser]['userid'];
$bbuserinfo['username'] = $randomuserchoice[$randomuser]['username'];
}
}
// ^^^^^^^^^^^^^ The Computer Mutt's Post As Random User Hack ^^^^^^^^^^^^^
|