
Originally Posted by
lemoniscool
its a nice tool but why dont you just tell the people how to "calculate" it theirselfes? if you think of it as 4 values combined in one it takes less than a minute to figure out that its 3 times 4 bytes (one for every + rate) shown as a 4byte decimal value ^^
(for those who didnt understand it here is an example .. +1-+4 should get the values 100, 100 in hexadecimal is 64 so the hexadecimal value would be 64646464 if you want them all on 100 .. converted to decimal 64646464 equals 1684300900 which is Param1 then you can check it with this tool if you dont believe me, put 100 in every field of +1 till +4 copy Param1 into your windows calculator in programmer mode then check "Hex" it will show 64646464)
nevertheless i like the simplicity of this tool and the possibility to show default values, great work anyways!
yeah, I know it is not hard to calculate, I was just really bored, and had some fun creating this tool :)
the actual calculating is this: (I used different in the tool, I found that easier way some days ago)
Code:
private int EncParams(int First, int Second, int Third, int Fourth)
{
return (int)(First * Math.Pow(2, 24) + Second * Math.Pow(2, 16) + Third * Math.Pow(2, 8) + Fourth);
}

Originally Posted by
Right
not exactly 2x, I dont know the exact rates, but these are only the lucky powder params, note that without it they have a chance of success too