Various modifications for phpBB3Mchat bot welcome new user only once

Snippets for phpBB3
Previous topicNext topic
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6485
Joined: Jan 13th, '14, 20:45
    unknown unknown

Mchat bot welcome new user only once

Post by dmzx »

Mchat bot welcome new user only once

open
includes/functions.php
Find This may be a partial find and not the whole line

Code: Select all

if (!empty($mchat_bot_randtxt[$config_mchat['bot_welcome_id']]))
Replace with Replace the preceding lines with the following

Code: Select all

if (!empty($mchat_bot_randtxt[$config_mchat['bot_welcome_id']]) && $user->data['user_lastvisit'] == 0 && $user->data['user_new_privmsg'] == 0 && $user->data['user_last_privmsg'] == 0)

Previous topicNext topic