q8manar,
In the hooks
inlinemod_domovethread and
threadmanage_move_simple, find the following code:
PHP Code:
// Fill in the blanks
$pm->set('fromuserid', $vbulletin->userinfo['userid']);
$pm->set('fromusername', $vbulletin->userinfo['username'])
This is the code you need to change. For example, if you wanted to send it from userid 10, and the username of ModBot, you would change it to:
PHP Code:
// Fill in the blanks
$pm->set('fromuserid', "10");
$pm->set('fromusername', "ModBot")
I'll make this an option in the next version.