Decompiled source of ButterFingers v0.2.8

ButterFingers.dll

Decompiled a month ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using AIGraph;
using API;
using Agents;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Logging;
using BepInEx.Unity.IL2CPP;
using BepInEx.Unity.IL2CPP.Utils.Collections;
using ButterFingers.BepInEx;
using FluffyUnderware.DevTools.Extensions;
using GameData;
using Gear;
using HarmonyLib;
using Il2CppInterop.Runtime.Injection;
using Il2CppInterop.Runtime.InteropTypes;
using Il2CppSystem.Collections.Generic;
using LevelGeneration;
using Microsoft.CodeAnalysis;
using Player;
using SNetwork;
using UnityEngine;
using UnityEngine.Analytics;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
[assembly: AssemblyCompany("ButterFingers")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0+2dcff39e9853e700a43dc1a274f580f2c2170487")]
[assembly: AssemblyProduct("ButterFingers")]
[assembly: AssemblyTitle("ButterFingers")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableAttribute : Attribute
	{
		public readonly byte[] NullableFlags;

		public NullableAttribute(byte P_0)
		{
			NullableFlags = new byte[1] { P_0 };
		}

		public NullableAttribute(byte[] P_0)
		{
			NullableFlags = P_0;
		}
	}
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableContextAttribute : Attribute
	{
		public readonly byte Flag;

		public NullableContextAttribute(byte P_0)
		{
			Flag = P_0;
		}
	}
}
namespace ButterFingers
{
	internal class Cooldown
	{
		public static float timer;
	}
	[HarmonyPatch]
	internal class CarryItem : MonoBehaviour
	{
		[HarmonyPatch]
		private static class Patches
		{
			private static bool patch = true;

			private static IEnumerator DelayedEndSession()
			{
				yield return (object)new WaitForSeconds(1f);
				patch = false;
				RundownManager.Current.EndGameSession();
				patch = true;
			}

			[HarmonyPatch(typeof(RundownManager), "EndGameSession")]
			[HarmonyPrefix]
			private static bool EndGameSession()
			{
				if (!patch)
				{
					return true;
				}
				APILogger.Debug("CarryItem Level ended!");
				foreach (CarryItem value in instances.Values)
				{
					value.ForceStop();
				}
				foreach (ResourcePack value2 in ResourcePack.instances.Values)
				{
					value2.ForceStop();
					ObjectExt.Destroy((Object)(object)((Component)value2).gameObject);
				}
				foreach (Consumable value3 in Consumable.instances.Values)
				{
					value3.ForceStop();
					ObjectExt.Destroy((Object)(object)((Component)value3).gameObject);
				}
				foreach (KeyItem value4 in KeyItem.instances.Values)
				{
					value4.ForceStop();
					ObjectExt.Destroy((Object)(object)((Component)value4).gameObject);
				}
				foreach (PocketItem value5 in PocketItem.instances.Values)
				{
					value5.ForceStop();
					ObjectExt.Destroy((Object)(object)((Component)value5).gameObject);
				}
				ResourcePack.instances.Clear();
				Consumable.instances.Clear();
				PocketItem.instances.Clear();
				KeyItem.instances.Clear();
				instances.Clear();
				((MonoBehaviour)PlayerManager.GetLocalPlayerAgent()).StartCoroutine(CollectionExtensions.WrapToIl2Cpp(DelayedEndSession()));
				return false;
			}

			[HarmonyPatch(typeof(CarryItemPickup_Core), "Setup")]
			[HarmonyPostfix]
			private static void Setup(CarryItemPickup_Core __instance)
			{
				((Component)__instance).gameObject.AddComponent<CarryItem>();
			}

			[HarmonyPatch(typeof(CarryItemPickup_Core), "OnSyncStateChange")]
			[HarmonyPrefix]
			private static void Prefix_StatusChange(CarryItemPickup_Core __instance, ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
			{
				//IL_001f: Unknown result type (might be due to invalid IL or missing references)
				//IL_0020: Unknown result type (might be due to invalid IL or missing references)
				int instanceID = ((Object)__instance).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].Prefix_OnStatusChange(status, placement, player, isRecall);
				}
			}

			[HarmonyPatch(typeof(CarryItemPickup_Core), "OnSyncStateChange")]
			[HarmonyPostfix]
			[HarmonyPriority(600)]
			private static void Postfix_StatusChange(CarryItemPickup_Core __instance, ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
			{
				//IL_001f: Unknown result type (might be due to invalid IL or missing references)
				//IL_0020: Unknown result type (might be due to invalid IL or missing references)
				int instanceID = ((Object)__instance).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].Postfix_OnStatusChange(status, placement, player, isRecall);
				}
			}

			[HarmonyPatch(typeof(PlayerAgent), "Update")]
			[HarmonyPrefix]
			private static void Update(PlayerAgent __instance)
			{
				if (__instance.Owner.Lookup != SNet.LocalPlayer.Lookup || Clock.Time < Cooldown.timer)
				{
					return;
				}
				foreach (CarryItem value in instances.Values)
				{
					value.Footstep();
				}
			}

			[HarmonyPatch(typeof(SNet_SessionHub), "LeaveHub")]
			[HarmonyPrefix]
			private static void LeaveHub()
			{
				foreach (CarryItem value in instances.Values)
				{
					value.ForceStop();
				}
			}

			[HarmonyPatch(typeof(PLOC_Downed), "CommonEnter")]
			[HarmonyPrefix]
			[HarmonyWrapSafe]
			private static void Prefix_CommonEnter(PLOC_Downed __instance)
			{
				//IL_0062: Unknown result type (might be due to invalid IL or missing references)
				BackpackItem val = default(BackpackItem);
				if (!((PLOC_Base)__instance).m_owner.Owner.IsLocal || ((PLOC_Base)__instance).m_owner.Owner.IsBot || !PlayerBackpackManager.TryGetItem(PlayerManager.GetLocalPlayerAgent().Owner, (InventorySlot)8, ref val) || (Object)(object)val.Instance == (Object)null)
				{
					return;
				}
				ItemEquippable val2 = ((Il2CppObjectBase)val.Instance).Cast<ItemEquippable>();
				if ((Object)(object)val2 == (Object)null)
				{
					return;
				}
				ItemInLevel levelItemFromItemData = GetLevelItemFromItemData(((Item)val2).Get_pItemData());
				if (!((Object)(object)levelItemFromItemData == (Object)null))
				{
					int instanceID = ((Object)levelItemFromItemData).GetInstanceID();
					if (instances.ContainsKey(instanceID))
					{
						instances[instanceID].Footstep(force: true);
					}
					if (GuiManager.MainMenuLayer != null && (Object)(object)GuiManager.MainMenuLayer.PageMap != (Object)null)
					{
						GuiManager.MainMenuLayer.PageMap.UpdatePlayerData();
					}
				}
			}
		}

		private int instance;

		private CarryItemPickup_Core? core;

		private LG_PickupItem_Sync? sync;

		private Rigidbody? rb;

		private CapsuleCollider? collider;

		private static Dictionary<int, CarryItem> instances = new Dictionary<int, CarryItem>();

		private Vector3 physicsPosition;

		private Quaternion physicsRotation;

		private bool prevKinematic = true;

		private PlayerAgent? carrier;

		private bool startTracking;

		private Vector3 prevPosition = Vector3.zero;

		private float distance;

		private bool performSlip;

		private NM_NoiseData? noise;

		private float noiseDelay;

		private byte oldValue;

		private float prevTime;

		private float stillTimer;

		private float blink;

		private static bool allowQuitting = false;

		private static ItemInLevel? GetLevelItemFromItemData(pItemData itemData)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			Item val = default(Item);
			if (!PlayerBackpackManager.TryGetItemInLevelFromItemData(itemData, ref val))
			{
				return null;
			}
			if ((Object)(object)((Il2CppObjectBase)val).TryCast<ItemInLevel>() == (Object)null)
			{
				return null;
			}
			return ((Il2CppObjectBase)val).TryCast<ItemInLevel>();
		}

		private void Start()
		{
			//IL_00b6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bc: Expected O, but got Unknown
			core = ((Component)this).GetComponent<CarryItemPickup_Core>();
			sync = ((Component)this).GetComponent<LG_PickupItem_Sync>();
			if (!((Object)(object)sync == (Object)null) && !((Object)(object)core == (Object)null))
			{
				instance = ((Object)core).GetInstanceID();
				instances.Add(instance, this);
				((Component)core).gameObject.layer = LayerManager.LAYER_DEBRIS;
				rb = ((Component)this).gameObject.AddComponent<Rigidbody>();
				collider = ((Component)this).gameObject.AddComponent<CapsuleCollider>();
				rb.drag = 0.01f;
				rb.isKinematic = true;
				rb.collisionDetectionMode = (CollisionDetectionMode)2;
				PhysicMaterial val = new PhysicMaterial();
				val.bounciness = 0.4f;
				val.bounceCombine = (PhysicMaterialCombine)3;
				((Collider)collider).material = val;
			}
		}

		private void Prefix_OnStatusChange(ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
		{
			//IL_0019: Unknown result type (might be due to invalid IL or missing references)
			//IL_001b: Invalid comparison between Unknown and I4
			//IL_001d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0050: Unknown result type (might be due to invalid IL or missing references)
			//IL_00df: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e4: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)rb == (Object)null || (Object)(object)player == (Object)null)
			{
				return;
			}
			if ((int)status == 1 && !placement.linkedToMachine)
			{
				carrier = player;
			}
			else
			{
				carrier = null;
			}
			bool flag = !prevKinematic && rb.isKinematic;
			if (isRecall || (int)status != 0)
			{
				rb.isKinematic = true;
				return;
			}
			if (rb.isKinematic)
			{
				if (!flag && ((Agent)player).GlobalID != ((Agent)PlayerManager.GetLocalPlayerAgent()).GlobalID)
				{
					rb.isKinematic = true;
					return;
				}
				if (performSlip)
				{
					performSlip = false;
					Slip(player, placement.position + Vector3.up * 1.5f, placement.rotation, player.m_courseNode);
				}
			}
			if (!rb.isKinematic)
			{
				physicsPosition = ((Component)this).transform.position;
				physicsRotation = ((Component)this).transform.rotation;
			}
		}

		private void Postfix_OnStatusChange(ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
		{
			//IL_003f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0050: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)rb == (Object)null) && !((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null))
			{
				if (!rb.isKinematic)
				{
					((Component)this).transform.position = physicsPosition;
					((Component)this).transform.rotation = physicsRotation;
				}
				prevKinematic = rb.isKinematic;
			}
		}

		private AIG_CourseNode? GetNode(Vector3 position)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			AIG_INode val = default(AIG_INode);
			AIG_NodeCluster val2 = default(AIG_NodeCluster);
			if (AIG_GeomorphNodeVolume.TryGetNode(0, Dimension.GetDimensionFromPos(position).DimensionIndex, position, ref val, false) && AIG_NodeCluster.TryGetNodeCluster(val.ClusterID, ref val2))
			{
				if (val2.CourseNode == null)
				{
					return null;
				}
				return val2.CourseNode;
			}
			return null;
		}

		private void Footstep(bool force = false)
		{
			//IL_0044: Unknown result type (might be due to invalid IL or missing references)
			//IL_0049: Unknown result type (might be due to invalid IL or missing references)
			//IL_004f: Invalid comparison between Unknown and I4
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008d: Invalid comparison between Unknown and I4
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00da: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a3: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a8: Unknown result type (might be due to invalid IL or missing references)
			//IL_0138: Unknown result type (might be due to invalid IL or missing references)
			//IL_013e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0144: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)sync == (Object)null || (Object)(object)carrier == (Object)null || (Object)(object)rb == (Object)null || !rb.isKinematic || (int)sync.m_stateReplicator.State.status != 1)
			{
				return;
			}
			PlayerAgent localPlayerAgent = PlayerManager.GetLocalPlayerAgent();
			if (((Agent)carrier).GlobalID != ((Agent)localPlayerAgent).GlobalID || !((Object)(object)localPlayerAgent.Inventory != (Object)null) || (int)localPlayerAgent.Inventory.WieldedSlot != 8)
			{
				return;
			}
			if (!startTracking)
			{
				startTracking = true;
				prevPosition = ((Agent)localPlayerAgent).Position;
			}
			float num = distance;
			Vector3 val = ((Agent)localPlayerAgent).Position - prevPosition;
			distance = num + ((Vector3)(ref val)).magnitude;
			prevPosition = ((Agent)localPlayerAgent).Position;
			if (!(distance > ConfigManager.DistancePerRoll) && !force)
			{
				return;
			}
			distance = 0f;
			if (Random.Range(0f, 1f) < ConfigManager.HeavyItemProbability || force)
			{
				if (!force)
				{
					Cooldown.timer = Clock.Time + ConfigManager.Cooldown;
				}
				performSlip = true;
				PlayerBackpackManager.WantToDropItem_Local(((Item)localPlayerAgent.Inventory.WieldedItem).Get_pItemData(), ((Agent)localPlayerAgent).Position, ((Agent)localPlayerAgent).Rotation, true);
			}
		}

		private void Slip(PlayerAgent player, Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0076: Unknown result type (might be due to invalid IL or missing references)
			//IL_007b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			//IL_0092: Unknown result type (might be due to invalid IL or missing references)
			//IL_0098: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a3: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a4: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				((Component)this).gameObject.SetActive(true);
				rb.isKinematic = false;
				prevTime = Clock.Time;
				stillTimer = 0f;
				startTracking = false;
				carrier = null;
				Vector3 insideUnitSphere = Random.insideUnitSphere;
				rb.velocity = Vector3.zero;
				rb.AddForce(insideUnitSphere * ConfigManager.Force);
				SetTransform(position, rotation, node);
			}
		}

		private void SetTransform(Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_004c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0084: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				((Component)this).transform.position = position;
				((Component)this).transform.rotation = rotation;
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
		}

		private void OnCollisionStay()
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_0057: Unknown result type (might be due to invalid IL or missing references)
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0079: Unknown result type (might be due to invalid IL or missing references)
			//IL_008a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0094: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && rb.velocity.y > -0.3f && rb.velocity.y < 0.3f)
			{
				Rigidbody? obj = rb;
				obj.velocity *= 0.92f;
				Rigidbody? obj2 = rb;
				obj2.angularVelocity *= 0.92f;
			}
		}

		private void OnCollisionEnter()
		{
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0095: Unknown result type (might be due to invalid IL or missing references)
			//IL_009f: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00df: Unknown result type (might be due to invalid IL or missing references)
			//IL_00eb: Expected O, but got Unknown
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && ConfigManager.MakeNoise && !rb.isKinematic && ((ItemInLevel)core).m_courseNode != null && Clock.Time > noiseDelay)
			{
				noiseDelay = Clock.Time + 1.5f;
				noise = new NM_NoiseData
				{
					noiseMaker = null,
					position = ((Component)this).transform.position,
					radiusMin = 4f,
					radiusMax = 10f,
					yScale = 1f,
					node = ((ItemInLevel)core).m_courseNode,
					type = (NM_NoiseType)1,
					includeToNeightbourAreas = true,
					raycastFirstNode = false
				};
				NoiseManager.MakeNoise(noise);
			}
		}

		private void FixedUpdate()
		{
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_0085: Unknown result type (might be due to invalid IL or missing references)
			//IL_009b: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a0: Unknown result type (might be due to invalid IL or missing references)
			//IL_0053: Unknown result type (might be due to invalid IL or missing references)
			//IL_0058: Unknown result type (might be due to invalid IL or missing references)
			//IL_011a: Unknown result type (might be due to invalid IL or missing references)
			//IL_012d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0132: Unknown result type (might be due to invalid IL or missing references)
			//IL_014e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0153: Unknown result type (might be due to invalid IL or missing references)
			//IL_010e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0194: Unknown result type (might be due to invalid IL or missing references)
			//IL_017d: Unknown result type (might be due to invalid IL or missing references)
			//IL_022a: Unknown result type (might be due to invalid IL or missing references)
			//IL_022f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0236: Unknown result type (might be due to invalid IL or missing references)
			//IL_023b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0240: Unknown result type (might be due to invalid IL or missing references)
			//IL_0241: Unknown result type (might be due to invalid IL or missing references)
			//IL_0242: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ee: Unknown result type (might be due to invalid IL or missing references)
			//IL_01f3: Unknown result type (might be due to invalid IL or missing references)
			//IL_01fa: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ff: Unknown result type (might be due to invalid IL or missing references)
			//IL_0204: Unknown result type (might be due to invalid IL or missing references)
			//IL_0205: Unknown result type (might be due to invalid IL or missing references)
			//IL_0206: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)core == (Object)null || (Object)(object)sync == (Object)null || (Object)(object)rb == (Object)null || (Object)(object)collider == (Object)null)
			{
				return;
			}
			if (rb.isKinematic)
			{
				oldValue = sync.m_stateReplicator.State.custom.byteState;
				return;
			}
			AIG_CourseNode node = GetNode(((Component)this).transform.position);
			bool flag = Physics.Raycast(((Component)this).transform.position, Vector3.down, 1f);
			Vector3 val = rb.velocity;
			if (((Vector3)(ref val)).sqrMagnitude < 1f && flag)
			{
				stillTimer += Clock.Time - prevTime;
			}
			else
			{
				stillTimer = 0f;
			}
			if (node != null)
			{
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
			pItemData_Custom val2 = default(pItemData_Custom);
			val2.ammo = sync.m_stateReplicator.State.custom.ammo;
			val2.byteId = sync.m_stateReplicator.State.custom.byteId;
			val2.byteState = 1;
			if (stillTimer > 1f || ((Component)this).transform.position.y < -2500f)
			{
				rb.velocity = Vector3.zero;
				rb.isKinematic = true;
				val2.byteState = oldValue;
			}
			if (Clock.Time > blink - 0.5f)
			{
				val2.byteState = oldValue;
				LG_PickupItem_Sync? obj = sync;
				SNet_Player owner = PlayerManager.GetLocalPlayerAgent().Owner;
				val = ((Component)this).transform.position;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val3 = node;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, owner, val2, val, rotation, val3, true, true);
			}
			else
			{
				LG_PickupItem_Sync? obj2 = sync;
				SNet_Player owner2 = PlayerManager.GetLocalPlayerAgent().Owner;
				val = ((Component)this).transform.position;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val3 = node;
				obj2.AttemptPickupInteraction((ePickupItemInteractionType)1, owner2, val2, val, rotation, val3, true, true);
			}
			if (Clock.Time > blink)
			{
				blink = Clock.Time + 1f;
			}
			prevTime = Clock.Time;
		}

		private IEnumerator DelayedQuit()
		{
			yield return (object)new WaitForSeconds(1f);
			Environment.FailFast("Gotta go fast!");
		}

		private void OnApplicationQuit()
		{
			allowQuitting = true;
			ForceStop();
			if (allowQuitting)
			{
				Application.CancelQuit();
				((MonoBehaviour)this).StartCoroutine(CollectionExtensions.WrapToIl2Cpp(DelayedQuit()));
			}
		}

		private void ForceStop()
		{
			//IL_0060: Unknown result type (might be due to invalid IL or missing references)
			//IL_0073: Unknown result type (might be due to invalid IL or missing references)
			//IL_0078: Unknown result type (might be due to invalid IL or missing references)
			//IL_0094: Unknown result type (might be due to invalid IL or missing references)
			//IL_0099: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ef: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f7: Unknown result type (might be due to invalid IL or missing references)
			//IL_00fc: Unknown result type (might be due to invalid IL or missing references)
			//IL_0101: Unknown result type (might be due to invalid IL or missing references)
			//IL_0102: Unknown result type (might be due to invalid IL or missing references)
			//IL_0103: Unknown result type (might be due to invalid IL or missing references)
			APILogger.Debug("CARRY ITEM FORCE STOP");
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && !rb.isKinematic)
			{
				rb.isKinematic = true;
				pItemData_Custom val = default(pItemData_Custom);
				val.ammo = sync.m_stateReplicator.State.custom.ammo;
				val.byteId = sync.m_stateReplicator.State.custom.byteId;
				val.byteState = oldValue;
				AIG_CourseNode courseNode = ((Agent)PlayerManager.GetLocalPlayerAgent()).GoodNodeCluster.m_courseNode;
				Vector3 val2 = default(Vector3);
				courseNode.m_nodeCluster.TryGetClosetPositionInCluster(((Component)this).transform.position, ref val2);
				LG_PickupItem_Sync? obj = sync;
				SNet_Player owner = PlayerManager.GetLocalPlayerAgent().Owner;
				Vector3 val3 = val2;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val4 = courseNode;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, owner, val, val3, rotation, val4, true, true);
			}
		}
	}
	[HarmonyPatch]
	internal class Consumable : MonoBehaviour
	{
		[HarmonyPatch]
		private static class Patches
		{
			[HarmonyPatch(typeof(ConsumablePickup_Core), "Setup")]
			[HarmonyPostfix]
			private static void Setup(ConsumablePickup_Core __instance)
			{
				//IL_0000: Unknown result type (might be due to invalid IL or missing references)
				Consumable consumable = new GameObject().AddComponent<Consumable>();
				consumable.core = __instance;
				consumable.sync = ((Component)__instance).GetComponent<LG_PickupItem_Sync>();
			}

			[HarmonyPatch(typeof(ConsumablePickup_Core), "OnSyncStateChange")]
			[HarmonyPrefix]
			private static void Prefix_StatusChange(ConsumablePickup_Core __instance, ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
			{
				//IL_001f: Unknown result type (might be due to invalid IL or missing references)
				//IL_0020: Unknown result type (might be due to invalid IL or missing references)
				int instanceID = ((Object)__instance).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].Prefix_OnStatusChange(status, placement, player, isRecall);
				}
			}

			[HarmonyPatch(typeof(PlayerAgent), "Update")]
			[HarmonyPrefix]
			private static void Update(PlayerAgent __instance)
			{
				if (__instance.Owner.Lookup != SNet.LocalPlayer.Lookup || Clock.Time < Cooldown.timer)
				{
					return;
				}
				foreach (Consumable value in instances.Values)
				{
					value.Footstep();
				}
			}

			[HarmonyPatch(typeof(PLOC_Downed), "CommonEnter")]
			[HarmonyPrefix]
			[HarmonyWrapSafe]
			private static void Prefix_CommonEnter(PLOC_Downed __instance)
			{
				//IL_0062: Unknown result type (might be due to invalid IL or missing references)
				BackpackItem val = default(BackpackItem);
				if (!((PLOC_Base)__instance).m_owner.Owner.IsLocal || ((PLOC_Base)__instance).m_owner.Owner.IsBot || !PlayerBackpackManager.TryGetItem(PlayerManager.GetLocalPlayerAgent().Owner, (InventorySlot)5, ref val) || (Object)(object)val.Instance == (Object)null)
				{
					return;
				}
				ItemEquippable val2 = ((Il2CppObjectBase)val.Instance).Cast<ItemEquippable>();
				if ((Object)(object)val2 == (Object)null)
				{
					return;
				}
				ItemInLevel levelItemFromItemData = GetLevelItemFromItemData(((Item)val2).Get_pItemData());
				if (!((Object)(object)levelItemFromItemData == (Object)null))
				{
					int instanceID = ((Object)levelItemFromItemData).GetInstanceID();
					if (instances.ContainsKey(instanceID))
					{
						instances[instanceID].Footstep(force: true);
					}
					if (GuiManager.MainMenuLayer != null && (Object)(object)GuiManager.MainMenuLayer.PageMap != (Object)null)
					{
						GuiManager.MainMenuLayer.PageMap.UpdatePlayerData();
					}
				}
			}
		}

		private int instance;

		private ConsumablePickup_Core? core;

		private LG_PickupItem_Sync? sync;

		private Rigidbody? rb;

		private CapsuleCollider? collider;

		internal static Dictionary<int, Consumable> instances = new Dictionary<int, Consumable>();

		private PlayerAgent? carrier;

		private bool startTracking;

		private Vector3 prevPosition = Vector3.zero;

		private float distance;

		private bool performSlip;

		private NM_NoiseData? noise;

		private float noiseDelay;

		private static Vector3 oob = new Vector3(0f, -2000f, -2000f);

		private Vector3 oldPosition = Vector3.zero;

		private Quaternion oldRotation = Quaternion.identity;

		private float prevTime;

		private float stillTimer;

		private float timer;

		private bool visible;

		private float pingTimer;

		private void Start()
		{
			//IL_00a5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cb: Expected O, but got Unknown
			if (!((Object)(object)sync == (Object)null) && !((Object)(object)core == (Object)null))
			{
				instance = ((Object)core).GetInstanceID();
				instances.Add(instance, this);
				((Component)this).gameObject.layer = LayerManager.LAYER_DEBRIS;
				rb = ((Component)this).gameObject.AddComponent<Rigidbody>();
				collider = ((Component)this).gameObject.AddComponent<CapsuleCollider>();
				rb.drag = 0.01f;
				rb.isKinematic = true;
				rb.collisionDetectionMode = (CollisionDetectionMode)2;
				oldPosition = ((Component)core).transform.position;
				oldRotation = ((Component)core).transform.rotation;
				PhysicMaterial val = new PhysicMaterial();
				val.bounciness = 0.4f;
				val.bounceCombine = (PhysicMaterialCombine)3;
				((Collider)collider).material = val;
			}
		}

		private void Prefix_OnStatusChange(ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
		{
			//IL_0028: Unknown result type (might be due to invalid IL or missing references)
			//IL_002a: Invalid comparison between Unknown and I4
			//IL_002c: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cd: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00dc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e7: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)rb == (Object)null || (Object)(object)player == (Object)null || (Object)(object)sync == (Object)null)
			{
				return;
			}
			if ((int)status == 1 && !placement.linkedToMachine)
			{
				carrier = player;
			}
			else
			{
				carrier = null;
			}
			if (isRecall)
			{
				rb.isKinematic = true;
				return;
			}
			APILogger.Debug($"{instance} {rb.isKinematic} {performSlip}");
			if (rb.isKinematic && performSlip)
			{
				performSlip = false;
				Slip(player, placement.position + Vector3.up * 1.5f, placement.rotation, player.m_courseNode);
			}
		}

		private AIG_CourseNode? GetNode(Vector3 position)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			AIG_INode val = default(AIG_INode);
			AIG_NodeCluster val2 = default(AIG_NodeCluster);
			if (AIG_GeomorphNodeVolume.TryGetNode(0, Dimension.GetDimensionFromPos(position).DimensionIndex, position, ref val, false) && AIG_NodeCluster.TryGetNodeCluster(val.ClusterID, ref val2))
			{
				if (val2.CourseNode == null)
				{
					return null;
				}
				return val2.CourseNode;
			}
			return null;
		}

		private static ItemInLevel? GetLevelItemFromItemData(pItemData itemData)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			Item val = default(Item);
			if (!PlayerBackpackManager.TryGetItemInLevelFromItemData(itemData, ref val))
			{
				return null;
			}
			if ((Object)(object)((Il2CppObjectBase)val).TryCast<ItemInLevel>() == (Object)null)
			{
				return null;
			}
			return ((Il2CppObjectBase)val).TryCast<ItemInLevel>();
		}

		private void Footstep(bool force = false)
		{
			//IL_0044: Unknown result type (might be due to invalid IL or missing references)
			//IL_0049: Unknown result type (might be due to invalid IL or missing references)
			//IL_004f: Invalid comparison between Unknown and I4
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008d: Invalid comparison between Unknown and I4
			//IL_00b8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00be: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c3: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00dd: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ab: Unknown result type (might be due to invalid IL or missing references)
			//IL_0155: Unknown result type (might be due to invalid IL or missing references)
			//IL_017e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0183: Unknown result type (might be due to invalid IL or missing references)
			//IL_0188: Unknown result type (might be due to invalid IL or missing references)
			//IL_0195: Unknown result type (might be due to invalid IL or missing references)
			//IL_019f: Unknown result type (might be due to invalid IL or missing references)
			//IL_01a4: Unknown result type (might be due to invalid IL or missing references)
			//IL_0244: Unknown result type (might be due to invalid IL or missing references)
			//IL_0249: Unknown result type (might be due to invalid IL or missing references)
			//IL_0250: Unknown result type (might be due to invalid IL or missing references)
			//IL_0255: Unknown result type (might be due to invalid IL or missing references)
			//IL_025f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0261: Unknown result type (might be due to invalid IL or missing references)
			//IL_0262: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)sync == (Object)null || (Object)(object)carrier == (Object)null || (Object)(object)rb == (Object)null || !rb.isKinematic || (int)sync.m_stateReplicator.State.status != 1)
			{
				return;
			}
			PlayerAgent localPlayerAgent = PlayerManager.GetLocalPlayerAgent();
			if (((Agent)carrier).GlobalID != ((Agent)localPlayerAgent).GlobalID || !((Object)(object)localPlayerAgent.Inventory != (Object)null) || ((int)localPlayerAgent.Inventory.WieldedSlot != 5 && !force))
			{
				return;
			}
			if (!startTracking)
			{
				startTracking = true;
				prevPosition = ((Agent)localPlayerAgent).Position;
			}
			float num = distance;
			Vector3 val = ((Agent)localPlayerAgent).Position - prevPosition;
			distance = num + ((Vector3)(ref val)).magnitude;
			prevPosition = ((Agent)localPlayerAgent).Position;
			if (!(distance > ConfigManager.DistancePerRoll) && !force)
			{
				return;
			}
			distance = 0f;
			BackpackItem val2 = default(BackpackItem);
			if ((!(Random.Range(0f, 1f) < ConfigManager.ConsumableProbability) && !force) || !PlayerBackpackManager.TryGetItem(localPlayerAgent.Owner, (InventorySlot)5, ref val2) || (Object)(object)val2.Instance == (Object)null)
			{
				return;
			}
			ItemEquippable val3 = ((Il2CppObjectBase)val2.Instance).Cast<ItemEquippable>();
			if ((Object)(object)val3 == (Object)null)
			{
				return;
			}
			ItemInLevel levelItemFromItemData = GetLevelItemFromItemData(((Item)val3).Get_pItemData());
			if ((Object)(object)levelItemFromItemData == (Object)null)
			{
				return;
			}
			iPickupItemSync syncComponent = levelItemFromItemData.GetSyncComponent();
			if (syncComponent == null)
			{
				return;
			}
			InventorySlot slot = ((Item)levelItemFromItemData).Get_pItemData().slot;
			InventorySlotAmmo inventorySlotAmmo = PlayerBackpackManager.GetLocalOrSyncBackpack((SNet_Player)null).AmmoStorage.GetInventorySlotAmmo(slot);
			pItemData_Custom customData = ((Item)val3).GetCustomData();
			customData.ammo = inventorySlotAmmo.AmmoInPack;
			int instanceID = ((Object)levelItemFromItemData).GetInstanceID();
			if (instances.ContainsKey(instanceID))
			{
				if (!force)
				{
					Cooldown.timer = Clock.Time + ConfigManager.Cooldown;
				}
				instances[instanceID].performSlip = true;
				APILogger.Debug($"{instance} - {instanceID} slip");
				SNet_Player localPlayer = SNet.LocalPlayer;
				val = ((Component)localPlayerAgent).transform.position;
				Quaternion rotation = ((Component)localPlayerAgent).transform.rotation;
				AIG_CourseNode courseNode = ((Agent)localPlayerAgent).CourseNode;
				syncComponent.AttemptPickupInteraction((ePickupItemInteractionType)1, localPlayer, customData, val, rotation, courseNode, true, true);
			}
			else
			{
				APILogger.Error("Could not find consumable item!!!");
			}
		}

		private void Slip(PlayerAgent player, Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0093: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a3: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a9: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b4: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				rb.isKinematic = false;
				prevTime = Clock.Time;
				stillTimer = 0f;
				timer = 0f;
				visible = true;
				pingTimer = 0f;
				startTracking = false;
				carrier = null;
				Vector3 insideUnitSphere = Random.insideUnitSphere;
				rb.velocity = Vector3.zero;
				rb.AddForce(insideUnitSphere * ConfigManager.Force);
				SetTransform(position, rotation, node);
			}
		}

		private void SetTransform(Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_004c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0084: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				((Component)this).transform.position = position;
				((Component)this).transform.rotation = rotation;
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
		}

		private void OnCollisionStay()
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_0057: Unknown result type (might be due to invalid IL or missing references)
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0079: Unknown result type (might be due to invalid IL or missing references)
			//IL_008a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0094: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && rb.velocity.y > -0.3f && rb.velocity.y < 0.3f)
			{
				Rigidbody? obj = rb;
				obj.velocity *= 0.92f;
				Rigidbody? obj2 = rb;
				obj2.angularVelocity *= 0.92f;
			}
		}

		private void OnCollisionEnter()
		{
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0095: Unknown result type (might be due to invalid IL or missing references)
			//IL_009f: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00df: Unknown result type (might be due to invalid IL or missing references)
			//IL_00eb: Expected O, but got Unknown
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && ConfigManager.MakeNoise && !rb.isKinematic && ((ItemInLevel)core).m_courseNode != null && Clock.Time > noiseDelay)
			{
				noiseDelay = Clock.Time + 1.5f;
				noise = new NM_NoiseData
				{
					noiseMaker = null,
					position = ((Component)this).transform.position,
					radiusMin = 4f,
					radiusMax = 10f,
					yScale = 1f,
					node = ((ItemInLevel)core).m_courseNode,
					type = (NM_NoiseType)1,
					includeToNeightbourAreas = true,
					raycastFirstNode = false
				};
				NoiseManager.MakeNoise(noise);
			}
		}

		private void FixedUpdate()
		{
			//IL_004f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0060: Unknown result type (might be due to invalid IL or missing references)
			//IL_0065: Unknown result type (might be due to invalid IL or missing references)
			//IL_007b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ee: Unknown result type (might be due to invalid IL or missing references)
			//IL_013f: Unknown result type (might be due to invalid IL or missing references)
			//IL_010b: Unknown result type (might be due to invalid IL or missing references)
			//IL_02b9: Unknown result type (might be due to invalid IL or missing references)
			//IL_02be: Unknown result type (might be due to invalid IL or missing references)
			//IL_02c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_02ca: Unknown result type (might be due to invalid IL or missing references)
			//IL_02da: Unknown result type (might be due to invalid IL or missing references)
			//IL_02df: Unknown result type (might be due to invalid IL or missing references)
			//IL_02e4: Unknown result type (might be due to invalid IL or missing references)
			//IL_02e5: Unknown result type (might be due to invalid IL or missing references)
			//IL_0210: Unknown result type (might be due to invalid IL or missing references)
			//IL_0215: Unknown result type (might be due to invalid IL or missing references)
			//IL_0221: Unknown result type (might be due to invalid IL or missing references)
			//IL_0226: Unknown result type (might be due to invalid IL or missing references)
			//IL_0242: Unknown result type (might be due to invalid IL or missing references)
			//IL_0247: Unknown result type (might be due to invalid IL or missing references)
			//IL_024e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0253: Unknown result type (might be due to invalid IL or missing references)
			//IL_0263: Unknown result type (might be due to invalid IL or missing references)
			//IL_0268: Unknown result type (might be due to invalid IL or missing references)
			//IL_026d: Unknown result type (might be due to invalid IL or missing references)
			//IL_026e: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ce: Unknown result type (might be due to invalid IL or missing references)
			//IL_01fd: Unknown result type (might be due to invalid IL or missing references)
			//IL_01e3: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ee: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)core == (Object)null || (Object)(object)sync == (Object)null || (Object)(object)rb == (Object)null || (Object)(object)collider == (Object)null || rb.isKinematic)
			{
				return;
			}
			AIG_CourseNode node = GetNode(((Component)this).transform.position);
			bool flag = Physics.Raycast(((Component)this).transform.position, Vector3.down, 1f);
			Vector3 val = rb.velocity;
			if (((Vector3)(ref val)).sqrMagnitude < 1f && flag)
			{
				stillTimer += Clock.Time - prevTime;
			}
			else
			{
				stillTimer = 0f;
			}
			if (node != null)
			{
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
			if (stillTimer > 1f || ((Component)this).transform.position.y < -2500f)
			{
				timer = 0f;
				pingTimer = 0f;
				visible = true;
				rb.velocity = Vector3.zero;
				rb.isKinematic = true;
			}
			if (visible)
			{
				if (Clock.Time > timer)
				{
					visible = !visible;
					timer = Clock.Time + 0.02f;
				}
				if (Clock.Time > pingTimer)
				{
					pingTimer = Clock.Time + 1.5f;
					LocalPlayerAgent val2 = ((Il2CppObjectBase)PlayerManager.GetLocalPlayerAgent()).Cast<LocalPlayerAgent>();
					val2.m_pingTarget = ((Component)core).GetComponent<iPlayerPingTarget>();
					val2.m_pingPos = ((Component)this).transform.position;
					if (val2.m_pingTarget != null)
					{
						GuiManager.AttemptSetPlayerPingStatus((PlayerAgent)(object)val2, true, val2.m_pingPos, val2.m_pingTarget.PingTargetStyle);
					}
					else
					{
						GuiManager.AttemptSetPlayerPingStatus((PlayerAgent)(object)val2, true, val2.m_pingPos, (eNavMarkerStyle)19);
					}
				}
				oldPosition = ((Component)this).transform.position;
				oldRotation = ((Component)this).transform.rotation;
				LG_PickupItem_Sync? obj = sync;
				SNet_Player owner = PlayerManager.GetLocalPlayerAgent().Owner;
				val = ((Component)this).transform.position;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val3 = node;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, owner, sync.m_stateReplicator.State.custom, val, rotation, val3, true, true);
			}
			else
			{
				if (Clock.Time > timer)
				{
					visible = !visible;
					timer = Clock.Time + 0.4f;
				}
				LG_PickupItem_Sync? obj2 = sync;
				SNet_Player owner2 = PlayerManager.GetLocalPlayerAgent().Owner;
				val = oob;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val3 = node;
				obj2.AttemptPickupInteraction((ePickupItemInteractionType)1, owner2, sync.m_stateReplicator.State.custom, val, rotation, val3, true, true);
			}
			prevTime = Clock.Time;
		}

		private void OnApplicationQuit()
		{
			ForceStop();
		}

		internal void ForceStop()
		{
			//IL_0078: Unknown result type (might be due to invalid IL or missing references)
			//IL_0096: Unknown result type (might be due to invalid IL or missing references)
			//IL_0097: Unknown result type (might be due to invalid IL or missing references)
			//IL_0099: Unknown result type (might be due to invalid IL or missing references)
			//IL_009e: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c1: Unknown result type (might be due to invalid IL or missing references)
			APILogger.Debug("FORCE STOP CONSUMABLE");
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && !rb.isKinematic)
			{
				rb.isKinematic = true;
				Vector3 val = default(Vector3);
				((Agent)PlayerManager.GetLocalPlayerAgent()).GoodNodeCluster.m_courseNode.m_nodeCluster.TryGetClosetPositionInCluster(((Component)this).transform.position, ref val);
				LG_PickupItem_Sync? obj = sync;
				SNet_Player owner = PlayerManager.GetLocalPlayerAgent().Owner;
				Vector3 val2 = val;
				Quaternion val3 = oldRotation;
				AIG_CourseNode courseNode = ((ItemInLevel)core).m_courseNode;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, owner, sync.m_stateReplicator.State.custom, val2, val3, courseNode, true, true);
			}
		}
	}
	[HarmonyPatch]
	internal class KeyItem : MonoBehaviour
	{
		[HarmonyPatch]
		private static class Patches
		{
			private static bool startTracking = false;

			private static Vector3 prevPosition = Vector3.zero;

			private static float distance = 0f;

			private static List<uint> groups = new List<uint>();

			private static List<PocketItem> pitems = new List<PocketItem>();

			[HarmonyPatch(typeof(KeyItemPickup_Core), "Setup")]
			[HarmonyPostfix]
			private static void Setup(KeyItemPickup_Core __instance)
			{
				//IL_0000: Unknown result type (might be due to invalid IL or missing references)
				KeyItem keyItem = new GameObject().AddComponent<KeyItem>();
				keyItem.core = __instance;
				keyItem.sync = ((Component)__instance).GetComponent<LG_PickupItem_Sync>();
			}

			[HarmonyPatch(typeof(KeyItemPickup_Core), "OnSyncStateChange")]
			[HarmonyPrefix]
			private static void Prefix_StatusChange(KeyItemPickup_Core __instance, ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
			{
				//IL_001f: Unknown result type (might be due to invalid IL or missing references)
				//IL_0020: Unknown result type (might be due to invalid IL or missing references)
				int instanceID = ((Object)__instance).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].Prefix_OnStatusChange(status, placement, player, isRecall);
				}
			}

			[HarmonyPatch(typeof(PlayerAgent), "Update")]
			[HarmonyPrefix]
			private static void Update(PlayerAgent __instance)
			{
				//IL_0063: Unknown result type (might be due to invalid IL or missing references)
				//IL_0068: Unknown result type (might be due to invalid IL or missing references)
				//IL_006d: Unknown result type (might be due to invalid IL or missing references)
				//IL_0072: Unknown result type (might be due to invalid IL or missing references)
				//IL_0082: Unknown result type (might be due to invalid IL or missing references)
				//IL_0087: Unknown result type (might be due to invalid IL or missing references)
				//IL_0053: Unknown result type (might be due to invalid IL or missing references)
				//IL_0058: Unknown result type (might be due to invalid IL or missing references)
				//IL_0182: Unknown result type (might be due to invalid IL or missing references)
				//IL_0198: Unknown result type (might be due to invalid IL or missing references)
				//IL_01a0: Unknown result type (might be due to invalid IL or missing references)
				//IL_01a5: Unknown result type (might be due to invalid IL or missing references)
				//IL_01aa: Unknown result type (might be due to invalid IL or missing references)
				PlayerBackpack val = default(PlayerBackpack);
				if (__instance.Owner.Lookup != SNet.LocalPlayer.Lookup || Clock.Time < Cooldown.timer || !PlayerBackpackManager.TryGetBackpack(__instance.Owner, ref val) || val.ItemIDToPocketItemGroup.Count == 0)
				{
					return;
				}
				if (!startTracking)
				{
					startTracking = true;
					prevPosition = ((Agent)__instance).Position;
				}
				float num = distance;
				Vector3 val2 = ((Agent)__instance).Position - prevPosition;
				distance = num + ((Vector3)(ref val2)).magnitude;
				prevPosition = ((Agent)__instance).Position;
				if (distance < ConfigManager.DistancePerRoll)
				{
					return;
				}
				APILogger.Debug($"distance! {distance}");
				distance = 0f;
				if (Random.Range(0f, 1f) > ConfigManager.ItemInPocketProbability)
				{
					return;
				}
				Enumerator<uint, List<PocketItem>> enumerator = val.ItemIDToPocketItemGroup.Keys.GetEnumerator();
				while (enumerator.MoveNext())
				{
					uint current = enumerator.Current;
					groups.Add(current);
				}
				PocketItem val3 = val.ItemIDToPocketItemGroup[groups[Random.Range(0, val.ItemIDToPocketItemGroup.Count)]][0];
				groups.Clear();
				APILogger.Debug($"dropped! {val3.itemID}");
				pItemData val4 = default(pItemData);
				val4.itemID_gearCRC = val3.itemID;
				val4.slot = (InventorySlot)7;
				val4.replicatorRef = val3.replicatorRef;
				Item val5 = default(Item);
				if (!PlayerBackpackManager.TryGetItemInLevelFromItemData(val4, ref val5))
				{
					return;
				}
				ItemInLevel val6 = ((Il2CppObjectBase)val5).TryCast<ItemInLevel>();
				if ((Object)(object)val6 == (Object)null)
				{
					APILogger.Debug("Could not find key item.");
					return;
				}
				int instanceID = ((Object)val6).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].TriggerSlip();
					return;
				}
				DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(34, 2);
				defaultInterpolatedStringHandler.AppendLiteral("Could not find key item instance ");
				defaultInterpolatedStringHandler.AppendFormatted(instanceID);
				defaultInterpolatedStringHandler.AppendLiteral(" ");
				LG_PickupItem_Sync component = ((Component)val5).GetComponent<LG_PickupItem_Sync>();
				defaultInterpolatedStringHandler.AppendFormatted((component != null) ? new ushort?(component.m_stateReplicator.Replicator.Key) : null);
				APILogger.Debug(defaultInterpolatedStringHandler.ToStringAndClear());
			}

			[HarmonyPatch(typeof(PLOC_Downed), "CommonEnter")]
			[HarmonyPrefix]
			[HarmonyWrapSafe]
			private static void Prefix_CommonEnter(PLOC_Downed __instance)
			{
				//IL_00df: Unknown result type (might be due to invalid IL or missing references)
				//IL_00f6: Unknown result type (might be due to invalid IL or missing references)
				//IL_00ff: Unknown result type (might be due to invalid IL or missing references)
				//IL_0104: Unknown result type (might be due to invalid IL or missing references)
				//IL_0109: Unknown result type (might be due to invalid IL or missing references)
				PlayerBackpack val = default(PlayerBackpack);
				if (!((PLOC_Base)__instance).m_owner.Owner.IsLocal || ((PLOC_Base)__instance).m_owner.Owner.IsBot || !PlayerBackpackManager.TryGetBackpack(PlayerManager.GetLocalPlayerAgent().Owner, ref val))
				{
					return;
				}
				Enumerator<uint, List<PocketItem>> enumerator = val.ItemIDToPocketItemGroup.GetEnumerator();
				while (enumerator.MoveNext())
				{
					KeyValuePair<uint, List<PocketItem>> current = enumerator.Current;
					for (int i = 0; i < current.Value.Count; i++)
					{
						pitems.Add(current.Value[i]);
					}
				}
				APILogger.Debug($"Dropping {pitems.Count} key items.");
				Item val3 = default(Item);
				foreach (PocketItem pitem in pitems)
				{
					pItemData val2 = default(pItemData);
					val2.itemID_gearCRC = pitem.itemID;
					val2.slot = (InventorySlot)7;
					val2.replicatorRef = pitem.replicatorRef;
					if (PlayerBackpackManager.TryGetItemInLevelFromItemData(val2, ref val3))
					{
						ItemInLevel val4 = ((Il2CppObjectBase)val3).TryCast<ItemInLevel>();
						if ((Object)(object)val4 == (Object)null)
						{
							APILogger.Debug("Death - could not find key item.");
							return;
						}
						int instanceID = ((Object)val4).GetInstanceID();
						if (instances.ContainsKey(instanceID))
						{
							instances[instanceID].TriggerSlip();
							continue;
						}
						APILogger.Debug($"Death - could not find key item instance {instanceID}");
					}
				}
				pitems.Clear();
			}
		}

		private int instance;

		private KeyItemPickup_Core? core;

		private LG_PickupItem_Sync? sync;

		private Rigidbody? rb;

		private CapsuleCollider? collider;

		internal static Dictionary<int, KeyItem> instances = new Dictionary<int, KeyItem>();

		private PlayerAgent? carrier;

		private bool performSlip;

		private NM_NoiseData? noise;

		private float noiseDelay;

		private static Vector3 oob = new Vector3(0f, -2000f, -2000f);

		private Vector3 oldPosition = Vector3.zero;

		private Quaternion oldRotation = Quaternion.identity;

		private float prevTime;

		private float stillTimer;

		private float timer;

		private bool visible;

		private float pingTimer;

		private void Start()
		{
			//IL_00a5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cb: Expected O, but got Unknown
			if (!((Object)(object)sync == (Object)null) && !((Object)(object)core == (Object)null))
			{
				instance = ((Object)core).GetInstanceID();
				instances.Add(instance, this);
				((Component)this).gameObject.layer = LayerManager.LAYER_DEBRIS;
				rb = ((Component)this).gameObject.AddComponent<Rigidbody>();
				collider = ((Component)this).gameObject.AddComponent<CapsuleCollider>();
				rb.drag = 0.01f;
				rb.isKinematic = true;
				rb.collisionDetectionMode = (CollisionDetectionMode)2;
				oldPosition = ((Component)core).transform.position;
				oldRotation = ((Component)core).transform.rotation;
				PhysicMaterial val = new PhysicMaterial();
				val.bounciness = 0.4f;
				val.bounceCombine = (PhysicMaterialCombine)3;
				((Collider)collider).material = val;
			}
		}

		private void Prefix_OnStatusChange(ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
		{
			//IL_00ec: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ee: Invalid comparison between Unknown and I4
			//IL_00f0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bd: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d7: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)rb == (Object)null || (Object)(object)sync == (Object)null)
			{
				return;
			}
			if (isRecall)
			{
				rb.isKinematic = true;
				return;
			}
			if ((Object)(object)carrier != (Object)null)
			{
				APILogger.Debug($"{instance} {rb.isKinematic} {performSlip}");
				if (rb.isKinematic && performSlip)
				{
					performSlip = false;
					Slip(carrier, placement.position + Vector3.up * 1.5f, placement.rotation, carrier.m_courseNode);
				}
			}
			if ((int)status == 1 && !placement.linkedToMachine)
			{
				carrier = player;
			}
			else
			{
				carrier = null;
			}
		}

		private AIG_CourseNode? GetNode(Vector3 position)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			AIG_INode val = default(AIG_INode);
			AIG_NodeCluster val2 = default(AIG_NodeCluster);
			if (AIG_GeomorphNodeVolume.TryGetNode(0, Dimension.GetDimensionFromPos(position).DimensionIndex, position, ref val, false) && AIG_NodeCluster.TryGetNodeCluster(val.ClusterID, ref val2))
			{
				if (val2.CourseNode == null)
				{
					return null;
				}
				return val2.CourseNode;
			}
			return null;
		}

		private static ItemInLevel? GetLevelItemFromItemData(pItemData itemData)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			Item val = default(Item);
			if (!PlayerBackpackManager.TryGetItemInLevelFromItemData(itemData, ref val))
			{
				return null;
			}
			if ((Object)(object)((Il2CppObjectBase)val).TryCast<ItemInLevel>() == (Object)null)
			{
				return null;
			}
			return ((Il2CppObjectBase)val).TryCast<ItemInLevel>();
		}

		private void TriggerSlip()
		{
			//IL_006b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0070: Unknown result type (might be due to invalid IL or missing references)
			//IL_0075: Unknown result type (might be due to invalid IL or missing references)
			//IL_0089: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_009a: Unknown result type (might be due to invalid IL or missing references)
			//IL_009f: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ae: Unknown result type (might be due to invalid IL or missing references)
			//IL_00af: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bd: Unknown result type (might be due to invalid IL or missing references)
			//IL_00dc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e1: Unknown result type (might be due to invalid IL or missing references)
			//IL_0114: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f7: Unknown result type (might be due to invalid IL or missing references)
			//IL_0103: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)carrier == (Object)null))
			{
				performSlip = true;
				APILogger.Debug($"{instance} slip");
				pItemData_Custom custom = sync.m_stateReplicator.m_currentState.custom;
				LG_PickupItem_Sync? obj = sync;
				Vector3 position = ((Component)carrier).transform.position;
				Quaternion rotation = ((Component)carrier).transform.rotation;
				AIG_CourseNode courseNode = ((Agent)carrier).CourseNode;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, (SNet_Player)null, custom, position, rotation, courseNode, false, true);
				pItemData_WithOwner val = default(pItemData_WithOwner);
				((pPlayer)(ref val.owningPlayer)).SetPlayer(SNet.LocalPlayer);
				val.data = ((Item)core).Get_pItemData();
				if (SNet.IsMaster)
				{
					PlayerBackpackManager.Current.m_removeItemPacket.Send(val, (SNet_ChannelType)2);
					PlayerBackpackManager.Current.RemoveItem(val);
				}
				else
				{
					PlayerBackpackManager.Current.m_wantToRemoveItemPacket.Send(val, (SNet_ChannelType)2, SNet.Master);
				}
			}
		}

		private void Slip(PlayerAgent player, Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_0085: Unknown result type (might be due to invalid IL or missing references)
			//IL_008c: Unknown result type (might be due to invalid IL or missing references)
			//IL_009c: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ad: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ae: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				rb.isKinematic = false;
				prevTime = Clock.Time;
				stillTimer = 0f;
				timer = 0f;
				visible = true;
				pingTimer = 0f;
				carrier = null;
				Vector3 insideUnitSphere = Random.insideUnitSphere;
				rb.velocity = Vector3.zero;
				rb.AddForce(insideUnitSphere * ConfigManager.Force);
				SetTransform(position, rotation, node);
			}
		}

		private void SetTransform(Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_004c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0084: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				((Component)this).transform.position = position;
				((Component)this).transform.rotation = rotation;
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
		}

		private void OnCollisionStay()
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_0057: Unknown result type (might be due to invalid IL or missing references)
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0079: Unknown result type (might be due to invalid IL or missing references)
			//IL_008a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0094: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && rb.velocity.y > -0.3f && rb.velocity.y < 0.3f)
			{
				Rigidbody? obj = rb;
				obj.velocity *= 0.92f;
				Rigidbody? obj2 = rb;
				obj2.angularVelocity *= 0.92f;
			}
		}

		private void OnCollisionEnter()
		{
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0095: Unknown result type (might be due to invalid IL or missing references)
			//IL_009f: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00df: Unknown result type (might be due to invalid IL or missing references)
			//IL_00eb: Expected O, but got Unknown
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && ConfigManager.MakeNoise && !rb.isKinematic && ((ItemInLevel)core).m_courseNode != null && Clock.Time > noiseDelay)
			{
				noiseDelay = Clock.Time + 1.5f;
				noise = new NM_NoiseData
				{
					noiseMaker = null,
					position = ((Component)this).transform.position,
					radiusMin = 4f,
					radiusMax = 10f,
					yScale = 1f,
					node = ((ItemInLevel)core).m_courseNode,
					type = (NM_NoiseType)1,
					includeToNeightbourAreas = true,
					raycastFirstNode = false
				};
				NoiseManager.MakeNoise(noise);
			}
		}

		private void FixedUpdate()
		{
			//IL_004f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0060: Unknown result type (might be due to invalid IL or missing references)
			//IL_0065: Unknown result type (might be due to invalid IL or missing references)
			//IL_007b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ee: Unknown result type (might be due to invalid IL or missing references)
			//IL_013f: Unknown result type (might be due to invalid IL or missing references)
			//IL_010b: Unknown result type (might be due to invalid IL or missing references)
			//IL_02a7: Unknown result type (might be due to invalid IL or missing references)
			//IL_02ac: Unknown result type (might be due to invalid IL or missing references)
			//IL_02b3: Unknown result type (might be due to invalid IL or missing references)
			//IL_02b8: Unknown result type (might be due to invalid IL or missing references)
			//IL_02c8: Unknown result type (might be due to invalid IL or missing references)
			//IL_02cd: Unknown result type (might be due to invalid IL or missing references)
			//IL_02d2: Unknown result type (might be due to invalid IL or missing references)
			//IL_02d3: Unknown result type (might be due to invalid IL or missing references)
			//IL_0210: Unknown result type (might be due to invalid IL or missing references)
			//IL_0215: Unknown result type (might be due to invalid IL or missing references)
			//IL_0221: Unknown result type (might be due to invalid IL or missing references)
			//IL_0226: Unknown result type (might be due to invalid IL or missing references)
			//IL_0239: Unknown result type (might be due to invalid IL or missing references)
			//IL_023e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0245: Unknown result type (might be due to invalid IL or missing references)
			//IL_024a: Unknown result type (might be due to invalid IL or missing references)
			//IL_025a: Unknown result type (might be due to invalid IL or missing references)
			//IL_025f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0264: Unknown result type (might be due to invalid IL or missing references)
			//IL_0265: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ce: Unknown result type (might be due to invalid IL or missing references)
			//IL_01fd: Unknown result type (might be due to invalid IL or missing references)
			//IL_01e3: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ee: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)core == (Object)null || (Object)(object)sync == (Object)null || (Object)(object)rb == (Object)null || (Object)(object)collider == (Object)null || rb.isKinematic)
			{
				return;
			}
			AIG_CourseNode node = GetNode(((Component)this).transform.position);
			bool flag = Physics.Raycast(((Component)this).transform.position, Vector3.down, 1f);
			Vector3 val = rb.velocity;
			if (((Vector3)(ref val)).sqrMagnitude < 1f && flag)
			{
				stillTimer += Clock.Time - prevTime;
			}
			else
			{
				stillTimer = 0f;
			}
			if (node != null)
			{
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
			if (stillTimer > 1f || ((Component)this).transform.position.y < -2500f)
			{
				timer = 0f;
				pingTimer = 0f;
				visible = true;
				rb.velocity = Vector3.zero;
				rb.isKinematic = true;
			}
			if (visible)
			{
				if (Clock.Time > timer)
				{
					visible = !visible;
					timer = Clock.Time + 0.02f;
				}
				if (Clock.Time > pingTimer)
				{
					pingTimer = Clock.Time + 1.5f;
					LocalPlayerAgent val2 = ((Il2CppObjectBase)PlayerManager.GetLocalPlayerAgent()).Cast<LocalPlayerAgent>();
					val2.m_pingTarget = ((Component)core).GetComponent<iPlayerPingTarget>();
					val2.m_pingPos = ((Component)this).transform.position;
					if (val2.m_pingTarget != null)
					{
						GuiManager.AttemptSetPlayerPingStatus((PlayerAgent)(object)val2, true, val2.m_pingPos, val2.m_pingTarget.PingTargetStyle);
					}
					else
					{
						GuiManager.AttemptSetPlayerPingStatus((PlayerAgent)(object)val2, true, val2.m_pingPos, (eNavMarkerStyle)20);
					}
				}
				oldPosition = ((Component)this).transform.position;
				oldRotation = ((Component)this).transform.rotation;
				LG_PickupItem_Sync? obj = sync;
				val = ((Component)this).transform.position;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val3 = node;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, (SNet_Player)null, sync.m_stateReplicator.State.custom, val, rotation, val3, false, true);
			}
			else
			{
				if (Clock.Time > timer)
				{
					visible = !visible;
					timer = Clock.Time + 0.4f;
				}
				LG_PickupItem_Sync? obj2 = sync;
				val = oob;
				Quaternion rotation = ((Component)this).transform.rotation;
				AIG_CourseNode val3 = node;
				obj2.AttemptPickupInteraction((ePickupItemInteractionType)1, (SNet_Player)null, sync.m_stateReplicator.State.custom, val, rotation, val3, false, true);
			}
			prevTime = Clock.Time;
		}

		private void OnApplicationQuit()
		{
			ForceStop();
		}

		internal void ForceStop()
		{
			//IL_0078: Unknown result type (might be due to invalid IL or missing references)
			//IL_008d: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0090: Unknown result type (might be due to invalid IL or missing references)
			//IL_0095: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ad: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b7: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b8: Unknown result type (might be due to invalid IL or missing references)
			APILogger.Debug("FORCE STOP KEY ITEM");
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && !rb.isKinematic)
			{
				rb.isKinematic = true;
				Vector3 val = default(Vector3);
				((Agent)PlayerManager.GetLocalPlayerAgent()).GoodNodeCluster.m_courseNode.m_nodeCluster.TryGetClosetPositionInCluster(((Component)this).transform.position, ref val);
				LG_PickupItem_Sync? obj = sync;
				Vector3 val2 = val;
				Quaternion val3 = oldRotation;
				AIG_CourseNode courseNode = ((ItemInLevel)core).m_courseNode;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, (SNet_Player)null, sync.m_stateReplicator.State.custom, val2, val3, courseNode, false, true);
			}
		}
	}
	[HarmonyPatch]
	internal class PocketItem : MonoBehaviour
	{
		[HarmonyPatch]
		private static class Patches
		{
			private static bool startTracking = false;

			private static Vector3 prevPosition = Vector3.zero;

			private static float distance = 0f;

			private static List<uint> groups = new List<uint>();

			private static List<PocketItem> pitems = new List<PocketItem>();

			[HarmonyPatch(typeof(GenericSmallPickupItem_Core), "Setup")]
			[HarmonyPostfix]
			private static void Setup(GenericSmallPickupItem_Core __instance)
			{
				//IL_0000: Unknown result type (might be due to invalid IL or missing references)
				PocketItem pocketItem = new GameObject().AddComponent<PocketItem>();
				pocketItem.core = __instance;
				pocketItem.sync = ((Component)__instance).GetComponent<LG_PickupItem_Sync>();
			}

			[HarmonyPatch(typeof(GenericSmallPickupItem_Core), "OnSyncStateChange")]
			[HarmonyPrefix]
			private static void Prefix_StatusChange(GenericSmallPickupItem_Core __instance, ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
			{
				//IL_001f: Unknown result type (might be due to invalid IL or missing references)
				//IL_0020: Unknown result type (might be due to invalid IL or missing references)
				int instanceID = ((Object)__instance).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].Prefix_OnStatusChange(status, placement, player, isRecall);
				}
			}

			[HarmonyPatch(typeof(PlayerAgent), "Update")]
			[HarmonyPrefix]
			private static void Update(PlayerAgent __instance)
			{
				//IL_0063: Unknown result type (might be due to invalid IL or missing references)
				//IL_0068: Unknown result type (might be due to invalid IL or missing references)
				//IL_006d: Unknown result type (might be due to invalid IL or missing references)
				//IL_0072: Unknown result type (might be due to invalid IL or missing references)
				//IL_0082: Unknown result type (might be due to invalid IL or missing references)
				//IL_0087: Unknown result type (might be due to invalid IL or missing references)
				//IL_0053: Unknown result type (might be due to invalid IL or missing references)
				//IL_0058: Unknown result type (might be due to invalid IL or missing references)
				//IL_0182: Unknown result type (might be due to invalid IL or missing references)
				//IL_0198: Unknown result type (might be due to invalid IL or missing references)
				//IL_01a0: Unknown result type (might be due to invalid IL or missing references)
				//IL_01a5: Unknown result type (might be due to invalid IL or missing references)
				//IL_01aa: Unknown result type (might be due to invalid IL or missing references)
				PlayerBackpack val = default(PlayerBackpack);
				if (__instance.Owner.Lookup != SNet.LocalPlayer.Lookup || Clock.Time < Cooldown.timer || !PlayerBackpackManager.TryGetBackpack(__instance.Owner, ref val) || val.ItemIDToPocketItemGroup.Count == 0)
				{
					return;
				}
				if (!startTracking)
				{
					startTracking = true;
					prevPosition = ((Agent)__instance).Position;
				}
				float num = distance;
				Vector3 val2 = ((Agent)__instance).Position - prevPosition;
				distance = num + ((Vector3)(ref val2)).magnitude;
				prevPosition = ((Agent)__instance).Position;
				if (distance < ConfigManager.DistancePerRoll)
				{
					return;
				}
				APILogger.Debug($"distance! {distance}");
				distance = 0f;
				if (Random.Range(0f, 1f) > ConfigManager.ItemInPocketProbability)
				{
					return;
				}
				Enumerator<uint, List<PocketItem>> enumerator = val.ItemIDToPocketItemGroup.Keys.GetEnumerator();
				while (enumerator.MoveNext())
				{
					uint current = enumerator.Current;
					groups.Add(current);
				}
				PocketItem val3 = val.ItemIDToPocketItemGroup[groups[Random.Range(0, val.ItemIDToPocketItemGroup.Count)]][0];
				groups.Clear();
				APILogger.Debug($"dropped! {val3.itemID}");
				pItemData val4 = default(pItemData);
				val4.itemID_gearCRC = val3.itemID;
				val4.slot = (InventorySlot)7;
				val4.replicatorRef = val3.replicatorRef;
				Item val5 = default(Item);
				if (!PlayerBackpackManager.TryGetItemInLevelFromItemData(val4, ref val5))
				{
					return;
				}
				ItemInLevel val6 = ((Il2CppObjectBase)val5).TryCast<ItemInLevel>();
				if ((Object)(object)val6 == (Object)null)
				{
					APILogger.Debug("Could not find pocket item.");
					return;
				}
				int instanceID = ((Object)val6).GetInstanceID();
				if (instances.ContainsKey(instanceID))
				{
					instances[instanceID].TriggerSlip();
					return;
				}
				DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(37, 2);
				defaultInterpolatedStringHandler.AppendLiteral("Could not find pocket item instance ");
				defaultInterpolatedStringHandler.AppendFormatted(instanceID);
				defaultInterpolatedStringHandler.AppendLiteral(" ");
				LG_PickupItem_Sync component = ((Component)val5).GetComponent<LG_PickupItem_Sync>();
				defaultInterpolatedStringHandler.AppendFormatted((component != null) ? new ushort?(component.m_stateReplicator.Replicator.Key) : null);
				APILogger.Debug(defaultInterpolatedStringHandler.ToStringAndClear());
			}

			[HarmonyPatch(typeof(PLOC_Downed), "CommonEnter")]
			[HarmonyPrefix]
			[HarmonyWrapSafe]
			private static void Prefix_CommonEnter(PLOC_Downed __instance)
			{
				//IL_00df: Unknown result type (might be due to invalid IL or missing references)
				//IL_00f6: Unknown result type (might be due to invalid IL or missing references)
				//IL_00ff: Unknown result type (might be due to invalid IL or missing references)
				//IL_0104: Unknown result type (might be due to invalid IL or missing references)
				//IL_0109: Unknown result type (might be due to invalid IL or missing references)
				PlayerBackpack val = default(PlayerBackpack);
				if (!((PLOC_Base)__instance).m_owner.Owner.IsLocal || ((PLOC_Base)__instance).m_owner.Owner.IsBot || !PlayerBackpackManager.TryGetBackpack(PlayerManager.GetLocalPlayerAgent().Owner, ref val))
				{
					return;
				}
				Enumerator<uint, List<PocketItem>> enumerator = val.ItemIDToPocketItemGroup.GetEnumerator();
				while (enumerator.MoveNext())
				{
					KeyValuePair<uint, List<PocketItem>> current = enumerator.Current;
					for (int i = 0; i < current.Value.Count; i++)
					{
						pitems.Add(current.Value[i]);
					}
				}
				APILogger.Debug($"Dropping {pitems.Count} pocket items.");
				Item val3 = default(Item);
				foreach (PocketItem pitem in pitems)
				{
					pItemData val2 = default(pItemData);
					val2.itemID_gearCRC = pitem.itemID;
					val2.slot = (InventorySlot)7;
					val2.replicatorRef = pitem.replicatorRef;
					if (PlayerBackpackManager.TryGetItemInLevelFromItemData(val2, ref val3))
					{
						ItemInLevel val4 = ((Il2CppObjectBase)val3).TryCast<ItemInLevel>();
						if ((Object)(object)val4 == (Object)null)
						{
							APILogger.Debug("Death - could not find pocket item.");
							return;
						}
						int instanceID = ((Object)val4).GetInstanceID();
						if (instances.ContainsKey(instanceID))
						{
							instances[instanceID].TriggerSlip();
							continue;
						}
						APILogger.Debug($"Death - could not find pocket item instance {instanceID}");
					}
				}
				pitems.Clear();
			}
		}

		private int instance;

		private GenericSmallPickupItem_Core? core;

		private LG_PickupItem_Sync? sync;

		private Rigidbody? rb;

		private CapsuleCollider? collider;

		internal static Dictionary<int, PocketItem> instances = new Dictionary<int, PocketItem>();

		private PlayerAgent? carrier;

		private bool performSlip;

		private NM_NoiseData? noise;

		private float noiseDelay;

		private static Vector3 oob = new Vector3(0f, -2000f, -2000f);

		private Vector3 oldPosition = Vector3.zero;

		private Quaternion oldRotation = Quaternion.identity;

		private float prevTime;

		private float stillTimer;

		private float timer;

		private bool visible;

		private float pingTimer;

		private void Start()
		{
			//IL_00a5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cb: Expected O, but got Unknown
			if (!((Object)(object)sync == (Object)null) && !((Object)(object)core == (Object)null))
			{
				instance = ((Object)core).GetInstanceID();
				instances.Add(instance, this);
				((Component)this).gameObject.layer = LayerManager.LAYER_DEBRIS;
				rb = ((Component)this).gameObject.AddComponent<Rigidbody>();
				collider = ((Component)this).gameObject.AddComponent<CapsuleCollider>();
				rb.drag = 0.01f;
				rb.isKinematic = true;
				rb.collisionDetectionMode = (CollisionDetectionMode)2;
				oldPosition = ((Component)core).transform.position;
				oldRotation = ((Component)core).transform.rotation;
				PhysicMaterial val = new PhysicMaterial();
				val.bounciness = 0.4f;
				val.bounceCombine = (PhysicMaterialCombine)3;
				((Collider)collider).material = val;
			}
		}

		private void Prefix_OnStatusChange(ePickupItemStatus status, pPickupPlacement placement, PlayerAgent player, bool isRecall)
		{
			//IL_00ec: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ee: Invalid comparison between Unknown and I4
			//IL_00f0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bd: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d6: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d7: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)rb == (Object)null || (Object)(object)sync == (Object)null)
			{
				return;
			}
			if (isRecall)
			{
				rb.isKinematic = true;
				return;
			}
			if ((Object)(object)carrier != (Object)null)
			{
				APILogger.Debug($"{instance} {rb.isKinematic} {performSlip}");
				if (rb.isKinematic && performSlip)
				{
					performSlip = false;
					Slip(carrier, placement.position + Vector3.up * 1.5f, placement.rotation, carrier.m_courseNode);
				}
			}
			if ((int)status == 1 && !placement.linkedToMachine)
			{
				carrier = player;
			}
			else
			{
				carrier = null;
			}
		}

		private AIG_CourseNode? GetNode(Vector3 position)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			AIG_INode val = default(AIG_INode);
			AIG_NodeCluster val2 = default(AIG_NodeCluster);
			if (AIG_GeomorphNodeVolume.TryGetNode(0, Dimension.GetDimensionFromPos(position).DimensionIndex, position, ref val, false) && AIG_NodeCluster.TryGetNodeCluster(val.ClusterID, ref val2))
			{
				if (val2.CourseNode == null)
				{
					return null;
				}
				return val2.CourseNode;
			}
			return null;
		}

		private static ItemInLevel? GetLevelItemFromItemData(pItemData itemData)
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			Item val = default(Item);
			if (!PlayerBackpackManager.TryGetItemInLevelFromItemData(itemData, ref val))
			{
				return null;
			}
			if ((Object)(object)((Il2CppObjectBase)val).TryCast<ItemInLevel>() == (Object)null)
			{
				return null;
			}
			return ((Il2CppObjectBase)val).TryCast<ItemInLevel>();
		}

		private void TriggerSlip()
		{
			//IL_006b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0070: Unknown result type (might be due to invalid IL or missing references)
			//IL_0075: Unknown result type (might be due to invalid IL or missing references)
			//IL_0089: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_009a: Unknown result type (might be due to invalid IL or missing references)
			//IL_009f: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ae: Unknown result type (might be due to invalid IL or missing references)
			//IL_00af: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bd: Unknown result type (might be due to invalid IL or missing references)
			//IL_00dc: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e1: Unknown result type (might be due to invalid IL or missing references)
			//IL_0114: Unknown result type (might be due to invalid IL or missing references)
			//IL_00f7: Unknown result type (might be due to invalid IL or missing references)
			//IL_0103: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)carrier == (Object)null))
			{
				performSlip = true;
				APILogger.Debug($"{instance} slip");
				pItemData_Custom custom = sync.m_stateReplicator.m_currentState.custom;
				LG_PickupItem_Sync? obj = sync;
				Vector3 position = ((Component)carrier).transform.position;
				Quaternion rotation = ((Component)carrier).transform.rotation;
				AIG_CourseNode courseNode = ((Agent)carrier).CourseNode;
				obj.AttemptPickupInteraction((ePickupItemInteractionType)1, (SNet_Player)null, custom, position, rotation, courseNode, false, true);
				pItemData_WithOwner val = default(pItemData_WithOwner);
				((pPlayer)(ref val.owningPlayer)).SetPlayer(SNet.LocalPlayer);
				val.data = ((Item)core).Get_pItemData();
				if (SNet.IsMaster)
				{
					PlayerBackpackManager.Current.m_removeItemPacket.Send(val, (SNet_ChannelType)2);
					PlayerBackpackManager.Current.RemoveItem(val);
				}
				else
				{
					PlayerBackpackManager.Current.m_wantToRemoveItemPacket.Send(val, (SNet_ChannelType)2, SNet.Master);
				}
			}
		}

		private void Slip(PlayerAgent player, Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_0085: Unknown result type (might be due to invalid IL or missing references)
			//IL_008c: Unknown result type (might be due to invalid IL or missing references)
			//IL_009c: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ad: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ae: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				rb.isKinematic = false;
				prevTime = Clock.Time;
				stillTimer = 0f;
				timer = 0f;
				visible = true;
				pingTimer = 0f;
				carrier = null;
				Vector3 insideUnitSphere = Random.insideUnitSphere;
				rb.velocity = Vector3.zero;
				rb.AddForce(insideUnitSphere * ConfigManager.Force);
				SetTransform(position, rotation, node);
			}
		}

		private void SetTransform(Vector3 position, Quaternion rotation, AIG_CourseNode node)
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_004c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0084: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null))
			{
				((Component)this).transform.position = position;
				((Component)this).transform.rotation = rotation;
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
		}

		private void OnCollisionStay()
		{
			//IL_0040: Unknown result type (might be due to invalid IL or missing references)
			//IL_0057: Unknown result type (might be due to invalid IL or missing references)
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0079: Unknown result type (might be due to invalid IL or missing references)
			//IL_008a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0094: Unknown result type (might be due to invalid IL or missing references)
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && rb.velocity.y > -0.3f && rb.velocity.y < 0.3f)
			{
				Rigidbody? obj = rb;
				obj.velocity *= 0.92f;
				Rigidbody? obj2 = rb;
				obj2.angularVelocity *= 0.92f;
			}
		}

		private void OnCollisionEnter()
		{
			//IL_0082: Unknown result type (might be due to invalid IL or missing references)
			//IL_0087: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0095: Unknown result type (might be due to invalid IL or missing references)
			//IL_009f: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00df: Unknown result type (might be due to invalid IL or missing references)
			//IL_00eb: Expected O, but got Unknown
			if (!((Object)(object)core == (Object)null) && !((Object)(object)sync == (Object)null) && !((Object)(object)rb == (Object)null) && !((Object)(object)collider == (Object)null) && ConfigManager.MakeNoise && !rb.isKinematic && ((ItemInLevel)core).m_courseNode != null && Clock.Time > noiseDelay)
			{
				noiseDelay = Clock.Time + 1.5f;
				noise = new NM_NoiseData
				{
					noiseMaker = null,
					position = ((Component)this).transform.position,
					radiusMin = 4f,
					radiusMax = 10f,
					yScale = 1f,
					node = ((ItemInLevel)core).m_courseNode,
					type = (NM_NoiseType)1,
					includeToNeightbourAreas = true,
					raycastFirstNode = false
				};
				NoiseManager.MakeNoise(noise);
			}
		}

		private void FixedUpdate()
		{
			//IL_004f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0060: Unknown result type (might be due to invalid IL or missing references)
			//IL_0065: Unknown result type (might be due to invalid IL or missing references)
			//IL_007b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0080: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ee: Unknown result type (might be due to invalid IL or missing references)
			//IL_013f: Unknown result type (might be due to invalid IL or missing references)
			//IL_010b: Unknown result type (might be due to invalid IL or missing references)
			//IL_02a7: Unknown result type (might be due to invalid IL or missing references)
			//IL_02ac: Unknown result type (might be due to invalid IL or missing references)
			//IL_02b3: Unknown result type (might be due to invalid IL or missing references)
			//IL_02b8: Unknown result type (might be due to invalid IL or missing references)
			//IL_02c8: Unknown result type (might be due to invalid IL or missing references)
			//IL_02cd: Unknown result type (might be due to invalid IL or missing references)
			//IL_02d2: Unknown result type (might be due to invalid IL or missing references)
			//IL_02d3: Unknown result type (might be due to invalid IL or missing references)
			//IL_0210: Unknown result type (might be due to invalid IL or missing references)
			//IL_0215: Unknown result type (might be due to invalid IL or missing references)
			//IL_0221: Unknown result type (might be due to invalid IL or missing references)
			//IL_0226: Unknown result type (might be due to invalid IL or missing references)
			//IL_0239: Unknown result type (might be due to invalid IL or missing references)
			//IL_023e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0245: Unknown result type (might be due to invalid IL or missing references)
			//IL_024a: Unknown result type (might be due to invalid IL or missing references)
			//IL_025a: Unknown result type (might be due to invalid IL or missing references)
			//IL_025f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0264: Unknown result type (might be due to invalid IL or missing references)
			//IL_0265: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ce: Unknown result type (might be due to invalid IL or missing references)
			//IL_01fd: Unknown result type (might be due to invalid IL or missing references)
			//IL_01e3: Unknown result type (might be due to invalid IL or missing references)
			//IL_01ee: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)core == (Object)null || (Object)(object)sync == (Object)null || (Object)(object)rb == (Object)null || (Object)(object)collider == (Object)null || rb.isKinematic)
			{
				return;
			}
			AIG_CourseNode node = GetNode(((Component)this).transform.position);
			bool flag = Physics.Raycast(((Component)this).transform.position, Vector3.down, 1f);
			Vector3 val = rb.velocity;
			if (((Vector3)(ref val)).sqrMagnitude < 1f && flag)
			{
				stillTimer += Clock.Time - prevTime;
			}
			else
			{
				stillTimer = 0f;
			}
			if (node != null)
			{
				((Component)this).gameObject.transform.SetParent(node.gameObject.transform);
				core.m_itemCuller.MoveToNode(node.m_cullNode, ((Component)this).transform.position);
			}
			if (stillTimer > 1f || ((Component)this).transform.position.y < -2500f)
			{
				timer = 0f;
				pingTimer = 0f;
				visible = true;
				rb.velocity = Vector3.zero;
				rb.isKinematic = true;
			}
			if (visible)
			{
				if (Clock.Time > timer)
				{
					visible = !visible;
					timer = Clock.Time + 0.02f;
				}
				if (Clock.Time > pingTimer)
				{
					pingTimer = Clock.Time + 1.5f;
					LocalPlayerAgent val2 = ((Il2CppObjectBase)PlayerManager.GetLocalPlayerAgent()).Cast<LocalPlayerAgent>();
					val2.m_pingTarget = ((Component)core).GetComponent<iPlayerPingTarget>();
					val2.m_pingPos = ((Component)this).transform.position;
					if (val2.m_pingTarget != null)
					{
						GuiManager.AttemptSetPlayerPingStatus((PlayerAgent)(object)val2, true, val2.m_pingPos, val2.