This script will make some interesting effect: when you hold in hand "burning" fare, light level on area will increase, when you hide flare to backpack light level will again decrease. Its very simple and look great. Usualy light level is activated by map script in map_update procedure, but its very slow so make it other way: place somewhere behind cave wall critter with script. Critter is check by game engine much faster than map, thats why its better way to do this. He will just quick change light levels depend on items you have in hands like burning torch, flare, lighter, matches, candle or any item which is light source. Hide this critter behind cave wall because if you kill him, all effect will not work longer. Now caves and dark places will be much realistic.
FLARE
If you have in left or right hand light source then light level is increase, else: decrease light level. Everything you need to change is put different light level and different pid_light_source. This script could be upgraded to check more than just flare light sources. For example matches will set light 20%, candle, lighter 30%, flare 40%, torch 50%, flashlight 50-60%
FLARE
If you have in left or right hand light source then light level is increase, else: decrease light level. Everything you need to change is put different light level and different pid_light_source. This script could be upgraded to check more than just flare light sources. For example matches will set light 20%, candle, lighter 30%, flare 40%, torch 50%, flashlight 50-60%
Code:
procedure start;
procedure critter_p_proc;
procedure start begin
end
procedure critter_p_proc begin
if ((obj_pid(critter_inven_obj(dude_obj,INVEN_TYPE_RIGHT_HAND)) == PID_ACTIVE_FLARE) or
(obj_pid(critter_inven_obj(dude_obj,INVEN_TYPE_LEFT_HAND)) == PID_ACTIVE_FLARE)) then begin
set_light_level(40) ;
end else begin
set_light_level(10) ;
end
end