• A list of tdm cars For 3d car dealer
    2 replies, posted
[CODE]D3DCarConfig = {} D3DCarConfig.DarkRPIs2_5_0 = true -- if u using DarkRP 2.5.0 set this to ' true ' -- if not, Set this to 'false' D3DCarConfig.PlayerMaxCarAmount = 1 -- if you break this, your car will be removed and saved into inventory D3DCarConfig.Car = {} //=========================================== local TB2Insert = {} TB2Insert.VehicleName = "Jeep" -- This is unique name. TB2Insert.CarName = "Jeep!" -- The car name. will be displayed at shop TB2Insert.CarPrice = 100 -- price TB2Insert.CarRefund = 100 -- refund TB2Insert.MaxAmount = 1 -- max amount of this car. TB2Insert.Description = [[Normal Jeep]] table.insert(D3DCarConfig.Car,TB2Insert) //=========================================== local TB2Insert = {} TB2Insert.VehicleName = "audir8spydtdm" TB2Insert.CarName = "TDM - Spark" TB2Insert.CarPrice = 30000 TB2Insert.CarRefund = 20000 TB2Insert.Description = "TDM car" table.insert(D3DCarConfig.Car,TB2Insert) local TB2Insert = {} TB2Insert.VehicleName = "audir8tdm" TB2Insert.CarName = "TDM - Audi R8" TB2Insert.CarPrice = 22000 TB2Insert.CarRefund = 10000 TB2Insert.Description = "TDM car" table.insert(D3DCarConfig.Car,TB2Insert) local TB2Insert = {} TB2Insert.VehicleName = "priustdm" TB2Insert.CarName = "TDM - Prius" TB2Insert.CarPrice = 10000 TB2Insert.CarRefund = 5000 TB2Insert.Description = "TDM car" table.insert(D3DCarConfig.Car,TB2Insert) local TB2Insert = {} TB2Insert.VehicleName = "daf_xfeuro6_4x2_lw" TB2Insert.CarName = "DAF XF Euro 6 4x2" TB2Insert.CarPrice = 30000 TB2Insert.CarRefund = 20000 TB2Insert.Description = "Feel like being a ass and runnin people over? Well this is for you!!" table.insert(D3DCarConfig.Car,TB2Insert) local TB2Insert = {} TB2Insert.VehicleName = "chev_suburban" TB2Insert.CarName = "Chevy Suburban" TB2Insert.CarPrice = 25000 TB2Insert.CarRefund = 15000 TB2Insert.Description = "Good car for raids" table.insert(D3DCarConfig.Car,TB2Insert) if CLIENT then surface.CreateFont( "CenterCarName",{ font = "Sansation", size = 40, weight = 700, outline = true }) surface.CreateFont( "CenterCarPrice",{ font = "Sansation", size = 25, weight = 700, outline = true }) surface.CreateFont( "SansationOut_S20",{ font = "Sansation", size = 20, weight = 700, outline = true }) surface.CreateFont( "SansationOut_S30",{ font = "Sansation", size = 30, weight = 700, outline = true }) end [/CODE] Thats all I have on it right Now And im hoping someone could get some more for me
Bump. :U
Bump for what? I don't think anyone else is going to post anymore cars
Sorry, you need to Log In to post a reply to this thread.