Make sure you're puting
useownprofile in the right spot. I had a problem with this the other day with Era's profiles.
PHP Code:
// BAD
useownprofile = true;
profile = GuiBlueTextListProfile;
// profile changes
// GOOD
profile = GuiBlueTextListProfile;
useownprofile = true;
// profile changes
If you declare the profile name after
useownprofile I believe it will still screw it up