So I've created the control zone for the associated cp and I've filled out all the necessary forms and specified my vehicle, but when I play in game, its just not there
Spawning Vehicles
Moderator: Moderators
- trainmaster611
- Sith Lord

- Posts: 1779
- Joined: Thu Aug 24, 2006 5:22 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Building a railway to Coruscant
- Contact:
Spawning Vehicles
Yes I've tried to search for this topic
So I've created the control zone for the associated cp and I've filled out all the necessary forms and specified my vehicle, but when I play in game, its just not there
So I've created the control zone for the associated cp and I've filled out all the necessary forms and specified my vehicle, but when I play in game, its just not there
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
RE: Spawning Vehicles
Did you call it in your LUA?
Is the vehicle in the right slots in the vehicle spawn?
Is the vehicle in the right slots in the vehicle spawn?
- trainmaster611
- Sith Lord

- Posts: 1779
- Joined: Thu Aug 24, 2006 5:22 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Building a railway to Coruscant
- Contact:
RE: Spawning Vehicles
I know its in the right vehicle spawn and all that. What do you mean by LUA? Are you sure you have to mess with that for a vehicle to work? 
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
RE: Spawning Vehicles
Yes, you need to call the vehicle under the ReadDataFile from the side. Otherwise, it doesn't get loaded, so the Vehicle Spawn can't use it.
Post the LUA, I'll show you what to do.
Post the LUA, I'll show you what to do.
- trainmaster611
- Sith Lord

- Posts: 1779
- Joined: Thu Aug 24, 2006 5:22 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Building a railway to Coruscant
- Contact:
RE: Spawning Vehicles
Ugh! I'm some kind of genius!
I completely forgot where the LUA is 
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
RE: Spawning Vehicles
Data_***\common\scrips\*** (*** = 3 letter mod ID )
- Teancum
- Jedi Admin

- Posts: 11080
- Joined: Wed Sep 07, 2005 11:42 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Indiana
RE: Spawning Vehicles
Also, there's a page down button when you're inserting a vehicle spawn. Make sure you're filling out both the DEF and ATK values for each side. (I usually put the same thing in for DEF and ATK values)
- trainmaster611
- Sith Lord

- Posts: 1779
- Joined: Thu Aug 24, 2006 5:22 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Building a railway to Coruscant
- Contact:
RE: Spawning Vehicles
Hidden/Spoiler:
And Teancum, I have noticed that but when I push Page Down nothing happens so I've assumed thats as far as it goes. And by Page Down I mean I've tried the button on the screen and on the keyboard.
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
RE: Spawning Vehicles
for the LUA, if you wanted to add a rebel combatspeeder you would change this:
For the Page down issue, are you using a com_item_vehicle_spawn from data_***\common\odfs? do you have it selected?
to this:ReadDataFile("SIDE\\all.lvl",
"all_inf_rifleman",
"all_inf_rocketeer",
"all_inf_sniper",
"all_inf_engineer",
"all_inf_officer",
"all_inf_wookiee",
"all_hero_hansolo_tat")
ReadDataFile("SIDE\\all.lvl",
"all_inf_rifleman",
"all_inf_rocketeer",
"all_inf_sniper",
"all_inf_engineer",
"all_inf_officer",
"all_inf_wookiee",
"all_hero_hansolo_tat",
"all_hover_combatspeeder")
For the Page down issue, are you using a com_item_vehicle_spawn from data_***\common\odfs? do you have it selected?
-
Elmo
- Field Commander

- Posts: 962
- Joined: Wed Nov 08, 2006 5:13 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
yeah...
Here: try this:
First make a control region for your cp...
place a vehicle spawn item inside the control region...
assign the vehicle spawn item to the cp it is placed next to...
if you want to add a rebel combat speeder... add under ATKreb and DEFreb its odf name...
call it up in your LUA...
then munge...
Here: try this:
First make a control region for your cp...
place a vehicle spawn item inside the control region...
assign the vehicle spawn item to the cp it is placed next to...
if you want to add a rebel combat speeder... add under ATKreb and DEFreb its odf name...
call it up in your LUA...
then munge...
- trainmaster611
- Sith Lord

- Posts: 1779
- Joined: Thu Aug 24, 2006 5:22 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Building a railway to Coruscant
- Contact:
Ok I added the LUA line and I even completely redid the vehicle spawn placement and refilled out the necessary fields just to make sure I did everything right...and guess what? No vehicle!
Here's some info that might be affecting it
:
1)ctf controlzone
2)^control zone is designated as Team: 1
2)Vehicle I'm placing is rep_vwing
3)There is still a CW era
4)I'm placing the vehicle name in ImpATK
And I still can't Page Down! :evil:
Here's some info that might be affecting it
1)ctf controlzone
2)^control zone is designated as Team: 1
2)Vehicle I'm placing is rep_vwing
3)There is still a CW era
4)I'm placing the vehicle name in ImpATK
And I still can't Page Down! :evil:
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
-
Elmo
- Field Commander

- Posts: 962
- Joined: Wed Nov 08, 2006 5:13 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
did you assign the v wing to cp1 or whatever cp you are associating it to?
what you do to do that, is when you place a vehicle spawn.... there will be something at the right of the screen... enter cp1 or whatever cp you're adding it to at the top bar... then add the V wing's odf name in the ImpATK and ImpDEF bars.... You can't page down?!?!... What you do is click pagedn at the bottom of the thing... if it doesn't turn the page.. then there's a problem... oh yeah... and make sure.. you have a control region for your cp and that th vehicle spawn is in the control region.
what you do to do that, is when you place a vehicle spawn.... there will be something at the right of the screen... enter cp1 or whatever cp you're adding it to at the top bar... then add the V wing's odf name in the ImpATK and ImpDEF bars.... You can't page down?!?!... What you do is click pagedn at the bottom of the thing... if it doesn't turn the page.. then there's a problem... oh yeah... and make sure.. you have a control region for your cp and that th vehicle spawn is in the control region.
-
Elmo
- Field Commander

- Posts: 962
- Joined: Wed Nov 08, 2006 5:13 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
-
Elmo
- Field Commander

- Posts: 962
- Joined: Wed Nov 08, 2006 5:13 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
-
Darth_Z13
- Jedi High Council

- Posts: 2275
- Joined: Sat Jun 17, 2006 9:51 am
- xbox live or psn: Xanthius Wylon
- Location: Canada
-
Elmo
- Field Commander

- Posts: 962
- Joined: Wed Nov 08, 2006 5:13 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- trainmaster611
- Sith Lord

- Posts: 1779
- Joined: Thu Aug 24, 2006 5:22 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Building a railway to Coruscant
- Contact:
Ok, so I already added a flying vehicle and associated it with the cp. I did exactly what the doc said and I already new the file name was rep_fly_vwing. I was just making it short for the post.
[EDIT]:I found out how to make it go down. I had to make my screen resolution go up and...tada! I found like 20 new tools I couldn't see before. I could also press the button and I found impDEF and I filled out the vwing there and erased it from impATK
[EDIT]:I found out how to make it go down. I had to make my screen resolution go up and...tada! I found like 20 new tools I couldn't see before. I could also press the button and I found impDEF and I filled out the vwing there and erased it from impATK
