How do you change the sky in space? (FAQ)
Moderator: Moderators
-
- Jedi
- Posts: 1056
- Joined: Fri Aug 14, 2009 12:32 am
How do you change the sky in space? (FAQ)
I tried the normal way, but it still stayed the same. Anyone know?
- AceMastermind
- Gametoast Staff
- Posts: 3285
- Joined: Mon Aug 21, 2006 6:23 am
- Contact:
Re: How do you change the sky in space?
In your ABCc_cmn.lua the above line would look something like this:[color=#FF8000]Battlefront II Space LUA Guide[/color] wrote:...
>>ReadDataFile regarding sky files: Most of this work has been done by the development team for the actual shipped product, so you have less to worry about unless you make your own skydome and such. All you have to do is replace "tat" with the three letters that correspond to the planet you want the battle to take place over. "cor" for Coruscant, "hot" for Hoth, etc.
ReadDataFile("SPA\\spa_sky.lvl", "tat")
...
ReadDataFile("dc:ABC\\spa_sky.lvl", "tat")
Where ABC is your modID
spa_sky.lvl references the spa_sky.req located in data_ABC\Worlds\ABC\sky which lists tat
tat references the tat.req located in the data_ABC\Worlds\ABC\sky\REQ folder
tat.req references spa_tat.sky located in data_ABC\Worlds\ABC\sky
spa_tat.sky configures everything included in that particular sky
The skydome msh and textures are stored in data_ABC\Worlds\ABC\MSH if you're thinking of making your own.
-
- Jedi
- Posts: 1056
- Joined: Fri Aug 14, 2009 12:32 am
Re: How do you change the sky in space?
Which lua is this in? I can't find it.
- AceMastermind
- Gametoast Staff
- Posts: 3285
- Joined: Mon Aug 21, 2006 6:23 am
- Contact:
Re: How do you change the sky in space?
@#$c_cmn.luagenaral_mitch wrote:Which lua is this in?
This is a common (cmn) lua file.
- Filipinio
- Master Sergeant
- Posts: 178
- Joined: Fri Jan 22, 2010 3:29 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Mygeeto's Bridge Battle's
Re: How do you change the sky in space? (FAQ)
This was my freinds ( Exacutor94's ) answer:
search this line in your ABCc_cmn lua:
ReadDataFile("dc:ABCspa_sky.lvl", "tat"
change tat to an other 3 letter world like:
cor, mus, myg, uta or an other world.
You can find more under data_ABC/Worlds/ABC/sky/REQ
search this line in your ABCc_cmn lua:
ReadDataFile("dc:ABCspa_sky.lvl", "tat"
change tat to an other 3 letter world like:
cor, mus, myg, uta or an other world.
You can find more under data_ABC/Worlds/ABC/sky/REQ
-
- Jedi
- Posts: 1056
- Joined: Fri Aug 14, 2009 12:32 am
Re: How do you change the sky in space? (FAQ)
Thanks, I guess. For anyone who missed AceMastermind's post.Filipinio wrote:This was my freinds ( Exacutor94's ) answer:
search this line in your ABCc_cmn lua:
ReadDataFile("dc:ABCspa_sky.lvl", "tat"
change tat to an other 3 letter world like:
cor, mus, myg, uta or an other world.
You can find more under data_ABC/Worlds/ABC/sky/REQ