22 Aug 11, 01:15AM
(This post was last modified: 22 Aug 11, 01:43AM by Ronald_Reagan.)
Round 1:
Sens 6
Acc 54.1
Round 2:
Sens 4.31
Acc 54.9
Round 3: (w/o nades)
Sens 5.19
Acc 55.4
I will do some more shortly, and just update this post.
Also, I added a couple lines to your code.
And to help debug a bit:
Sens 6
Acc 54.1
[SELECT ALL] Code:
0 12.0141
1 11.7735
11.2525
Coefficients Found: in the form a*x+b*y....+bias
4.31282142857142
Round 2:
Sens 4.31
Acc 54.9
[SELECT ALL] Code:
0 9.49776
1 9.40082
9.20709
Coefficients Found: in the form a*x+b*y....+bias
5.1916806722689
Round 3: (w/o nades)
Sens 5.19
Acc 55.4
[SELECT ALL] Code:
0 6.20236
1 5.99026
5.61178
Coefficients Found: in the form a*x+b*y....+bias
3.5002569373073
I will do some more shortly, and just update this post.
Also, I added a couple lines to your code.
[SELECT ALL] Code:
if(d->state!=CS_ALIVE) continue;
if(!player1->attacking) continue;
if(player1->weaponsel->type == 8) continue; //This one is added
[SELECT ALL] Code:
std::ofstream a_file ( "mousedata.txt" ,std::ios::app);
conoutf("writing to mousedata.txt"); //This one is added
a_file << x << " " << player1->yaw << " " << dyaw << " " << sensitivity << std::endl;
a_file.close();