Can this be done? All the stuff below could of course apply to lots of things other than lit flares.
For example:
1. Know that the player is holding XYZ in the active slot.
2. Know that the player is also holding a Lit Flare in the inactive hand.
As far as I am aware, vanilla engine always clears the off-hand data, so its contents are 0 and PID is -1.
I'd like to have a way to essentially be holding a flare along with a gun/holodisk/whatever, and have the light radius still be added as if you were actively holding the flare.
Currently to have this off-hand lightsource functionality we have to allow the light radius to be added with a lit flare anywhere in inventory, which I think is kind of stupid/unrealistic.
-IDEAS/CONCERNS-
#1: Obviously we'd have to track if either item is two-handed, and if so, the item or both items would be greyed out and unusable, and/or not apply their usual effects.
#2: For the two-handed case above, they could either go back to inventory or be dropped to the ground instead of being greyed-out.
#3: What about using a global variable as a pointer to track the item's location? So attach the item to a script and the script would have something like:
For example:
1. Know that the player is holding XYZ in the active slot.
2. Know that the player is also holding a Lit Flare in the inactive hand.
As far as I am aware, vanilla engine always clears the off-hand data, so its contents are 0 and PID is -1.
I'd like to have a way to essentially be holding a flare along with a gun/holodisk/whatever, and have the light radius still be added as if you were actively holding the flare.
Currently to have this off-hand lightsource functionality we have to allow the light radius to be added with a lit flare anywhere in inventory, which I think is kind of stupid/unrealistic.
-IDEAS/CONCERNS-
#1: Obviously we'd have to track if either item is two-handed, and if so, the item or both items would be greyed out and unusable, and/or not apply their usual effects.
#2: For the two-handed case above, they could either go back to inventory or be dropped to the ground instead of being greyed-out.
#3: What about using a global variable as a pointer to track the item's location? So attach the item to a script and the script would have something like:
Code:
flare.ssl
if has_obj(dude, self_pointer_GVAR) && (active_hand_contents == self_pointer_GVAR) // only run if you're actively holding the item
set_light_level(dude, 100)
end
Last edited: