First off you need to add a field to your "user" table.
Whatever field name you use there, thats what you enter for the "setname".
Then for the Set Value, put a 1, and use the Set Type Bitfield.
And that should do it for you.
To add a field to your user table run a query something like ...
Code:
ALTER TABLE (TABLE_PREFIX)user ADD COLUMN yourfield INT UNSIGNED NOT NULL DEFAULT '0'
-CMX