n_t_a_l_e_x
03-04-2002, 12:31:PM
Someone advised to switch off a parameter STAR ABILITY, but I didn’t find this parameter in ini.big,
so I suggests my way how to remove it.
In ini.big there are 5 parameters, which may create fire trail:
- shooting
- passing
- speed
- tackle
- save
The last two were disabled by developers.
To switch off a fire ball you have to change the variables, which are responsible for trails. Let’s see it on example of shooting:
// Shooting
[SMOVE_SHOOT]
NUM_TRAILS = 3
TRAIL_0 = Vr{0};Tx{tac1};SC{230,240,210,80};EC{175,200,150,9 0};SS{10.0,10.0};ES{0.0,0.0};V{0,0,0};In{-1};Tm{10};Pv{0,0,0};Vv{0,0,0}
TRAIL_1 = Vr{0};Tx{crcl};SC{250,255,20,20};EC{250,240,20,20} ;SS{5.0,5.0};ES{1.0,1.0};V{0,0,0};In{-1};Tm{8};Pv{0,0,0};Vv{0,0,0}
TRAIL_2 = Vr{0};Tx{crcl};SC{50,200,200,200};EC{0,100,100,100 };SS{15.0,15.0};ES{0.0,0.0};V{0,0,0};In{-1};Tm{15};Pv{0,0,0};Vv{0,0,0}
If we change NUM_TRAILS = 3 to NUM_TRAILS = 0 – than no more fire trail at shooting.
Same with passing and speed:
// Passing
[SMOVE_PASS]
NUM_TRAILS = 0
// Speed
[SMOVE_SPEED]
NUM_TRAILS = 0
As for superman heading - in fifawcdemo.exe there are two variables, which
responsible for it:
- super_header
- extraheaderpower
Think in final version nobody will remove it L
Only if developers will add these variables to ini.big, we’ll
get a possibility to switch off this stupid super heading.
ntalex
so I suggests my way how to remove it.
In ini.big there are 5 parameters, which may create fire trail:
- shooting
- passing
- speed
- tackle
- save
The last two were disabled by developers.
To switch off a fire ball you have to change the variables, which are responsible for trails. Let’s see it on example of shooting:
// Shooting
[SMOVE_SHOOT]
NUM_TRAILS = 3
TRAIL_0 = Vr{0};Tx{tac1};SC{230,240,210,80};EC{175,200,150,9 0};SS{10.0,10.0};ES{0.0,0.0};V{0,0,0};In{-1};Tm{10};Pv{0,0,0};Vv{0,0,0}
TRAIL_1 = Vr{0};Tx{crcl};SC{250,255,20,20};EC{250,240,20,20} ;SS{5.0,5.0};ES{1.0,1.0};V{0,0,0};In{-1};Tm{8};Pv{0,0,0};Vv{0,0,0}
TRAIL_2 = Vr{0};Tx{crcl};SC{50,200,200,200};EC{0,100,100,100 };SS{15.0,15.0};ES{0.0,0.0};V{0,0,0};In{-1};Tm{15};Pv{0,0,0};Vv{0,0,0}
If we change NUM_TRAILS = 3 to NUM_TRAILS = 0 – than no more fire trail at shooting.
Same with passing and speed:
// Passing
[SMOVE_PASS]
NUM_TRAILS = 0
// Speed
[SMOVE_SPEED]
NUM_TRAILS = 0
As for superman heading - in fifawcdemo.exe there are two variables, which
responsible for it:
- super_header
- extraheaderpower
Think in final version nobody will remove it L
Only if developers will add these variables to ini.big, we’ll
get a possibility to switch off this stupid super heading.
ntalex