Hey bouncer, if you wanna try your hand at adding it yourself, I often put that into my own mods (unreleased in their entirety since I'm too lazy to make it portable with other vB forums, kekeke).
Here's the code I use:
PHP Code:
require_once(DIR . '/includes/class_dm.php');
$pmdm =& datamanager_init('PM', $vbulletin, ERRTYPE_ARRAY);
$pmdm->set_info('savecopy', false);
$pmdm->set_info('receipt', false);
$pmdm->set_info('cantrackpm', false);
$pmdm->set_info('parentpmid', false);
$pmdm->set_info('forward', false);
$pmdm->set_info('bccrecipients', 0);
$pmdm->overridequota = true;
$pmdm->set('fromuserid', $someuserid);
$pmdm->set('fromusername', $someusername);
$pmdm->set('title', $title);
$pmdm->set_recipients($recipients, $permissions, 'cc');
$pmdm->setr('message', $message);
$pmdm->setr('iconid', $icon);
$pmdm->set('dateline', TIMENOW);
$pmdm->set('showsignature', false);
$pmdm->set('allowsmilie', 0);
$pmid = $pmdm->save();
The "savecopy" and "receipt" and all that, of course, you can modify to "true" if you need to.
The "overridequota" is great because even if they have a full inbox, they'll still get the PM. :3
Setting stuff like fromuserid should be a no-brainer.
$recipients is... hrm, I think it was a semi-colon-separated list of usernames. But if you're only PMing one person, of course there would be only one name. X3
In Xan and Cyph have included a nearby hook in their script, you can just use that info in a plugin somewhere. If not, I guess you could manually edit your awards.php file. Either way, just change stuff to your liking and make sure you goot values for every variable mentioned there except for $vbulletin, $permissions, $pmdm, and $pmid. Also, if you use this inside of a function, be sure to put a global declaration for $vbulletin and $permissions. :3