Skip to content

OnFogOfWarStale

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnFogOfWarStale( BasePlayer instance )
{
    Puts( "OnFogOfWarStale works!" );
}

Location

  • BasePlayer::OnFogOfWarStale()
csharp
private void OnFogOfWarStale()
{
	ClearFogList(GetFogImageList(FogMode.Mainland));
	ClearFogList(GetFogImageList(FogMode.DeepSea));
	Interface.CallHook("OnFogOfWarStale", this);
	static void ClearFogList(List<uint> l)
	{
		l.Clear();
		for (int i = 0; i < 16; i++)
		{
//---

Released under the MIT License.