illPhever open up your profile.php, find the buddies pm function and look for this line:
PHP Code:
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "pmtext (fromuserid, fromusername, title, message, touserarray, iconid, dateline, showsignature, allowsmilie) values ('1', '" . addslashes($vbphrase['autosystemmessage']) . "', '" . addslashes($subject) . "', '" . addslashes($message) . "', '".addslashes($serializedinfo)."', '4', '" . TIMENOW ."', '1', '1')");[/
Now say you want to have the message be by userid '22' well then you would replace that line so it looks like this:
PHP Code:
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "pmtext (fromuserid, fromusername, title, message, touserarray, iconid, dateline, showsignature, allowsmilie) values ('22', '" . addslashes($vbphrase['autosystemmessage']) . "', '" . addslashes($subject) . "', '" . addslashes($message) . "', '".addslashes($serializedinfo)."', '4', '" . TIMENOW ."', '1', '1')");
Hope that help and works for you!