Quote:
Prompt please how to remove the send PM about attack. I tried to cut this feature, but vainly. When the user is crowded box messages, he can not attack, but this user coukd attack other users. Not good
|
Open viewplayer.php
Find:
PHP Code:
$attpm=&new attilitus_pm();
$attpm->from($playerinfo['userid'],$playerinfo['username']);
$attpm->title("You have been attacked by $playerinfo[username]");
$attpm->message('You have been attacked by '.$playerinfo[username].'. You can view more information about this attack by going to your [url='.$vbulletin->options['bburl'].'/'.$att_filename.'.php?do=defenselog]Defense Log[/url]');
$attpm->to($enemyinfo['username']);
$attpm->send();
Replace with:
PHP Code:
#$attpm=&new attilitus_pm();
#$attpm->from($playerinfo['userid'],$playerinfo['username']);
#$attpm->title("You have been attacked by $playerinfo[username]");
#$attpm->message('You have been attacked by '.$playerinfo[username].'. You can view more information about this attack by going to your [url='.$vbulletin->options['bburl'].'/'.$att_filename.'.php?do=defenselog]Defense Log[/url]');
#$attpm->to($enemyinfo['username']);
#$attpm->send();
by BIT