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);
}