miso-xyz / MutationCleaner

Mod of DevT02's Point Mutation Remover. Now supports TimeSpan Mutations & Simple Math Calculations, also has a better CUI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PointMutationRemover

This remover removes 2d point mutations. It's very basic so there is a slight possibility of it not working with some. Just a warning, BIN/DEBUG is NOT UPDATED by me anymore! Head on over to releases if you really want the new stuff m8

Mod Improvements

- Can now clean TimeSpan Mutations
- Solve simple math calculations
- Improvements on CUI

How to use

Drag & Drop to remove Point & TimeSpan Mutations

Code Examples

Point Mutation Example:

// Before
int test = new Point(123, 312).X
Console.WriteLine(test);

// After
int test = 123;
Console.WriteLine(test);

TimeSpan Mutation Example:

// Before
this.button2.Size = new Size((int)new TimeSpan(0xF, 0x30, 0xB40, 0xC).TotalDays + 1, 0x13 + (((int)new TimeSpan(0x1C5, 0x30, 0xB40, 0xC).TotalDays < 0x418) ? 1 : 0));

// After
this.button2.Size = new Size(0x13 + 1, 0x13 + ((0x1C9 < 0x418) ? 1 : 0));

Simple Math Solver Example:

PS: It does not support variable-based calculations

// Before
this.ProgressBar1.Value = 8 + 9
this.ProgressBar2.Value = 8 - 9
this.ProgressBar3.Value = 8 * 9
this.ProgressBar4.Value = 8 ^ 9

// After
this.ProgressBar1.Value = 17
this.ProgressBar2.Value = -1
this.ProgressBar3.Value = 72
this.ProgressBar4.Value = 1

Screenshot

app

(v1.0 screenshot)

app

Credits

About

Mod of DevT02's Point Mutation Remover. Now supports TimeSpan Mutations & Simple Math Calculations, also has a better CUI


Languages

Language:C# 100.0%