To get it to truly randomize ...
In BOTH "welcome thread upon registration" plugins:
Find:
Code:
$rand_title = array_rand($title, 4);
Replace with:
Code:
$rand_title = array_rand($title);
Find:
Code:
$rand_text = array_rand($pagetext, 4);
Replace with:
Code:
$rand_text = array_rand($pagetext);
Find:
Code:
$threaddm->setr('pagetext', $pagetext[$rand_text[0]]);
$threaddm->setr('title', $title[$rand_title[0]]);
Replace with:
Code:
$threaddm->setr('pagetext', $pagetext[$rand_text]);
$threaddm->setr('title', $title[$rand_title]);
This fixes the problems I have found. I will post any more fixes if I find any other problems.