How can I record who enters the server? I want to get this data on a daily basis. I send the members who join the server to Discord, but a player can enter multiple times. Is there value in saving this data? I couldn't find anything when I searched.
SetStoredValue( "REGISTER_COUNTER", ToNum ( $register_counter ) ); $register_counter = GetStoredValue( "REGISTER_COUNTER" ); IF ($register_counter == "") THEN $register_counter=0; ELSE $register_counter = ToNum( GetStoredValue( "REGISTER_COUNTER" ) ); ENDIF I think this is the value I'm looking for, can you verify me?