Skip to content

Instantly share code, notes, and snippets.

@InclementDab
Created April 2, 2022 13:38
Show Gist options
  • Save InclementDab/63bb20b2792113790ccc1c5b5498e22b to your computer and use it in GitHub Desktop.
Save InclementDab/63bb20b2792113790ccc1c5b5498e22b to your computer and use it in GitHub Desktop.
DayZ Anti God Rays
modded class MissionGameplay
{
override void OnUpdate(float timeslice)
{
super.OnUpdate(timeslice);
PPERequester_TacticalGoggles req = PPERequester_TacticalGoggles.Cast(PPERequesterBank.GetRequester(PPERequester_TacticalGoggles));
if (!req) {
return;
}
req.Start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment