Page 1 of 1

Vehicles ?

Posted: Fri Sep 21, 2007 9:42 am
by REivEN
How do i add vehicles to a map :oops:

Re: Vehicles ?

Posted: Fri Sep 21, 2007 9:57 am
by Caleb1117
I'm postitive the documentation covers this.
I know people hate hearing this ^, But the docs do help.

Re: Vehicles ?

Posted: Fri Sep 21, 2007 2:10 pm
by Frisbeetarian
I know I had trouble doing this too, even after I followed and checked multiple times the docs. Once you follow the documents, you have to make sure that the vehicle is added to the lua to have it in game.

Re: Vehicles ?

Posted: Fri Sep 21, 2007 4:42 pm
by woner11
Check the getting started documentation in the mod tools, it tells you how to make vehicles spawns. Then edit your lua so it says: ReadDataFile("dc:SIDE\\rep.lvl"."rep_hover_speederbike") this is if it is in your cusotms sides folder. Otherwise if the vehicle is your assets folder it would look like: ReadDataFile("SIDE\\rep.lvl"."rep_hover_speederbike"). Also, change the rep.lvl to whatever the overall req is inside that folder. For example, it might be cis.lvl, all.lvl, kit.lvl, etc. Once that is done add your vehicle name in where it says rep_hover_speeder. So I guess it would look like this: ReadDataFile("SIDE\\[foldername].lvl","[vehicle_name]"). Munge and your done. I know this is kinda complicated and repetitive, but I hope it helps.

Re: Vehicles ?

Posted: Sat Sep 22, 2007 2:43 am
by REivEN
tx woner11