Need someone to help you want to manage points for members to code interface functions? thank you

I assume that you’re trying to set the “points” user meta value to 1000 when the user logs in for the first time, is that correct?

I also assume that that field is empty or 0 when the user registers, and that’s why your code does not work. Change

if( $first_login == '1' ) {

to

if( ! $first_login ) {

if that is the case. If it’s not, please add more details to the question, it’s hard to take a stab in the dark.