# Ref Set Refresh Name

Grammar — RefSetRefreshName actorRefName refreshName
FlagsFunction

Constructs and returns a RefSetRefreshName actor message based on the parameters. This can be used to update a ref which doesnt update automatically in the actor system, although most should update automatically. Actor should automatically refresh references in special cases (for instance, you have a squib hosted off a hydralisk which turns into an egg. Actor needs to update the host of the squib to host off an analogous attach point on the egg), but this is there just in case it’s needed at some point. Note: This will only set a value in an actor reference that already exists, it will not create a new reference.

# Arguments

  • string — Actor Ref Name
  • string — Refresh Name

Returns — string<actormsg>

string libNtve_gf_RefSetRefreshName(
	string lp_actorRefName,
	string lp_refreshName,
);

Category: Actor / Message Constructors

# Examples

— None found —