sure Cr0 you can change it
that number what it does is tell cheat engine "hey look for an empty block of memory that is MINIMUM 1024 Bytes or 400 in Hex"
Ideally that number should be the amount of bytes your script is going to take up
Ok now look at this:
Code:
03DF0000 - 83 78 08 01 - cmp dword ptr [eax+08],01 //4Bytes
03DF0004 - 75 12 - jne 03df0018 //2Bytes
03DF0006 - 90 - nop //1Bytes
03DF0007 - 90 - nop //1Bytes
03DF0008 - 90 - nop //1Bytes
03DF0009 - 90 - nop //1Bytes
03DF000A - c7 40 08 11 00 00 00 - mov [eax+08],00000011 //7Bytes
03DF0011 - c7 40 10 11 00 00 00 - mov [eax+10],00000011 //7Bytes
03DF0018 - 83 78 08 02 - cmp dword ptr [eax+08],02 //4Bytes
03DF001C - 75 12 - jne 03df0030 //2Bytes
03DF001E - 90 - nop //1Bytes
03DF001F - 90 - nop //1Bytes
03DF0020 - 90 - nop //1Bytes
03DF0021 - 90 - nop //1Bytes
03DF0022 - c7 40 08 12 00 00 00 - mov [eax+08],00000012 //7Bytes
03DF0029 - c7 40 10 12 00 00 00 - mov [eax+10],00000012 //7Bytes
03DF0030 - 83 78 08 13 - cmp dword ptr [eax+08],13 //4Bytes
03DF0034 - 0f 84 c0 a0 73 fc - je 0052a0fa //6Bytes
03DF003A - e9 2a a0 73 fc - jmp 0052a069 //5Bytes
each two hex numbers is 1 byte as I hope you already know (00 to FF) is 1 byte
so you can just count and 4+2+1+1+1+1+7+7+4+2+1+1+1+1+7+7+4+6+5 =...uhh 63
the real number that should be instead of the 1024 is 63
but if you put a size smaller than that is doesn't really matter becuase CE will still find an empty block biger than what you told it
like even tho you tell it to find a 63 byte block it will probably still use a 500 or so byte block
@mitricman94
Read the "Instructions for changing values being used by a script" back in the first post.
I wrote it for a reason...