Page 1 of 1

[Solved] Jabba's Palace question

Posted: Fri Apr 18, 2014 7:27 am
by nobody3
When you play stock jabba's palace map and turn the LOD or light settings down, there is this black "fog" that you can't see through. I didn't see it on other maps I think. How does one remove this black fog and add this to other maps? Thanks

Re: Jabba's Palace question

Posted: Fri Apr 18, 2014 7:42 am
by thelegend
This black fog is a "sky file" effect I think.
Replace your sky info with this in your sky file:
Hidden/Spoiler:
SkyInfo()
{
Enable(1);
FogColor(0, 0, 0);
FogRange(20.000000, 40.000000);

PC()
{
NearSceneRange(20.000000, 70.000000, 30.000000, 80.000000);
FarSceneRange(0.0, 0.0);
}
XBOX()
{
NearSceneRange(0.2, 30.000000, 70.000000);
FarSceneRange(0.0);
}
PS2()
{
NearSceneRange(0.2, 20.000000, 60.000000);
FarSceneRange(0.0);
}
}
After that It should work.

Re: Jabba's Palace question

Posted: Sat Apr 19, 2014 7:08 am
by nobody3
OK I will try that.. also do you know what does this mean?

Code: Select all

NearSceneRange(60.0, 80.0, 80.0, 110.0);
		FarSceneRange(400.000000, 2000.0);

Re: Jabba's Palace question

Posted: Sat Apr 19, 2014 11:22 am
by MileHighGuy