void Nop(IntPtr adress, int size)
        {
            MemoryEditor editor = new MemoryEditor(cancerGame);

            byte[] nopArray = new byte[3];
            for (int i = 0; i < size; i++)
            {
                nopArray[i] = 0x90;
            }

            //fixing this dirty because Adverti.. didn't fix his code LUUL
            try
            {
                editor.Write <byte[]>(adress, nopArray);
            }
            catch (TypeNotSupportedException) { }
        }