using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Logging;
using Configgy;
using UnityEngine;
using UnityEngine.SceneManagement;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("UK_PowerUtils")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("UK_PowerUtils")]
[assembly: AssemblyCopyright("Copyright © 2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("a5d0c63e-2427-4979-aa7b-5dfe78b46688")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace UK_PowerUtils;
public class Godmode_particle : MonoBehaviour
{
public enum particleType
{
classicAura,
combatAura,
sonicAura
}
public particleType currentType;
private bool spawning = true;
private bool despawning = false;
public static Godmode_particle mevar;
public float lifetimeSeconds;
private SpriteRenderer visual;
private float aliveTime = 0f;
private float aliveSecd = 0f;
private float fpsThingy = 60f / (1f / Time.deltaTime);
private NewMovement nmov;
private CameraController cc;
public GameObject thiscopy;
private bool isAgressive = false;
private Color darkRed = Color.red;
private float AggrProg = -1f;
private Color auqaColor = Color.blue;
private Dictionary<string, bool> TodoList = new Dictionary<string, bool> { { "StartedAggr", false } };
private Vector3 cosinePivot;
private void Start()
{
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0036: 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_008a: Unknown result type (might be due to invalid IL or missing references)
//IL_0143: Unknown result type (might be due to invalid IL or missing references)
//IL_014d: Unknown result type (might be due to invalid IL or missing references)
//IL_01f2: Unknown result type (might be due to invalid IL or missing references)
//IL_01f7: Unknown result type (might be due to invalid IL or missing references)
mevar = this;
visual = ((Component)this).gameObject.GetComponent<SpriteRenderer>();
if (currentType == particleType.classicAura)
{
((Component)this).transform.localScale = Vector3.one * 0.1f;
if (lifetimeSeconds * 60f < 11f)
{
lifetimeSeconds = 0f;
}
}
else if (currentType == particleType.combatAura)
{
((Component)this).transform.localScale = Vector3.one * 0.1f;
if (lifetimeSeconds * 60f < 11f)
{
lifetimeSeconds = 0f;
}
if ((Object)(object)findPrefabFromStore("MauriceRayPrefab") != (Object)null && MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies().Count > 0)
{
isAgressive = Random.Range(1, 100) <= 15;
}
AudioSource val = ((Component)this).gameObject.AddComponent<AudioSource>();
val.spatialBlend = 1f;
val.playOnAwake = false;
val.loop = false;
}
else if (currentType == particleType.sonicAura)
{
((Component)this).transform.localScale = Vector3.one * 0.1f;
if (lifetimeSeconds * 60f < 11f)
{
lifetimeSeconds = 0f;
}
if ((Object)(object)findPrefabFromStore("ElectroBeamPrefab") != (Object)null && MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies().Count > 0)
{
isAgressive = Random.Range(1, 100) <= 15;
}
AudioSource val2 = ((Component)this).gameObject.AddComponent<AudioSource>();
val2.spatialBlend = 1f;
val2.playOnAwake = false;
val2.loop = false;
cosinePivot = ((Component)this).transform.position;
}
nmov = MonoSingleton<NewMovement>.Instance;
cc = MonoSingleton<CameraController>.Instance;
darkRed.r -= 0.5f;
auqaColor.r += 0.5f;
auqaColor.g += 0.5f;
}
private void Update()
{
//IL_01f3: Unknown result type (might be due to invalid IL or missing references)
//IL_01f8: 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_008c: 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_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_0786: Unknown result type (might be due to invalid IL or missing references)
//IL_0796: Unknown result type (might be due to invalid IL or missing references)
//IL_079b: Unknown result type (might be due to invalid IL or missing references)
//IL_07a0: Unknown result type (might be due to invalid IL or missing references)
//IL_0511: Unknown result type (might be due to invalid IL or missing references)
//IL_0516: Unknown result type (might be due to invalid IL or missing references)
//IL_00c4: Unknown result type (might be due to invalid IL or missing references)
//IL_00c9: 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_0105: Unknown result type (might be due to invalid IL or missing references)
//IL_0110: Unknown result type (might be due to invalid IL or missing references)
//IL_0115: 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_0243: Unknown result type (might be due to invalid IL or missing references)
//IL_024d: Unknown result type (might be due to invalid IL or missing references)
//IL_0258: Unknown result type (might be due to invalid IL or missing references)
//IL_025d: Unknown result type (might be due to invalid IL or missing references)
//IL_055c: Unknown result type (might be due to invalid IL or missing references)
//IL_0561: Unknown result type (might be due to invalid IL or missing references)
//IL_056b: Unknown result type (might be due to invalid IL or missing references)
//IL_0576: Unknown result type (might be due to invalid IL or missing references)
//IL_057b: Unknown result type (might be due to invalid IL or missing references)
//IL_0158: Unknown result type (might be due to invalid IL or missing references)
//IL_015d: Unknown result type (might be due to invalid IL or missing references)
//IL_0163: Unknown result type (might be due to invalid IL or missing references)
//IL_0175: Unknown result type (might be due to invalid IL or missing references)
//IL_0189: 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_0199: Unknown result type (might be due to invalid IL or missing references)
//IL_0281: Unknown result type (might be due to invalid IL or missing references)
//IL_02a0: Unknown result type (might be due to invalid IL or missing references)
//IL_059f: Unknown result type (might be due to invalid IL or missing references)
//IL_05be: 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_02d7: Unknown result type (might be due to invalid IL or missing references)
//IL_02e2: Unknown result type (might be due to invalid IL or missing references)
//IL_02e7: Unknown result type (might be due to invalid IL or missing references)
//IL_0347: Unknown result type (might be due to invalid IL or missing references)
//IL_0350: Unknown result type (might be due to invalid IL or missing references)
//IL_0356: Unknown result type (might be due to invalid IL or missing references)
//IL_035d: Unknown result type (might be due to invalid IL or missing references)
//IL_0362: Unknown result type (might be due to invalid IL or missing references)
//IL_0373: Unknown result type (might be due to invalid IL or missing references)
//IL_0382: Unknown result type (might be due to invalid IL or missing references)
//IL_0396: Unknown result type (might be due to invalid IL or missing references)
//IL_03a1: Unknown result type (might be due to invalid IL or missing references)
//IL_03a6: Unknown result type (might be due to invalid IL or missing references)
//IL_0634: Unknown result type (might be due to invalid IL or missing references)
//IL_063e: Unknown result type (might be due to invalid IL or missing references)
//IL_0643: Unknown result type (might be due to invalid IL or missing references)
//IL_064a: Unknown result type (might be due to invalid IL or missing references)
//IL_064f: Unknown result type (might be due to invalid IL or missing references)
//IL_0660: Unknown result type (might be due to invalid IL or missing references)
//IL_066f: Unknown result type (might be due to invalid IL or missing references)
//IL_0689: Unknown result type (might be due to invalid IL or missing references)
//IL_068e: Unknown result type (might be due to invalid IL or missing references)
//IL_0417: Unknown result type (might be due to invalid IL or missing references)
//IL_06d2: Unknown result type (might be due to invalid IL or missing references)
//IL_06f2: Unknown result type (might be due to invalid IL or missing references)
//IL_070e: Unknown result type (might be due to invalid IL or missing references)
//IL_0713: Unknown result type (might be due to invalid IL or missing references)
//IL_046b: Unknown result type (might be due to invalid IL or missing references)
//IL_048b: Unknown result type (might be due to invalid IL or missing references)
if ((Object)(object)visual == (Object)null || (Object)(object)nmov == (Object)null || (Object)(object)cc == (Object)null || (Object)(object)((Component)this).transform == (Object)null)
{
DestroyThisCopy();
}
fpsThingy = 60f / (1f / Time.deltaTime);
if (currentType == particleType.classicAura)
{
if (aliveTime < 10f)
{
Transform transform = ((Component)this).transform;
transform.localScale += Vector3.one * 0.1f * fpsThingy;
}
if (despawning)
{
Vector3 localScale = ((Component)this).transform.localScale;
if (((Vector3)(ref localScale)).magnitude - 0.3f <= 0f)
{
DestroyThisCopy();
}
Transform transform2 = ((Component)this).transform;
transform2.localScale += new Vector3(-0.1f, -0.2f) * fpsThingy;
}
if (aliveTime > 10f && spawning)
{
spawning = false;
}
float num = aliveSecd / lifetimeSeconds;
visual.color = Color.Lerp(Color.yellow, Color.magenta, num);
Transform transform3 = ((Component)this).transform;
transform3.position += new Vector3(0f, 0.1f, 0f) * fpsThingy;
if (aliveTime > lifetimeSeconds * 60f + 10f && despawning)
{
DestroyThisCopy();
}
}
else if (currentType == particleType.combatAura)
{
Color color = visual.color;
AggrProg += Time.deltaTime;
bool flag = AggrProg >= 0f && isAgressive;
if (aliveTime < 10f)
{
Transform transform4 = ((Component)this).transform;
transform4.localScale += Vector3.one * 0.1f * fpsThingy;
}
if (despawning && !flag)
{
color.a -= 0.1f * fpsThingy;
if (visual.color.a <= 0f)
{
DestroyThisCopy();
}
Transform transform5 = ((Component)this).transform;
transform5.localScale += Vector3.one * 0.1f * fpsThingy;
}
if (aliveTime > 10f && spawning)
{
spawning = false;
}
float num2 = aliveSecd / lifetimeSeconds;
num2 *= 3f;
num2 -= Mathf.Floor(num2);
if (!flag)
{
float a = color.a;
color = Color.Lerp(Color.red, darkRed, num2);
color.a = a;
visual.color = color;
Transform transform6 = ((Component)this).transform;
transform6.position += new Vector3(0f, 0.075f, 0f) * fpsThingy;
}
else
{
if (!TodoList["StartedAggr"])
{
AudioSource component = ((Component)this).gameObject.GetComponent<AudioSource>();
component.clip = PowerUtil_Main.audioStorage["ChargeSfx"];
component.Play();
TodoList["StartedAggr"] = true;
}
visual.color = Color.yellow;
if (AggrProg >= 1f)
{
List<EnemyIdentifier> currentEnemies = MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies();
if (currentEnemies.Count > 0)
{
SpawnHitscanBeam(findPrefabFromStore("MauriceRayPrefab"), ((Component)this).transform.position, ((Component)currentEnemies[Random.Range(0, currentEnemies.Count - 1)]).transform.position);
MonoSingleton<StyleHUD>.Instance.AddPoints(500, "<color=yellow>Blasted!</color>", (GameObject)null, (EnemyIdentifier)null, -1, "", "");
}
DestroyThisCopy();
}
}
if (aliveTime > lifetimeSeconds * 60f + 10f && despawning)
{
DestroyThisCopy();
}
}
else if (currentType == particleType.sonicAura)
{
Color color2 = visual.color;
AggrProg += Time.deltaTime;
bool flag2 = AggrProg >= 0f && isAgressive;
if (aliveTime < 10f)
{
Transform transform7 = ((Component)this).transform;
transform7.localScale += Vector3.one * 0.1f * fpsThingy;
}
if (despawning && !flag2)
{
color2.a -= 0.1f * fpsThingy;
if (visual.color.a <= 0f)
{
DestroyThisCopy();
}
}
if (aliveTime > 10f && spawning)
{
spawning = false;
}
float num3 = aliveSecd / lifetimeSeconds;
num3 *= 3f;
num3 -= Mathf.Floor(num3);
if (!flag2)
{
float a2 = color2.a;
color2 = Color.Lerp(auqaColor, Color.blue, num3);
color2.a = a2;
visual.color = color2;
((Component)this).transform.position = cosinePivot + new Vector3(0f, 0f, Mathf.Cos(aliveSecd));
}
else
{
List<EnemyIdentifier> currentEnemies2 = MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies();
if (currentEnemies2.Count > 0)
{
SpawnHitscanBeam(findPrefabFromStore("ElectroBeamPrefab"), ((Component)this).transform.position, ((Component)currentEnemies2[Random.Range(0, currentEnemies2.Count - 1)]).transform.position);
Object.Instantiate<GameObject>(findPrefabFromStore("ElectroShootSfx"), ((Component)this).transform.position, Quaternion.identity);
MonoSingleton<StyleHUD>.Instance.AddPoints(500, "<color=cyan>Sonic Boom!</color>", (GameObject)null, (EnemyIdentifier)null, -1, "", "");
}
DestroyThisCopy();
}
if (aliveTime > lifetimeSeconds * 60f + 10f && despawning)
{
DestroyThisCopy();
}
}
((Component)this).transform.rotation = Quaternion.LookRotation(((Component)this).transform.position - ((Component)cc).transform.position);
aliveTime += fpsThingy;
aliveSecd += Time.deltaTime;
if (aliveTime > lifetimeSeconds * 60f && !despawning)
{
despawning = true;
}
}
private void DestroyThisCopy()
{
Object.Destroy((Object)(object)thiscopy);
}
private GameObject SpawnHitscanBeam(GameObject beam, Vector3 startPos, Vector3 endPos)
{
//IL_0008: Unknown result type (might be due to invalid IL or missing references)
//IL_0009: Unknown result type (might be due to invalid IL or missing references)
//IL_000a: Unknown result type (might be due to invalid IL or missing references)
//IL_000b: Unknown result type (might be due to invalid IL or missing references)
//IL_0010: Unknown result type (might be due to invalid IL or missing references)
//IL_0029: Unknown result type (might be due to invalid IL or missing references)
//IL_002a: Unknown result type (might be due to invalid IL or missing references)
CameraController instance = MonoSingleton<CameraController>.Instance;
GameObject val = Object.Instantiate<GameObject>(beam, startPos, Quaternion.LookRotation(endPos - startPos));
RevolverBeam val2 = default(RevolverBeam);
if (val.TryGetComponent<RevolverBeam>(ref val2))
{
val2.alternateStartPoint = startPos;
}
val.SetActive(true);
return val;
}
private byte[] LoadResourceData(string resourceType, string filenameAndExtension)
{
return File.ReadAllBytes(Path.Combine(Paths.PluginPath, "UK_PowerUtils", "assets", resourceType, filenameAndExtension));
}
private Sprite SpriteFromData(byte[] data)
{
//IL_0005: Unknown result type (might be due to invalid IL or missing references)
//IL_000b: Expected O, but got Unknown
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
Sprite val = null;
Texture2D val2 = new Texture2D(2, 2);
ImageConversion.LoadImage(val2, data);
return Sprite.Create(val2, new Rect(0f, 0f, (float)((Texture)val2).width, (float)((Texture)val2).height), new Vector2(0.5f, 0.5f));
}
private GameObject findPrefabFromStore(string prefabName)
{
if (PowerUtil_Main.prefabStorage.TryGetValue(prefabName, out var value))
{
return value;
}
return null;
}
}
public class Godmode_tool : MonoBehaviour
{
public enum actionType
{
Revenge,
Powerup,
Assist
}
public actionType currentActionType;
}
[BepInPlugin("ultrakill.exmagikguy.powerfulThings", "Power Utilities", "1.0.0")]
public class PowerUtil_Main : BaseUnityPlugin
{
[Configgable("", "Slow Motion Key", 0, "A key, that slows down everything, but you and speeds back up.")]
public static ConfigKeybind slowMoKeybind = new ConfigKeybind((KeyCode)61);
[Configgable("", "Kill ray keybind", 1, "A key, that kills any enemy you're looking at upon being pressed.")]
public static ConfigKeybind killKeybind = new ConfigKeybind((KeyCode)45);
[Configgable("", "Slow Down Percentage", 2, "Precentage the time will be scaled by upon activating slow motion.")]
[Range(1f, 99f)]
public static int slowMoPerc = 25;
[Configgable("", "<color=blue>GOD</color> mode", 3, "Toggles the mechanical deity mode . . . ?")]
public static bool ultraGod = false;
public static ConfigBuilder ConfigMenu;
public static List<float> movementDefaults = new List<float>();
public static float[] currentTimePrc = new float[5] { 100f, 100f, 0f, 0f, 0f };
public static PowerUtil_Main mevar;
public static Dictionary<Nailgun, float> nailgunRates = new Dictionary<Nailgun, float>();
public static GameObject PlayerObject;
public static Animator[] playerAnims;
public static Dictionary<string, GameObject> prefabStorage = new Dictionary<string, GameObject>();
public static bool ultraGodEffectShown = false;
private string modPath = Path.Combine(Paths.PluginPath, "UK_PowerUtils");
private string godmodeAura = "idle";
private float auraCooldown = 0f;
private float combatValue = 0f;
private float shakeNullif = 0.25f;
public static Dictionary<string, AudioClip> audioStorage = new Dictionary<string, AudioClip>();
private void Awake()
{
//IL_000b: Unknown result type (might be due to invalid IL or missing references)
//IL_0015: Expected O, but got Unknown
ConfigMenu = new ConfigBuilder("ultrakill.exmagikguy.powerfulThings", "Power Utilities");
ConfigMenu.BuildType(typeof(PowerUtil_Main));
}
private void Start()
{
((BaseUnityPlugin)this).Logger.LogInfo((object)"Modded V1 Functions: POWER Functions Initiated.");
SceneManager.sceneLoaded += OnSceneLoad;
mevar = this;
}
private void OnSceneLoad(Scene scene, LoadSceneMode mode)
{
currentTimePrc[4] = 0f;
ultraGodEffectShown = false;
}
private void Update()
{
//IL_0374: Unknown result type (might be due to invalid IL or missing references)
//IL_0498: Unknown result type (might be due to invalid IL or missing references)
//IL_04ac: Unknown result type (might be due to invalid IL or missing references)
//IL_04b8: Unknown result type (might be due to invalid IL or missing references)
//IL_04bd: Unknown result type (might be due to invalid IL or missing references)
//IL_06dc: Unknown result type (might be due to invalid IL or missing references)
//IL_06f6: Unknown result type (might be due to invalid IL or missing references)
//IL_0701: Unknown result type (might be due to invalid IL or missing references)
//IL_072c: Unknown result type (might be due to invalid IL or missing references)
//IL_0731: Unknown result type (might be due to invalid IL or missing references)
//IL_0bf1: Unknown result type (might be due to invalid IL or missing references)
//IL_0bfc: Unknown result type (might be due to invalid IL or missing references)
//IL_0c01: Unknown result type (might be due to invalid IL or missing references)
//IL_08f5: Unknown result type (might be due to invalid IL or missing references)
//IL_0909: Unknown result type (might be due to invalid IL or missing references)
//IL_090e: Unknown result type (might be due to invalid IL or missing references)
//IL_0940: Unknown result type (might be due to invalid IL or missing references)
//IL_0959: Unknown result type (might be due to invalid IL or missing references)
//IL_096b: Unknown result type (might be due to invalid IL or missing references)
//IL_0978: Unknown result type (might be due to invalid IL or missing references)
//IL_09a6: Unknown result type (might be due to invalid IL or missing references)
//IL_09b0: Unknown result type (might be due to invalid IL or missing references)
//IL_0efb: Unknown result type (might be due to invalid IL or missing references)
//IL_0f00: Unknown result type (might be due to invalid IL or missing references)
//IL_0fe3: Unknown result type (might be due to invalid IL or missing references)
//IL_0ff7: Unknown result type (might be due to invalid IL or missing references)
//IL_0ffc: Unknown result type (might be due to invalid IL or missing references)
//IL_1001: Unknown result type (might be due to invalid IL or missing references)
//IL_1006: Unknown result type (might be due to invalid IL or missing references)
//IL_0cc6: Unknown result type (might be due to invalid IL or missing references)
//IL_0cda: Unknown result type (might be due to invalid IL or missing references)
//IL_0cdf: Unknown result type (might be due to invalid IL or missing references)
//IL_0ceb: Unknown result type (might be due to invalid IL or missing references)
//IL_0d08: Unknown result type (might be due to invalid IL or missing references)
//IL_0d0d: Unknown result type (might be due to invalid IL or missing references)
//IL_0d12: Unknown result type (might be due to invalid IL or missing references)
//IL_0dca: Unknown result type (might be due to invalid IL or missing references)
//IL_0dd6: Unknown result type (might be due to invalid IL or missing references)
//IL_1082: Unknown result type (might be due to invalid IL or missing references)
//IL_1087: Unknown result type (might be due to invalid IL or missing references)
//IL_10a3: Unknown result type (might be due to invalid IL or missing references)
//IL_10a8: Unknown result type (might be due to invalid IL or missing references)
//IL_110d: Unknown result type (might be due to invalid IL or missing references)
//IL_1112: Unknown result type (might be due to invalid IL or missing references)
//IL_1193: Unknown result type (might be due to invalid IL or missing references)
//IL_11c9: Unknown result type (might be due to invalid IL or missing references)
//IL_11ce: Unknown result type (might be due to invalid IL or missing references)
//IL_1217: Unknown result type (might be due to invalid IL or missing references)
//IL_124d: Unknown result type (might be due to invalid IL or missing references)
//IL_1252: Unknown result type (might be due to invalid IL or missing references)
//IL_1298: Unknown result type (might be due to invalid IL or missing references)
//IL_12ce: Unknown result type (might be due to invalid IL or missing references)
//IL_12d3: Unknown result type (might be due to invalid IL or missing references)
NewMovement instance = MonoSingleton<NewMovement>.Instance;
combatValue = Mathf.Clamp(combatValue - Time.deltaTime, 0f, 1.6f);
auraCooldown = Mathf.Clamp(auraCooldown - Time.deltaTime, 0f, 1f / 12f);
shakeNullif = Mathf.Clamp(shakeNullif - Time.deltaTime, 0f, 0.25f);
if (currentTimePrc[4] == 0f)
{
if ((Object)(object)instance == (Object)null)
{
((BaseUnityPlugin)this).Logger.Log((LogLevel)4, (object)"POWER: No player detected");
currentTimePrc[4] = 2f;
}
else
{
movementDefaults.Add(instance.walkSpeed);
movementDefaults.Add(instance.jumpPower);
PlayerObject = GameObject.FindWithTag("Player");
if ((Object)(object)PlayerObject != (Object)null)
{
playerAnims = PlayerObject.GetComponentsInChildren<Animator>(true);
}
DefaultReferenceManager instance2 = MonoSingleton<DefaultReferenceManager>.Instance;
if ((Object)(object)instance2 != (Object)null && !prefabStorage.ContainsKey("ExplosionPrefab"))
{
prefabStorage.Add("ExplosionPrefab", instance2.explosion);
prefabStorage.Add("NukePrefab", instance2.superExplosion);
prefabStorage.Add("ProjectilePrefab", instance2.projectile);
prefabStorage.Add("ExplosiveProjPrefab", instance2.projectileExplosive);
prefabStorage.Add("YellowFlashPrefab", instance2.parryableFlash);
prefabStorage.Add("BlueFlashPrefab", instance2.unparryableFlash);
prefabStorage.Add("RadianceBurstPrefab", instance2.radianceEffect);
}
if (!prefabStorage.ContainsKey("ClassicParticlePrefab"))
{
AssetBundle val = AssetBundle.LoadFromMemory(LoadResourceData("dataBundle", "customPrefabrication.bundle"));
AssetBundle val2 = AssetBundle.LoadFromMemory(LoadResourceData("dataBundle", "customAudio.bundle"));
AssetBundle val3 = AssetBundle.LoadFromMemory(LoadResourceData("dataBundle", "custom3D_prefabrication.bundle"));
GameObject val4 = val.LoadAsset<GameObject>("ParticlePrefab");
AudioClip val5 = val2.LoadAsset<AudioClip>("blasterCharge");
if ((Object)(object)val4 != (Object)null)
{
prefabStorage.Add("ClassicParticlePrefab", val4);
prefabStorage.Add("GodmodeToolPrefab", val3.LoadAsset<GameObject>("Godmode_tool_prefab"));
}
else
{
prefabStorage.Add("ClassicParticlePrefab", null);
RemoteLog((LogLevel)4, "Couldn't load the particle prefab!");
}
if ((Object)(object)val5 != (Object)null)
{
audioStorage.Add("ChargeSfx", val5);
}
else
{
audioStorage.Add("ChargeSfx", null);
RemoteLog((LogLevel)4, "Couldn't load the audio!");
}
}
currentTimePrc[4] = 1f;
}
}
if (currentTimePrc[4] == 2f)
{
return;
}
if (shakeNullif < 0f)
{
MonoSingleton<CameraController>.Instance.StopShake();
shakeNullif = 0.25f;
}
float num = currentTimePrc[0] / 100f;
float num2 = 1f / num;
float walkSpeed = movementDefaults[0] * num2;
if (Input.GetKeyDown(((ConfigValueElement<KeyCode>)(object)slowMoKeybind).Value))
{
if (currentTimePrc[1] < 100f)
{
currentTimePrc[1] = 100f;
}
else
{
currentTimePrc[1] = slowMoPerc;
}
currentTimePrc[2] = 30f;
}
if (currentTimePrc[2] > 0f)
{
currentTimePrc[0] += (currentTimePrc[1] - currentTimePrc[0]) / 10f;
currentTimePrc[2] -= 1f;
}
else
{
currentTimePrc[0] = currentTimePrc[1];
}
if (currentTimePrc[0] < 100f)
{
Time.timeScale = num;
MonoSingleton<TimeController>.Instance.controlPitch = false;
MonoSingleton<TimeController>.Instance.SetAllPitch(num);
currentTimePrc[3] = 1f;
instance.walkSpeed = walkSpeed;
instance.jumpPower = movementDefaults[1] * num2;
if (!instance.gc.onGround)
{
Rigidbody rb = instance.rb;
rb.velocity += new Vector3(0f, -3f, 0f) * (num2 - 1f);
}
AdjustAnims(num2);
if ((Object)(object)MonoSingleton<GunControl>.Instance != (Object)null)
{
Revolver[] array = Object.FindObjectsOfType<Revolver>();
foreach (Revolver val6 in array)
{
val6.shootCharge += 200f * Time.deltaTime * (num2 - 1f);
}
Nailgun[] array2 = Object.FindObjectsOfType<Nailgun>();
foreach (Nailgun val7 in array2)
{
if (!nailgunRates.ContainsKey(val7))
{
nailgunRates.Add(val7, val7.fireRate);
continue;
}
nailgunRates.TryGetValue(val7, out var value);
val7.fireRate = value / num2;
}
MonoSingleton<WeaponCharges>.Instance.Charge((num2 - 1f) * 0.01f);
if (instance.boostCharge + 1.4285715f < 300f)
{
instance.boostCharge += 1.4285715f * (num2 - 1f);
}
else
{
instance.boostCharge = 300f;
}
FistControl instance3 = MonoSingleton<FistControl>.Instance;
instance3.fistCooldown -= 2f * (num2 - 1f);
}
}
else
{
if (currentTimePrc[3] == 1f)
{
MonoSingleton<TimeController>.Instance.controlPitch = true;
MonoSingleton<TimeController>.Instance.SetAllPitch(1f);
instance.walkSpeed = movementDefaults[0];
instance.jumpPower = movementDefaults[1];
Nailgun[] array3 = Object.FindObjectsOfType<Nailgun>();
foreach (Nailgun val8 in array3)
{
nailgunRates.TryGetValue(val8, out var value2);
val8.fireRate = value2;
}
AdjustAnims(1f);
currentTimePrc[3] = 0f;
}
if (ultraGod)
{
AdjustAnims(1f);
}
}
if (Input.GetKeyDown(((ConfigValueElement<KeyCode>)(object)killKeybind).Value))
{
RaycastHit[] array4 = Physics.RaycastAll(((Component)instance).transform.position, ((Component)instance).transform.forward, 256f);
if (array4 != null)
{
RaycastHit[] array5 = array4;
for (int l = 0; l < array5.Length; l++)
{
RaycastHit val9 = array5[l];
if ((Object)(object)((Component)((RaycastHit)(ref val9)).collider).gameObject.GetComponent<EnemyIdentifier>() != (Object)null)
{
((Component)((RaycastHit)(ref val9)).collider).gameObject.GetComponent<EnemyIdentifier>().puppet = true;
((Component)((RaycastHit)(ref val9)).collider).gameObject.GetComponent<EnemyIdentifier>().Explode(false);
break;
}
}
}
}
FistControl instance7;
if (ultraGod && (Object)(object)MonoSingleton<GunControl>.Instance != (Object)null)
{
GunControl instance4 = MonoSingleton<GunControl>.Instance;
WeaponCharges instance5 = MonoSingleton<WeaponCharges>.Instance;
bool flag = false;
if (instance5.raicharge < 5f)
{
flag = true;
}
instance5.MaxCharges();
instance5.rocketcharge += 90000f;
instance5.infiniteRocketRide = true;
instance.ResetHardDamage();
instance.currentWallJumps = 0;
instance.FullStamina();
instance.hp = Random.Range(1000000, 9999999);
((Component)instance).gameObject.layer = 15;
foreach (GameObject allWeapon in MonoSingleton<GunControl>.Instance.allWeapons)
{
if ((Object)(object)allWeapon.GetComponent<Revolver>() != (Object)null)
{
Revolver component = allWeapon.GetComponent<Revolver>();
component.shootCharge += 90000f;
if (allWeapon.activeSelf && (Object)(object)component.coin != (Object)null && MonoSingleton<InputManager>.Instance.InputSource.Fire1.IsPressed && Random.Range(0, 100) < 10)
{
float num3 = Random.Range(10f, 30f) / 30f;
GameObject val10 = Object.Instantiate<GameObject>(component.coin, ((Component)instance).transform.position + new Vector3(0f, 1.5f, 0f), Quaternion.Euler(Random.Range(1f, 359f), Random.Range(1f, 359f), Random.Range(1f, 359f)));
val10.transform.localScale = new Vector3(num3, num3, num3);
val10.GetComponent<Rigidbody>().AddForce(Vector3.up * (15f * num3));
val10.GetComponent<Coin>().sourceWeapon = allWeapon;
val10.GetComponent<Coin>().power = num3;
val10.GetComponent<Rigidbody>().angularVelocity = Vector3.forward * 100f;
if (!prefabStorage.ContainsKey("CoinPrefab"))
{
prefabStorage.Add("CoinPrefab", component.coin);
}
}
}
else if (!prefabStorage.ContainsKey("GrenadePrefab") && (Object)(object)allWeapon.GetComponent<Shotgun>() != (Object)null && (Object)(object)allWeapon.GetComponent<Shotgun>().grenade != (Object)null)
{
prefabStorage.Add("GrenadePrefab", allWeapon.GetComponent<Shotgun>().grenade);
}
else if ((Object)(object)allWeapon.GetComponent<Nailgun>() != (Object)null)
{
allWeapon.GetComponent<Nailgun>().fireRate = 0.01f;
}
else if ((!prefabStorage.ContainsKey("ElectroBeamPrefab") || !prefabStorage.ContainsKey("MauriceRayPrefab")) && (Object)(object)allWeapon.GetComponent<Railcannon>() != (Object)null && (Object)(object)allWeapon.GetComponent<Railcannon>().beam != (Object)null)
{
Railcannon component2 = allWeapon.GetComponent<Railcannon>();
if (component2.variation == 0 && !prefabStorage.ContainsKey("ElectroBeamPrefab"))
{
prefabStorage.Add("ElectroBeamPrefab", component2.beam);
prefabStorage.Add("ElectroShootSfx", component2.fireSound);
}
else if (component2.variation == 2 && !prefabStorage.ContainsKey("MauriceRayPrefab"))
{
prefabStorage.Add("MauriceRayPrefab", component2.beam);
}
}
else if ((Object)(object)allWeapon.GetComponent<RocketLauncher>() != (Object)null)
{
RocketLauncher component3 = allWeapon.GetComponent<RocketLauncher>();
if (allWeapon.activeSelf && MonoSingleton<InputManager>.Instance.InputSource.Fire1.IsPressed)
{
component3.Shoot();
}
}
}
Projectile[] array6 = Object.FindObjectsOfType<Projectile>();
foreach (Projectile val11 in array6)
{
float num4 = 5f;
if (Vector3.SqrMagnitude(((Component)val11).transform.position - ((Component)instance).transform.position) <= num4 * num4)
{
GodParryProjectile(val11);
}
}
if (flag)
{
List<EnemyIdentifier> currentEnemies = MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies();
if (currentEnemies.Count < 1)
{
return;
}
if ((Object)(object)instance4.currentWeapon.GetComponent<Railcannon>() != (Object)null)
{
if (instance4.currentWeapon.GetComponent<Railcannon>().variation == 0)
{
foreach (EnemyIdentifier item in currentEnemies)
{
SpawnHitscanBeam(findPrefabFromStore("ElectroBeamPrefab"), ((Component)item).transform.position + new Vector3(0f, 1000f, 0f), ((Component)item).transform.position);
Object.Instantiate<GameObject>(findPrefabFromStore("BlastwavePrefab"), ((Component)item).transform.position, Quaternion.Euler(Vector3.zero)).SetActive(true);
MonoSingleton<StyleHUD>.Instance.AddPoints(Mathf.RoundToInt(item.health) * 10, "<color=cyan>Thunder God!</color>", (GameObject)null, (EnemyIdentifier)null, -1, "", "");
item.puppet = true;
item.Explode(false);
}
}
else if (instance4.currentWeapon.GetComponent<Railcannon>().variation == 2)
{
foreach (EnemyIdentifier item2 in currentEnemies)
{
Object.Instantiate<GameObject>(findPrefabFromStore("NukePrefab"), ((Component)item2).transform.position, ((Component)item2).transform.rotation).SetActive(true);
MonoSingleton<StyleHUD>.Instance.AddPoints(Mathf.RoundToInt(item2.health) * 10, "<color=yellow>Neculear!</color>", (GameObject)null, (EnemyIdentifier)null, -1, "", "");
item2.puppet = true;
item2.Explode(false);
}
}
else if (instance4.currentWeapon.GetComponent<Railcannon>().variation == 1)
{
foreach (EnemyIdentifier item3 in currentEnemies)
{
MonoSingleton<StyleHUD>.Instance.AddPoints(Mathf.RoundToInt(item3.health) * 10, "<color=red>Bloody Rain!</color>", (GameObject)null, (EnemyIdentifier)null, -1, "", "");
item3.puppet = true;
item3.Explode(false);
}
}
}
MonoSingleton<TimeController>.Instance.SlowDown(0.01f);
}
InputManager instance6 = MonoSingleton<InputManager>.Instance;
instance7 = MonoSingleton<FistControl>.Instance;
FistActions fist = instance6.InputSource.Actions.Fist;
if (((FistActions)(ref fist)).PunchKnuckleblaster.WasPerformedThisFrame() || (PlayerPrefs.GetInt("CurArm") == 1 && instance6.InputSource.Punch.WasPerformedThisFrame))
{
GameObject val12 = findPrefabFromStore("GrenadePrefab");
if ((Object)(object)val12 != (Object)null)
{
BuckshotFromCamera(val12, 6, 40f, 35f);
}
}
if (!prefabStorage.ContainsKey("BlastwavePrefab"))
{
instance7.ForceArm(1, false);
if ((Object)(object)instance7.currentPunch.blastWave != (Object)null)
{
prefabStorage.Add("BlastwavePrefab", instance7.currentPunch.blastWave);
}
}
if (!ultraGodEffectShown)
{
Object.Instantiate<GameObject>(findPrefabFromStore("RadianceBurstPrefab"), ((Component)instance).transform.position + new Vector3(0f, 1f, 0f), Quaternion.Euler(Vector3.zero));
ultraGodEffectShown = true;
return;
}
if (instance6.InputSource.Fire1.IsPressed || instance6.InputSource.Fire2.IsPressed)
{
combatValue += Time.deltaTime * 1.3f;
}
if (!instance6.InputSource.Punch.WasPerformedThisFrame)
{
fist = instance6.InputSource.Actions.Fist;
if (!((FistActions)(ref fist)).PunchKnuckleblaster.WasPerformedThisFrame())
{
fist = instance6.InputSource.Actions.Fist;
if (!((FistActions)(ref fist)).PunchFeedbacker.WasPerformedThisFrame())
{
goto IL_10d7;
}
}
}
combatValue += Time.deltaTime + 0.2f;
goto IL_10d7;
}
ultraGodEffectShown = false;
return;
IL_10d7:
if ((Object)(object)instance7 == (Object)null || auraCooldown > 0f)
{
return;
}
godmodeAura = "idle";
Vector3 velocity = instance.rb.velocity;
if (((Vector3)(ref velocity)).magnitude >= 50f)
{
godmodeAura = "speedCharge";
}
if (combatValue > 0f)
{
godmodeAura = "combat";
}
float num5 = RandRange(0f, 1000f);
if (godmodeAura == "idle")
{
if (num5 < 300f)
{
SpawnGodParticle(((Component)instance).transform.position + new Vector3(RandRange(-15f, 15f) / 10f, 0f, RandRange(-15f, 15f) / 10f));
}
}
else if (godmodeAura == "combat")
{
if (num5 < 400f)
{
SpawnGodParticle(((Component)instance).transform.position + new Vector3(RandRange(-15f, 15f) / 10f, 0f, RandRange(-15f, 15f) / 10f), "angerParticle.png", Godmode_particle.particleType.combatAura, 3f);
}
}
else if (godmodeAura == "speedCharge" && num5 < 550f)
{
SpawnGodParticle(((Component)instance).transform.position + new Vector3(RandRange(-15f, 15f) / 10f, 0f, RandRange(-15f, 15f) / 10f), "sonicParticle.png", Godmode_particle.particleType.sonicAura);
}
auraCooldown = 1f / 12f;
}
private void GodParryProjectile(Projectile collPro)
{
//IL_00a4: Unknown result type (might be due to invalid IL or missing references)
//IL_00ae: Expected O, but got Unknown
//IL_00eb: 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_0102: Unknown result type (might be due to invalid IL or missing references)
if (ultraGod && (Object)(object)collPro != (Object)null && !collPro.friendly)
{
Rigidbody component = ((Component)collPro).gameObject.GetComponent<Rigidbody>();
collPro.hittingPlayer = false;
collPro.friendly = true;
collPro.explosionEffect = Object.FindObjectOfType<Punch>().parriedProjectileHitObject;
collPro.precheckForCollisions = true;
collPro.damage = 50000f;
List<EnemyIdentifier> currentEnemies = MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies();
if (currentEnemies.Count > 0)
{
collPro.target = new EnemyTarget(((Component)currentEnemies[Random.Range(0, currentEnemies.Count - 1)]).gameObject.transform);
}
component.useGravity = false;
if ((Object)(object)collPro.target.targetTransform != (Object)null)
{
((Component)collPro).transform.LookAt(collPro.target.targetTransform);
}
component.velocity = ((Component)collPro).transform.forward * 15f;
collPro.homingType = (HomingType)1;
}
}
private void AdjustAnims(float aspd)
{
if ((Object)(object)PlayerObject == (Object)null)
{
return;
}
Animator[] array = playerAnims;
foreach (Animator val in array)
{
float num = 1f;
if (ultraGod)
{
num = 5f;
}
val.speed = aspd * num;
}
}
public static void RemoteLog(LogLevel level, object log)
{
//IL_000b: Unknown result type (might be due to invalid IL or missing references)
((BaseUnityPlugin)mevar).Logger.Log(level, log);
}
private void BuckshotFromCamera(GameObject obj, int count, float spread, float velocity)
{
//IL_001d: Unknown result type (might be due to invalid IL or missing references)
//IL_0022: Unknown result type (might be due to invalid IL or missing references)
//IL_005d: Unknown result type (might be due to invalid IL or missing references)
//IL_0062: Unknown result type (might be due to invalid IL or missing references)
//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_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_007c: Unknown result type (might be due to invalid IL or missing references)
//IL_0081: 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_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_00be: Unknown result type (might be due to invalid IL or missing references)
if ((Object)(object)obj == (Object)null)
{
return;
}
NewMovement instance = MonoSingleton<NewMovement>.Instance;
Vector3 forward = ((Component)instance).transform.forward;
for (int i = 0; i < count; i++)
{
float num = Random.Range((0f - spread) / 2f, spread / 2f);
float num2 = Random.Range(0f, spread / 2f);
Quaternion val = Quaternion.Euler(0f, num, num2) * Quaternion.LookRotation(forward);
GameObject val2 = Object.Instantiate<GameObject>(obj, ((Component)instance).transform.position + forward, val);
Rigidbody component = val2.GetComponent<Rigidbody>();
if ((Object)(object)component != (Object)null)
{
component.velocity = val * Vector3.forward * (velocity * (float)(Random.Range(5, 20) / 10));
}
}
}
private GameObject findPrefabFromStore(string prefabName)
{
if (prefabStorage.TryGetValue(prefabName, out var value))
{
return value;
}
return null;
}
private GameObject SpawnHitscanBeam(GameObject beam, Vector3 startPos, Vector3 endPos)
{
//IL_0008: Unknown result type (might be due to invalid IL or missing references)
//IL_0009: Unknown result type (might be due to invalid IL or missing references)
//IL_000a: Unknown result type (might be due to invalid IL or missing references)
//IL_000b: Unknown result type (might be due to invalid IL or missing references)
//IL_0010: Unknown result type (might be due to invalid IL or missing references)
//IL_0029: Unknown result type (might be due to invalid IL or missing references)
//IL_002a: Unknown result type (might be due to invalid IL or missing references)
CameraController instance = MonoSingleton<CameraController>.Instance;
GameObject val = Object.Instantiate<GameObject>(beam, startPos, Quaternion.LookRotation(endPos - startPos));
RevolverBeam val2 = default(RevolverBeam);
if (val.TryGetComponent<RevolverBeam>(ref val2))
{
val2.alternateStartPoint = startPos;
}
val.SetActive(true);
return val;
}
private byte[] LoadResourceData(string resourceType, string filenameAndExtension)
{
return File.ReadAllBytes(Path.Combine(modPath, "assets", resourceType, filenameAndExtension));
}
private Sprite SpriteFromData(byte[] data)
{
//IL_0005: Unknown result type (might be due to invalid IL or missing references)
//IL_000b: Expected O, but got Unknown
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
Sprite val = null;
Texture2D val2 = new Texture2D(2, 2);
ImageConversion.LoadImage(val2, data);
return Sprite.Create(val2, new Rect(0f, 0f, (float)((Texture)val2).width, (float)((Texture)val2).height), new Vector2(0.5f, 0.5f));
}
private GameObject SpawnGodParticle(Vector3 position, string spriteName = "starParticle.png", Godmode_particle.particleType type = Godmode_particle.particleType.classicAura, float lifetime = 2f)
{
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0021: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
GameObject val = findPrefabFromStore("ClassicParticlePrefab");
if ((Object)(object)val == (Object)null)
{
return null;
}
GameObject val2 = Object.Instantiate<GameObject>(val, position, Quaternion.Euler(Vector3.zero));
if (spriteName != "starParticle.png")
{
GameObjectExtensions.GetOrAddComponent<SpriteRenderer>(val2).sprite = SpriteFromData(LoadResourceData("image", spriteName));
}
GameObjectExtensions.GetOrAddComponent<Godmode_particle>(val2).currentType = type;
val2.GetComponent<Godmode_particle>().lifetimeSeconds = lifetime;
val2.GetComponent<Godmode_particle>().thiscopy = val2;
val2.SetActive(true);
if ((Object)(object)val2 != (Object)null)
{
return val2;
}
return null;
}
private float RandRange(float min, float max)
{
return Random.Range(min, max);
}
private Quaternion ZeroRotation()
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_000b: Unknown result type (might be due to invalid IL or missing references)
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
return Quaternion.Euler(Vector3.zero);
}
private void PrintComponentsOf(GameObject obj)
{
RemoteLog((LogLevel)16, "Components Of " + ((Object)obj).name + ":");
Component[] components = obj.GetComponents<Component>();
foreach (Component val in components)
{
RemoteLog((LogLevel)16, ((object)val).GetType().ToString() + "'s vars:");
FieldInfo[] fields = ((object)val).GetType().GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
foreach (FieldInfo fieldInfo in fields)
{
if (fieldInfo.GetValue(val).GetType().IsSerializable)
{
RemoteLog((LogLevel)16, $"{fieldInfo.Name} = {fieldInfo.GetValue(val)}");
}
else
{
RemoteLog((LogLevel)16, $"{fieldInfo.Name} = {fieldInfo.GetValue(val).GetType()} object");
}
}
}
}
}