Home   Help Search Login Register  

Author Topic: Custom Van cannot move???  (Read 858 times)

0 Members and 2 Guests are viewing this topic.

iD_999

  • Guest
Custom Van cannot move???
« on: 16 Sep 2003, 05:19:18 »
Hi everyone.

I have just finish create my Van model and config.cpp and import it into the game.

The problem with my van is that it cannot move forward and back ward, but the front wheel can move side ways.

I dont know why??

There are some more problems, when i shot my van it'll start to float in the air taking the soldier inside with it.

And when i throw a grenade, the whole van disappear.

Can someone what is the course of my problem and how to solve it?

This is my config.cpp:

class CfgModels
{
   class default {};
   class Vehicle: default{};
   class Car: Vehicle {};
   class Jeep: Car {};
   class civilianVan: Jeep {};
};

class cfgPatches
{

   class civilianVehicle
   {
     units[] ={civilianVan};
     weapons[] ={};
     requiredVersion =1.40;
   };

};      
class cfgVehicles
{

   class All{};
   class AllVehicles: All{};
   class Land: AllVehicles{};
   class LandVehicle: Land{};
   class Car: LandVehicle{};
   class Jeep: Car {};   
   class civilianVan: Jeep
   {
   side = 3;
   displayName ="Van";
   model="\van\van";
   crew="SAF_soldier";
   maxSpeed = 300;
   };
}
   
   
thank in advance

Offline Colonel_Klink

  • Members
  • *
  • Independent Addon Creator
    • DC3D Game Modelling Zone
Re:Custom Van cannot move???
« Reply #1 on: 16 Sep 2003, 12:44:37 »
Try adding some weight mass in the geometry lod.
Rebel without a pause...D.I.L.L.I.G.A.F.

iD_999

  • Guest
Re:Custom Van cannot move???
« Reply #2 on: 19 Sep 2003, 18:11:35 »
thank Colonel_Klink

It work thank u. ;D