Heres A 5 Minute tut.
If your working on a map that has scripts in it already and you don't need one of the scripts then use the tut.
Step 1: Open your map in SoL's Script Tools.
Step 2: Find the script you want to overwrite.
Step 3: Double click it.
Step 4: Copy and paste my code into the textbox then hit compile. Your should get no errors.
Here's the code for my script.
Code: Select all
(script startup lighting
(begin
(cinematic_start)
(cinematic_screen_effect_start True)
(cinematic_lighting_set_primary_light 120 248 0.343087 0.302234 0.270588)
(cinematic_lighting_set_secondary_light 120 50 0.0784314 0.0745098 0.0901961)
(cinematic_lighting_set_ambient_light 0.0807903 0.0608304 0.0509804)
(object_uses_cinematic_lighting player0 True)
(object_uses_cinematic_lighting player1 True)
(object_uses_cinematic_lighting player2 True)
(object_uses_cinematic_lighting player3 True)
(rasterizer_bloom_override True)
(rasterizer_bloom_override_threshold 0.1)
(rasterizer_bloom_override_brightness 0.6)
)
)
That will make it work on startup.
You can mess with the flout on the end of the last two lines.
Now on startup your map will have it on. You don't need yelo to work this.