OFPEC Forum
Addons & Mods Depot => OFP - Addons & Mods General => Topic started by: goki on 14 Oct 2004, 16:37:01
-
Hi guys,
We are making a long truck. Is it possible to define 12 wheels for a truck?
Does it affect turning at all?
Regards
-
Why not try making it a tank class vehicle? Tanks have MANY wheels... just don't make tracks.... and use destructType command in config to make it blow like a car...? Though the wheels wouldn't turn I quess :-[...
-
car class can only handle 8 wheels :-\
-
Hi again,
I see. We can prefer tank treads but this way tread-marks arise behind the vehicle! If we get rid of the marks then we may have "no-mark" problem!
Incidentally, do all wheels turn precisely accroding to speed if we choose tank treads?
Regards
-
Tank wheels don't turn.. They vary in speed/direction and make the vehicle move/turn (Thats why it can spin on the spot)
Maybe you can join 2 of the wheels in ont selection so they turn the same time, and your down to 8 "wheels"
Like this..
o = wheels
| = wheels linked
o o
o o
o o
o o
o| |o
o| |o
That way, when you turn, those back wheels will pivot around the middle of the | line, and should look alright (Never tried)
- Ben
-
or, you could script the extra wheels to turn (using an animation) when the car goes at a certain speed
-
Where can I find such script?
-
just define an anim, then in the script put something like:
_vehicle = _this select 0
?speed _vehicle >0:goto "above 0"
#above 0
_vehicle Animate ["xyz",1]
or soemthing along those lines
-
Thanks, we had already solved the problem different way but thanks again :)
-
Hi, glad u haf solved the problem... but wouldn't it be good if u mentioned how u solved it?? i'm sure all of us are quite curious... :)
-
Sorry for delay :-\ I'm over-busy with labors... overworking actually... :noo:
We used tank wheels in the end. Indeed we defined them so... I don't know much about this subject since we are a group and I'm not the config coder or modeller. Soon we will announce our first project, our group and more... 8) That time, you will be able to examine our work freely and get the point through and through :)
Thanks again. :) I plan to announce the final work here, so that you can be informed about 12 wheels stuff :thumbsup:
so long
-
What DBR_ONIX said should work. As in real 12 wheelers, not all the wheels actually turn. Group these as one wheel and that should be fine.
-
Okay, I talked to our modeller & config coder. Here is complete answer.
He said that there are two options to overcome this 12 wheels problem;
We chose the first one...
1- Defining the wheels the way DBR_ONIX mentioned, in O2, therefore you don't need a script to turn the wheels. Very smooth...
2- Using a script to turn the wheels. In this case, the wheels are not defined as they are done in the first option, in O2, so they need to be animated via a script to turn.
Hope this fulfills your curiosity :)