When adding in UFUNCTION(reliable, server) causes compile error, why?

Thanks for the explanation. I figured out what i did wrong it was the way i was using



UFUNCTION(Reliable, Server, WithValidation)//set this to a server function
void Server_IsSprinting();
void Server_IsSprinting_Implementation();
bool Server_IsSprinting_Validate();


problem was i was putting Server_IsSprinting(); into the .cpp file. Now that i figured out how this works, this is nice. Plus i was calling wrong function from Server_IsSprinting_Implementation();

Hey thanks a ton, nice to get this working.

1 Like