[HELP] Are there references to RPC has been received?

Options
Hiya! First post here, (FYI - I am a level design artist, I am not a full-on programmer, but I should understand most things.)

Question:

Is there a way to say - (on master client's side) - OnRPCReceived("RPC_Anything").do something.

Sorry if you don't understand.

Comments

  • JohnTube
    JohnTube ✭✭✭✭✭
    Options
    Hi @Chr0my,

    There is no such thing out of the box.
    If an RPC is received by the intended target the corresponding method if any/found will be called.
    So that is the proper callback for receiving RPC.
    You do not need to know if an RPC has been received otherwise unless you want to have some kind of history or log of received ones, in that case you need to implement something custom.
    Also not sure what does the master client do here?