Stalker V2 Help!! Set the time? RFID Logger

sure, try this:

#include <RTC.h>
#include <Time.h>
#include <Wire.h>
 
void setup() {
  
  Serial.begin(9600);
  if (RTC.begin()) {
     Serial.println("Valid RTC device initialised");
     setSyncProvider(RTCget);  // register the get function
  }
  else {
    Serial.println("Problem initialising RTC");  
  }

 
  
}
 
void loop() {
}