DayZ
123 ratings
Animated NVG Toggle
4
2
   
Award
Favorite
Favorited
Unfavorite
Type: Mod
Mod Type: Animation, Mechanics
File Size
Posted
Updated
80.145 KB
17 Apr @ 12:58am
18 Apr @ 5:17am
2 Change Notes ( view )

Subscribe to download
Animated NVG Toggle

Description
[RUS]
Мод добавляет анимацию включения ПНВ. ПНВ включается на ванильную кнопку, установленную в настройках игры (по умолчанию - удерживание L)
Анимация проигрывается в любых положениях персонажа(Стоя, сидя, лежа). Действие доступно только если ваши руки не заняты габаритным предметом(Сундуком или ящиком, например)

Репак разрешен, буду рад реакциям на моде/добавлению в Избранное/оставлению благодарности на странице вашего мода.

[ENG]
Adding an animation to toggling an NVG. Action using vanilla input option(Default - pushing L). You can toggle NVG only if your hands are not occupied with a large object (a chest or a box, for example).


Repack is allowed, I will be glad to see the reactions on the mod / add to Favorites/leaving thanks on your mod's page.
32 Comments
madskillz 9 Jul @ 10:36pm 
Баг или фича. включил пнв. зашел в сэйф зону , пнв выключени происходит (анимация) но оно не выключается. если снять пнв подсветка выключается. а если одеть его обратно , то автоматом включена подсветка , хотя прибор поднят вверх.
Apocryphox 7 Jul @ 1:49pm 
Same here.
AXER 3 Jul @ 5:07pm 
Yeah :(
Cline West 2 Jul @ 3:19pm 
Needs to be fix, players are saying they need to press the NVG button/key twice. Also saying that the NVG stays on sometimes...
bsgaming 28 Jun @ 10:33pm 
When the night vision scope animation is turned off, the night vision effect remains active
базару?jackson 24 Jun @ 1:31pm 
@thehippos thats working, but animation has less
AXER 15 Jun @ 2:34pm 
i've still problems with "thehippoz" fix. So hopefully, there will be an official fix soon :)
AXER 8 Jun @ 3:13pm 
hopefully there will be a fix
thehippoz 8 Jun @ 8:58am 
Nm it was the manager I wrote. It was duplicating itself causing all kinds of issues. The fix posted below will work for the on/off. To fix the hand wave while not wearing nvg, replace bool actioncondition

override bool ActionCondition( PlayerBase player, ActionTarget target, ItemBase item )
{
NVGoggles goggles;
NVGOnHelmet = EntityAI.Cast(player.FindAttachmentBySlotName("Headgear"));
if(NVGOnHelmet)
{
//Print("NVGOnHelmet: " + NVGOnHelmet)
goggles = NVGoggles.Cast(NVGOnHelmet.FindAttachmentBySlotName("NVG"));
if(goggles)
{
return true;
}
}
NVGOnStrap = EntityAI.Cast(player.FindAttachmentBySlotName("Eyewear"));
if(NVGOnStrap)
{
//Print("NVGOnStrap: " + NVGOnStrap)
goggles = NVGoggles.Cast(NVGOnStrap.FindAttachmentBySlotName("NVG"));
if(goggles)
{
return true;
}
}

return false;
}
FireManAndy 7 Jun @ 7:06pm 
We had to remove it as well, was not turning off, also experienced fps drops, when removed back to normal. Hope to see a fix.