HI,
Someone ca tell me wath is the option “Reliable” in a event replicate ?
I search in docs but dont find exactly wath do this option…
Thanks a lot !
HI,
Someone ca tell me wath is the option “Reliable” in a event replicate ?
I search in docs but dont find exactly wath do this option…
Thanks a lot !
Hi Gorgo126
“Reliable” means the RPC (event) will always get called. It should only be enabled on events that absolutely must execute.
Say for instance the server or clients are struggling with latency issues, to prevent the server from bottlenecking the server will ignore some calls (such as overlap events / less important functionality etc) so it can catch up and stabilise.
With “Reliable” checked, the server/client will guaranty that the event is called even if they are in an unstable state. You should never use reliable on events which are fired over tick or in similar instances as this itself could be the cause for bottleneck / latency issues.
Hope this helps.
Alex
Wonderfull, thanks a lot !