Skip to content

OnStashExposed

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnStashExposed( StashContainer Entity, BasePlayer instance )
{
    Puts( "OnStashExposed works!" );
}

Location

  • BasePlayer::CheckStashRevealInvoke()
csharp
//---
				{
					return;
				}
				nearbyStash.Entity.SetHidden(false);
				Facepunch.Rust.Analytics.Azure.OnStashRevealed(this, nearbyStash.Entity);
				Interface.CallHook("OnStashExposed", nearbyStash.Entity, this);
			}
		}
		else
		{
			nearbyStash.LookingAtTime = 0f;
//---

Released under the MIT License.