Custom car with wrong whell positions

Started by NicusorN5, Apr 08, 2016, 04:46 PM

Previous topic - Next topic

NicusorN5

Plz help!!!
Why my car's wheels are up???
Image

NicusorN5


KAKAN

Quote from: NicusorN5 on Apr 10, 2016, 10:45 AMWhy no one is helping me??? :(
Everyone hates modelling in gmax, and the ones who knows modelling are lazy
oh no

Xmair

Quote from: KAKAN on Apr 10, 2016, 12:32 PM
Quote from: NicusorN5 on Apr 10, 2016, 10:45 AMWhy no one is helping me??? :(
Everyone hates modelling in gmax, and the ones who knows modelling are lazy
Ikr bro.

Credits to Boystang!

VU Full Member | VCDC 6 Coordinator & Scripter | EG A/D Contributor | Developer of VCCNR | Developer of KTB | Ex-Scripter of EAD

NicusorN5


NicusorN5

Here's the XML data (i think i made a mistake :P )
<?xml version='1.0' encoding='ASCII'?>
<vehicle>
<basic>
<type>car</type>
<name>Honda Civic</name>
<anims>null</anims>
<comprules>1</comprules>
<maxpassengers>4</maxpassengers>
<extraflags>0</extraflags>
<wheelmodel>237</wheelmodel>
<wheelscale>0.6</wheelscale>
<immunity>0</immunity>
</basic>

<aidata>
<class>normal</class>
<freq>10</freq>
<level>7</level>
</aidata>

<colors>
<rgbcol>5,5,5, 245,245,245</rgbcol>
                <carcol>13,13</carcol>
                <carcol>22,22</carcol>
                <carcol>35,35</carcol>
                <carcol>38,38</carcol>
                <carcol>2,2</carcol>
                <carcol>3,3</carcol>
                <carcol>48,48</carcol>
                <carcol>51,51</carcol>
</colors>

<audio>
<enginefarsample>275</enginefarsample>
<enginenearsample>11</enginenearsample>
<hornsample>1</hornsample>
<hornfreq>10706</hornfreq>
<sirensample>0</sirensample>
<sirenfreq>9200</sirenfreq>
<doorsounds>1</doorsounds>
</audio>

<handling>
<mass>1300</mass>
<percentsubmerged>1</percentsubmerged>
<steeringlock>0</steeringlock>
<seatoffset>0</seatoffset>
<damagemultiplier>1</damagemultiplier>
<value>1</value>
<flags>0</flags>
<centreofmass>
<x>0</x>
<y>0</y>
<z>0</z>
</centreofmass>

<traction>
<multiplier>1</multiplier>
<loss>1</loss>
<bias>1</bias>
</traction>

<transmission>
<numofgears>5</numofgears>
<maxspeed>200</maxspeed>
<acceleration>2.6</acceleration>
<drivetype>F</drivetype>
<enginetype>D</enginetype>
</transmission>

<brakes>
<deceleration>2</deceleration>
<bias>1</bias>
<abs>0</abs>
</brakes>

<suspension>
<forcelevel>1</forcelevel>
<dampening>1</dampening>
<upperlimit>1</upperlimit>
<lowerlimit>1</lowerlimit>
<bias>1</bias>
<antidive>0</antidive>
</suspension>

<lights>
<front>1</front>
<rear>1</rear>
</lights>
</handling>

</vehicle>

rww

#6
Use this:

<?xml version='1.0' encoding='ASCII'?>
<vehicle>
 <basic>
  <type>car</type>
  <name>Honda Civic</name>
  <anims>null</anims>
  <comprules>1</comprules>
  <extraflags>0</extraflags>
  <wheelmodel>237</wheelmodel>
  <wheelscale>0.6</wheelscale>
  <immunity>0</immunity>
 </basic>

 <aidata>
  <class>normal</class>
  <freq>10</freq>
  <level>7</level>
 </aidata>

 <colors>
  <carcol>1,1</carcol>
 </colors>

 <audio>
  <enginefarsample>275</enginefarsample>
  <enginenearsample>11</enginenearsample>
  <hornsample>1</hornsample>
  <hornfreq>10706</hornfreq>
  <sirensample>0</sirensample>
  <sirenfreq>9200</sirenfreq>
  <doorsounds>1</doorsounds>
 </audio>

 <handling>
  <mass>1300</mass>
  <percentsubmerged>75</percentsubmerged>
  <steeringlock>30.0</steeringlock>
  <seatoffset>0.2</seatoffset>
  <damagemultiplier>0.56</damagemultiplier>
  <value>35000</value>
  <flags>8002</flags>
  <centreofmass>
   <x>0.0</x>
   <y>0.0</y>
   <z>0.0</z>
  </centreofmass>

  <traction>
   <multiplier>0.85</multiplier>
   <loss>0.80</loss>
   <bias>0.51</bias>
  </traction>

  <transmission>
   <numofgears>5</numofgears>
   <maxspeed>200</maxspeed>
   <acceleration>22.6</acceleration>
   <drivetype>F</drivetype>
   <enginetype>P</enginetype>
  </transmission>

  <brakes>
   <deceleration>8.5</deceleration>
   <bias>0.52</bias>
   <abs>0</abs>
  </brakes>

  <suspension>
   <forcelevel>1.2</forcelevel>
   <dampening>0.15</dampening>
   <upperlimit>0.27</upperlimit>
   <lowerlimit>-0.19</lowerlimit>
   <bias>0.5</bias>
   <antidive>0.55</antidive>
  </suspension>

  <lights>
   <front>1</front>
   <rear>1</rear>
  </lights>
 </handling>

</vehicle>
Join to Irrelevant Club Discord: https://discord.gg/MsPPZ5uV4X

NicusorN5