Still an Epic Mod could not live without it.
I have a problem that I have been banging my head on the wall with. I currently have it set up that users are assigned different usergroup based on what options they pick. I would like to take it a step further and based on these same options it PM's a predefined usergroup or users. Here is my try. I believe the field for PM is incorrect possibly even the code.
PHP Code:
if ($complete)
{
if (strpos($qo['12'], "Counter-Strike") !== false)
{
$form['userfield_txt'] .= ';user1';
if ($complete)
{
if (strpos($qo['12'], "SWTOR") !== false)
{
$form['userfield_txt'] .= ';user2';
So for every additional option selected it should add more users to the PM. Would like it to be a usergroup since its always changing ,but can live with individual users.