| » Stats |
Members: 103,881
Threads: 85,025
Posts: 1,031,308
Top Poster: Karky (9,548) | | Welcome to our newest member, cemerlang | |
If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.
 | |
11-19-2005, 02:25 AM
|
quick question ca, pa Post #11 | | Registered User
Join Date: Apr 2007
Posts: 0
Rep Power: 0 |
Shifan, about those abilities that aren't affected by CA, i think in FM06 they are qualified "absolute" and those affected by CA are qualified "relative".
Here's a table tht i wrote from datas found in several posts and, mostly, from MV guide. http://img294.imageshack.us/img294/6076/attributesasbrel7bk.th.png
After some experiences it seems that determination and consistency can improve too, my guessing, thanks to the good "Coaching Mental" attributes of the staffs.
Jan
|
| |
11-19-2005, 10:51 AM
|
quick question ca, pa Post #12 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 |
Jan, good work m8!
hope someone can tell the range of attribute or the way of calculation.
|
| |
12-17-2005, 06:25 PM
|
quick question ca, pa Post #13 | | Newb
Join Date: Sep 2007
Posts: 0
Rep Power: 0 |
I am still working on the relative attribute calculation from relative ranges to display values.
However in FM 2006 the absolute attributes are not stored in 0-20 form, so you need to convert those too into display format, here is the code for it:
<pre class="ip-ubbcode-code-pre">BYTE CalculateAbsAttribute ( char iReal ){ if ( iReal < 8 )return 1; if ( iReal < 13 )return 2; if ( iReal < 18 )return 3; if ( iReal < 23 )return 4; if ( iReal < 28 )return 5; if ( iReal < 33 )return 6; if ( iReal < 38 )return 7; if ( iReal < 43 )return 8; if ( iReal < 48 )return 9; if ( iReal < 53 )return 10; if ( iReal < 58 )return 11; if ( iReal < 63 )return 12; if ( iReal < 68 )return 13; if ( iReal < 73 )return 14; if ( iReal < 78 )return 15; if ( iReal < 83 )return 16; if ( iReal < 88 )return 17; if ( iReal < 93 )return 18; if ( iReal < 98 )return 19; return 20;}</pre>
|
| |
12-17-2005, 06:37 PM
|
quick question ca, pa Post #14 | | Newb
Join Date: Sep 2007
Posts: 0
Rep Power: 0 | Quote:
Originally posted by Peter Cseke:
<pre class="ip-ubbcode-code-pre">BYTE CalculateAbsAttribute ( char iReal ){ if ( iReal < 8 )return 1; if ( iReal < 13 )return 2; if ( iReal < 18 )return 3; if ( iReal < 23 )return 4; if ( iReal < 28 )return 5; if ( iReal < 33 )return 6; if ( iReal < 38 )return 7; if ( iReal < 43 )return 8; if ( iReal < 48 )return 9; if ( iReal < 53 )return 10; if ( iReal < 58 )return 11; if ( iReal < 63 )return 12; if ( iReal < 68 )return 13; if ( iReal < 73 )return 14; if ( iReal < 78 )return 15; if ( iReal < 83 )return 16; if ( iReal < 88 )return 17; if ( iReal < 93 )return 18; if ( iReal < 98 )return 19; return 20;}</pre>
| To make it shorter:
<pre class="ip-ubbcode-code-pre">BYTE CalculateAbsAttribute ( char iReal ){ if ( iReal < 8 )return 1; if ( iReal > 97 )return 20; return ((int)iReal+2)/5;}</pre>
|
| |
12-18-2005, 09:06 AM
|
quick question ca, pa Post #15 | | Newb
Join Date: Sep 2007
Posts: 0
Rep Power: 0 |
Also an injured status can affect the value of the displayed attribute, this is a function that seems pretty accurate to me in FM 2006 for relative attributes:
<pre class="ip-ubbcode-code-pre">BYTE CalculateRelAbility ( int i, int iReal ){int iTemp;iTemp = ( ( iReal * 2 ) + GAMEDB_Staff[i].pPlayer->uAbilityCurrent + 9 ) / 10; if ( iTemp < 1 )return 1; if ( iTemp > 20 )return 20; return iTemp;}</pre>
|
| |
12-18-2005, 09:08 AM
|
quick question ca, pa Post #16 | | Newb
Join Date: Sep 2007
Posts: 0
Rep Power: 0 | Quote:
Originally posted by Peter Cseke:
Also an injured status can affect the value of the displayed attribute, this is a function that seems pretty accurate to me in FM 2006 for relative attributes:
<pre class="ip-ubbcode-code-pre">BYTE CalculateRelAttribute ( int i, int iReal ){ int iTemp; iTemp = ( ( iReal * 2 ) + GAMEDB_Staff[i].pPlayer->uAbilityCurrent + 9 ) / 10; if ( iTemp < 1 )return 1; if ( iTemp > 20 )return 20; return iTemp;}</pre>
| Indent fixed.
|
| |
12-19-2005, 12:36 AM
|
quick question ca, pa Post #17 | | Newb
Join Date: Jun 2007
Posts: 0
Rep Power: 0 |
none of these give values that match up in game for me - they are always out by 1 or 2 and never consistent (ie an absolute value of 29 is 5 for one player and 6 for another)
|
| |
12-19-2005, 06:11 AM
|
quick question ca, pa Post #18 | | Newb
Join Date: Sep 2007
Posts: 0
Rep Power: 0 | Quote:
Originally posted by littleblue50:
none of these give values that match up in game for me - they are always out by 1 or 2 and never consistent (ie an absolute value of 29 is 5 for one player and 6 for another)
| In my games for 29 I get 5 if:
1) the player is injure
2) the player is very young
3) the player is very old
I guess there are some other factors that can influence the value (like I said when posting the relative formula, that too can be influenced) and the display value can be a little lower in such cases.
Another interesting thing - when I was researching the formula for relative attributes, I saw a goalkeeper who had 10 in 'Command of Area' in his profile, but when I was shortlisting goalkeepers with same CA, and selecting to view the goalkeepeing attritbutes, it said 9 in that screen, so not even the in-game formula is the same every time - though this might be a bug. :eek:
|
| |
12-19-2005, 07:15 AM
|
quick question ca, pa Post #19 | | Newb
Join Date: Sep 2007
Posts: 0
Rep Power: 0 | Quote:
Originally posted by Peter Cseke:
<BLOCKQUOTE>Originally posted by littleblue50:
none of these give values that match up in game for me - they are always out by 1 or 2 and never consistent (ie an absolute value of 29 is 5 for one player and 6 for another)
| In my games for 29 I get 5 if:
1) the player is injure
2) the player is very young
3) the player is very old
I guess there are some other factors that can influence the value (like I said when posting the relative formula, that too can be influenced) and the display value can be a little lower in such cases.
Another interesting thing - when I was researching the formula for relative attributes, I saw a goalkeeper who had 10 in 'Command of Area' in his profile, but when I was shortlisting goalkeepers with same CA, and selecting to view the goalkeepeing attritbutes, it said 9 in that screen, so not even the in-game formula is the same every time - though this might be a bug. :eek: </BLOCKQUOTE>
Also re-reading your original post, there is something I don't understand - you say the values are always out by 1 or 2 and then you give an example where the value is out by 1 (5 for 29) or is the same (6 for 29), which contradicts it being out by 2 and also contradicts the word alwayws.
After I wrote the two formulas, I added them to my tool, I printed out attributes of all players, and started to make random test (since I was aware of the above mentioned 3 points, only with players who were not injured and not under 20 or over 35) and all attributes were the same on the profile screen with what I printed out.
I will surely check other players in the future, but I don't currently have the time, but if you can find out about what those players have in common, please let me know.
|
| |
12-19-2005, 10:12 AM
|
quick question ca, pa Post #20 | | Newb
Join Date: Jun 2007
Posts: 0
Rep Power: 0 |
I apologise for using the word always, but it was a typo. I have checked about 100 players using my tool using the formulas provided here and out of those 100-odd, less than 10 are the same as the in-game values. most are out by 1 or 2 (usually 1)
|
| |  | | | Thread Tools | | | | Display Modes | Linear Mode |
More threads of unleashed | | Thread | Date | Forum | Replies | Last Post | Amazing tactic for keaping the score
Amazing tactic for keaping the score: Hey!
I have always been strugling to keep my...
| 12-13-2006 | Tactics & Training Tips | 5 | 12-13-2006 09:44 PM | profile picture
profile picture: Hi
how do I put my picture to manager profile? ...
| 11-02-2006 | Skinning Hideout | 0 | 11-02-2006 09:04 PM | Sponsor money amount
Sponsor money amount: Hi,
Anyone knows where to change the amount...
| 08-29-2006 | Skinning Hideout | 2 | 08-29-2006 04:38 PM | quick question ca, pa
quick question ca, pa: What does the curent ability and potential...
| 11-17-2005 | Skinning Hideout | 30 | 01-18-2006 06:08 AM | start unenployed or got sacked
start unenployed or got sacked: Hi,
I brought a club from the lowest german...
| 11-14-2005 | Scout Report | 7 | 11-14-2005 11:44 PM |
Other threads in forum Skinning Hideout | | Thread | Date | Thread Starter | Replies | Last Post | New 3DGT Kit Request!!
New 3DGT Kit Request!!: first of all i really appreciate who makes the...
| 05-07-2007 | Tranceology | 2 | 05-07-2007 05:37 AM | HELP WITH GRAPHICS
HELP WITH GRAPHICS: I have bin extracting graphics properly to my...
| 04-06-2007 | Bombchu | 2 | 04-06-2007 06:20 PM | Editing - Which stats should be low?
Editing - Which stats should be low?: Where if someone were for some reason want a...
| 01-30-2007 | Xabi17 | 1 | 01-30-2007 08:50 PM | Export from broken DB
Export from broken DB: Hi (about FM 2005)
Since it was the first i...
| 09-25-2005 | Wei-Zhi-Hui | 3 | 09-25-2005 10:33 PM | Pregame structure
Pregame structure: Has anybody ANY information about the pregame...
| 07-08-2005 | Stefan de Vogelaere | 11 | 07-11-2005 10:07 AM | | » Online Users: 28 | | 0 members and 28 guests | | No Members online | | Most users ever online was 2,128, 07-21-2008 at 08:27 PM. | |