Night vision effect without goggles?
Does anyone know if there is a way to enable the night vision effect without equipping the night vision goggles? This is what I currently have but for the effect to turn on it has to be equipped on the player.

var item = ItemManager.CreateByName("nightvisiongoggles", 1, 0UL);
if (item != null)
{
    item.SwitchOnOff(true, pl);
    item.MoveToContainer(pl.inventory.containerWear, 0);
}​
I also need this ill do some digging if i find the answer ill let you know!