$createUser

Creates a user with the specified name and password.
Syntax
    $createUser{username}{password}
DocumentationCreate a new user:

    Parameters:
      username, the name of the user to be created
      password, the pasword of the user to be created.
    Note:
      the parent of the new user will be the one logged in in the current session.
Examples
If no user object named 'Jack' exists, create it:

    $set{username}{JACK}
    $set{password}{secret}

    if{$existsUser{JACK}}
      {
      $//A user named 'JACK' already exists.
      $//Trying to create another with the same name would cause an exception to be thrown
      }
      {
      $//Create the user.
      $createUser{$get{username}}{$get{password}}
      }
GroupSecurity
Minimum required transaction-mode:UPDATE=SECURITY
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATIVE
Minimum parameters2
Maximum parameters 2