I know I can use _ArrayUnique to give back the Unique arrays, but I want to actually delete both of the duplicates if there's more than one at all.
Local $Usernames[3] = ["Dan", "Bob", "Billy"]
Local $blackListUsernames[2] = ["Dan", "Scott"]
_ArrayAdd($Usernames, $blackListUsernames) ;combines the 2 arrays into 1.
$Usernames = _ArrayUnique($Usernames) ;Uniques the array.
This issue with this, is that $Usernames will contain Dan, Bob, Billy, Scott.
I can't seem to find a way to make it so that if there are any duplicates, it'll just remove both of them, for example, I want $Usernames to have just Bob, Billy, Scott.
There will only be either two or one of the same value. Never more than 2.