├── README.md ├── scripts.txt └── scripts ├── 1_core ├── constants.c ├── defines.c ├── param.c ├── proto │ ├── dbgui.c │ ├── enaudio.c │ ├── enconvert.c │ ├── endebug.c │ ├── enentity.c │ ├── enmath.c │ ├── enmath2d.c │ ├── enmath3d.c │ ├── enphysics.c │ ├── enprofiler.c │ ├── enscript.c │ ├── enstring.c │ ├── ensystem.c │ ├── envisual.c │ ├── envrdevice.c │ ├── enwidgets.c │ ├── enworld.c │ ├── proto.c │ └── serializer.c ├── script.c └── workbenchapi.c ├── 2_gamelib ├── components │ └── gamelibcomponents.c ├── entities │ ├── gamelibentities.c │ ├── rendertarget.c │ ├── scriptcamera.c │ ├── scriptlight.c │ ├── scriptmodel.c │ └── worldsmenu.c ├── gamelib.c ├── inputmanager.c ├── menumanager.c ├── settings.c ├── tests │ └── testingframework.c └── tools.c ├── 3_game ├── ai │ ├── aiagent.c │ ├── aigroup.c │ ├── aigroupbehaviour.c │ └── aiworld.c ├── aibehaviour.c ├── ammocamparams.c ├── ammoeffects.c ├── analytics │ ├── analyticsmanagerclient.c │ ├── analyticsmanagerserver.c │ └── scriptanalytics.c ├── anim │ ├── animcommand.c │ └── animphysagent.c ├── autotest │ ├── autotestconfighandler.c │ ├── autotestconfigjson.c │ ├── autotestfixture.c │ └── autotestrunner.c ├── billboardset.c ├── bleedchancedata.c ├── canvas.c ├── ce │ └── centraleconomy.c ├── cfggameplaydatajson.c ├── cfggameplayhandler.c ├── cfgplayerrestrictedareahandler.c ├── cfgplayerrestrictedareajsondata.c ├── client │ ├── clientdata.c │ ├── mods │ │ ├── modloader.c │ │ └── modstructure.c │ ├── notifications │ │ ├── notificationdata.c │ │ ├── notificationsystem.c │ │ └── notificationui.c │ ├── onlineservices.c │ ├── syncdata.c │ ├── syncentitykill.c │ ├── syncplayer.c │ └── syncplayerlist.c ├── colors.c ├── constants.c ├── controlschememanager.c ├── damagesystem.c ├── dayzanimeventmaps.c ├── dayzanimevents.c ├── dayzcreature.c ├── dayzcreatureai.c ├── dayzgame.c ├── dayzplayer.c ├── debugweatherrpcdata.c ├── econtrolschemestate.c ├── effect.c ├── effectmanager.c ├── effects │ ├── backlit │ │ └── backlit.c │ ├── destructioneffects │ │ └── destructioneffectbase.c │ ├── effectparticle.c │ ├── effectparticle │ │ ├── bleedingsource.c │ │ ├── bloodsplatter.c │ │ ├── bulletimpactbase.c │ │ ├── bulletimpactbase │ │ │ ├── hit_concrete.c │ │ │ ├── hit_dirt.c │ │ │ ├── hit_error.c │ │ │ ├── hit_foliage.c │ │ │ ├── hit_foliage │ │ │ │ ├── hit_foliage_conifer.c │ │ │ │ └── hit_foliage_green.c │ │ │ ├── hit_glass.c │ │ │ ├── hit_glass_thin.c │ │ │ ├── hit_grass.c │ │ │ ├── hit_gravel.c │ │ │ ├── hit_ice.c │ │ │ ├── hit_meatbones.c │ │ │ ├── hit_meatbones │ │ │ │ ├── hit_meatbones_meleefist.c │ │ │ │ ├── hit_meatbones_meleepipewrench.c │ │ │ │ ├── hit_meatbones_meleeshovel.c │ │ │ │ └── hit_meatbones_meleewrench.c │ │ │ ├── hit_metal.c │ │ │ ├── hit_plaster.c │ │ │ ├── hit_plastic.c │ │ │ ├── hit_rubber.c │ │ │ ├── hit_sand.c │ │ │ ├── hit_snow.c │ │ │ ├── hit_textile.c │ │ │ ├── hit_undefined.c │ │ │ ├── hit_water.c │ │ │ └── hit_wood.c │ │ ├── bulletimpacttest.c │ │ ├── generatorsmoke.c │ │ ├── landmineexplosion.c │ │ ├── menucarenginesmoke.c │ │ ├── menuevaporation.c │ │ ├── player │ │ │ ├── effbreathvapourheavy.c │ │ │ ├── effbreathvapourlight.c │ │ │ └── effbreathvapourmedium.c │ │ ├── swarmingflies.c │ │ ├── vehiclesmoke.c │ │ ├── vehiclesmoke │ │ │ ├── coolantsteam.c │ │ │ ├── enginesmoke.c │ │ │ └── exhaustsmoke.c │ │ ├── vomit.c │ │ └── vomitblood.c │ └── effectsound.c ├── efireignitetype.c ├── entities │ ├── building.c │ ├── bullettypes.c │ ├── camera.c │ ├── dayzaihitcomponents.c │ ├── dayzanimal.c │ ├── dayzanimalinputcontroller.c │ ├── dayzanimaltype.c │ ├── dayzcreatureaiinputcontroller.c │ ├── dayzcreatureaitype.c │ ├── dayzinfected.c │ ├── dayzinfectedinputcontroller.c │ ├── dayzinfectedtype.c │ ├── entity.c │ ├── entityai.c │ ├── entitylightsource.c │ ├── inventoryitem.c │ ├── man.c │ ├── object.c │ ├── objecttyped.c │ ├── pawn.c │ ├── scriptedentity.c │ └── soundonvehicle.c ├── enums │ ├── eactions.c │ ├── eagents.c │ ├── eanimsoundeventid.c │ ├── ebrokenlegs.c │ ├── ebuildinglocktypes.c │ ├── ecamerazoomtype.c │ ├── echargender.c │ ├── econsumetype.c │ ├── econsumptionpenaltycontext.c │ ├── econtaminationtypes.c │ ├── ecrewmemberstate.c │ ├── edayzprofilesoptions.c │ ├── ediagmenuids.c │ ├── edryingincrementcategory.c │ ├── edynamicmusicplayercategory.c │ ├── eenvironmenttemperaturecomponent.c │ ├── egamestateicons.c │ ├── emedicaldrugstype.c │ ├── emeleetargettype.c │ ├── emixedsoundstates.c │ ├── eplayerstates.c │ ├── epulsetype.c │ ├── erpcs.c │ ├── estaminaconsumers.c │ ├── estaminamodifiers.c │ ├── estatlevels.c │ ├── esyncevent.c │ ├── etimeofday.c │ ├── etransformationaxis.c │ ├── ewaterlevels.c │ └── ewatersourceobjecttype.c ├── game.c ├── gameplay.c ├── gameplayeffectwidgets_base.c ├── global │ ├── ammotypes.c │ ├── dayzphysics.c │ ├── errormodulehandler │ │ ├── bioserrormodule.c │ │ ├── clientkickedmodule.c │ │ ├── connecterrorclientmodule.c │ │ ├── connecterrorscriptmodule.c │ │ ├── connecterrorservermodule.c │ │ ├── errorhandlermodule.c │ │ ├── errormodulehandler.c │ │ └── errorproperties.c │ ├── game.c │ ├── pboapi.c │ ├── uuid.c │ └── world.c ├── gui │ ├── containers │ │ ├── scrollbarcontainer.c │ │ └── sizetochild.c │ ├── contextmenu.c │ ├── credits │ │ ├── creditsloader.c │ │ ├── jsondatacredits.c │ │ ├── jsondatacreditsdepartment.c │ │ └── jsondatacreditssection.c │ ├── dlcs │ │ ├── dlcdataloader.c │ │ └── jsondatadlcinfo.c │ ├── effects │ │ ├── bouncer.c │ │ ├── hovereffect.c │ │ ├── mainmenubuttoneffect.c │ │ ├── radialmenu.c │ │ ├── radialprogressbar.c │ │ └── rotator.c │ ├── embeded.c │ ├── hints │ │ ├── hintpage.c │ │ └── uihintpanel.c │ ├── inventorygrid.c │ ├── spacers │ │ ├── autoheightspacer.c │ │ ├── horizontalspacer.c │ │ ├── horizontalspacerwithfixedaspect.c │ │ ├── itemscounter.c │ │ ├── noticespacer.c │ │ ├── rightgap.c │ │ ├── spacerbase.c │ │ └── verticalspacer.c │ ├── tabber.c │ └── widgetlayoutname.c ├── hiddenselectionsdata.c ├── hitinfo.c ├── hive │ └── hive.c ├── http │ ├── backendapi.c │ ├── jsonapi.c │ ├── jsonapistruct.c │ └── restapi.c ├── human.c ├── humanitems.c ├── humanitems.h ├── humansettings.c ├── impacteffects.c ├── inputapi │ └── uainput.c ├── inventoryitemtype.c ├── isboxcollidinggeometryproxyclasses.c ├── killerdata.c ├── modinfo.c ├── noise.c ├── objectspawner.c ├── particles │ ├── particle.c │ ├── particlebase.c │ ├── particlelist.c │ ├── particlemanager │ │ ├── particlemanager.c │ │ └── particlesource.c │ └── tests │ │ ├── pmtcreationandcleanup.c │ │ ├── pmtf.c │ │ └── pmtplayback.c ├── persistentflag.c ├── playerconstants.c ├── ppeffects.c ├── ppemanager │ ├── materials │ │ ├── matclasses │ │ │ ├── exceptions │ │ │ │ ├── ppedof.c │ │ │ │ ├── ppeexposurenative.c │ │ │ │ ├── ppeeyeaccomodationnative.c │ │ │ │ └── ppelightintensityparamsnative.c │ │ │ ├── ppechromaber.c │ │ │ ├── ppecolorgrading.c │ │ │ ├── ppecolors.c │ │ │ ├── ppedepthoffield.c │ │ │ ├── ppedistort.c │ │ │ ├── ppedynamicblur.c │ │ │ ├── ppefilmgrain.c │ │ │ ├── ppefxaa.c │ │ │ ├── ppegaussfilter.c │ │ │ ├── ppeghost.c │ │ │ ├── ppeglow.c │ │ │ ├── ppegodrays.c │ │ │ ├── ppehbao.c │ │ │ ├── ppemedian.c │ │ │ ├── ppenone.c │ │ │ ├── pperadialblur.c │ │ │ ├── pperain.c │ │ │ ├── pperotblur.c │ │ │ ├── ppesmaa.c │ │ │ ├── ppesnowfall.c │ │ │ ├── ppessao.c │ │ │ ├── ppesunmask.c │ │ │ ├── ppeunderwater.c │ │ │ └── ppewetdistort.c │ │ ├── matparameters │ │ │ ├── ppematclassparameterbool.c │ │ │ ├── ppematclassparametercolor.c │ │ │ ├── ppematclassparametercommanddata.c │ │ │ ├── ppematclassparameterfloat.c │ │ │ ├── ppematclassparameterint.c │ │ │ ├── ppematclassparameterresource.c │ │ │ ├── ppematclassparametertexture.c │ │ │ └── ppematclassparametervector.c │ │ └── ppematclassesbase.c │ ├── ppeconstants.c │ ├── ppemanager.c │ ├── pperequestdata.c │ ├── pperequesterbank.c │ └── requesters │ │ ├── pperbloodloss.c │ │ ├── pperburlapsack.c │ │ ├── ppercameraads_opt.c │ │ ├── ppercameranv.c │ │ ├── ppercontaminated.c │ │ ├── ppercontrollerdisconnectblur.c │ │ ├── ppercontrolsblur.c │ │ ├── pperdeathdarkening.c │ │ ├── pperdrowningeffect.c │ │ ├── pperequestplatformsbase.c │ │ ├── pperfeedbackblur.c │ │ ├── pperfever.c │ │ ├── pperflashbangeffects.c │ │ ├── pperglasses.c │ │ ├── pperhealthhit.c │ │ ├── pperhmp_lvl3.c │ │ ├── pperhmpghosts.c │ │ ├── pperintrochromabb.c │ │ ├── pperinventoryblur.c │ │ ├── pperlatencyblur.c │ │ ├── ppermenueffects.c │ │ ├── pperpain.c │ │ ├── pperserverbrowser.c │ │ ├── ppershockhit.c │ │ ├── pperspooky.c │ │ ├── ppertunnel.c │ │ ├── ppertutorial.c │ │ ├── pperunconeffects.c │ │ └── pperundergroundacco.c ├── progressasync.c ├── remotelyactivateditembehaviour.c ├── services │ ├── achievementsxbox.c │ ├── biosclientservices.c │ ├── bioslobbyservice.c │ ├── biospackageservice.c │ ├── biosprivacyservice.c │ ├── biossessionservice.c │ ├── biossocialservice.c │ ├── biosusermanager.c │ ├── contentdlc.c │ └── trialservice.c ├── sound.c ├── static │ ├── easing.c │ └── timeaccel.c ├── surfaceinfo.c ├── syncevents.c ├── systems │ ├── actions │ │ ├── actionbase_basic.c │ │ └── actioninput_basic.c │ ├── ai │ │ └── aitarget_callbacks.c │ ├── animalcatching │ │ ├── catchingconstants.c │ │ ├── catchingcontextbase.c │ │ ├── catchingcontextpoissonbase.c │ │ ├── catchingresultbasic.c │ │ ├── catchyieldbank.c │ │ └── catchyielditembase.c │ ├── arrowmanager │ │ └── arrowmanagerbase.c │ ├── dynamicmusicplayer │ │ ├── dynamicmusicplayer.c │ │ ├── dynamicmusicplayerregistry.c │ │ ├── dynamicmusicplayerregistrychernarus.c │ │ ├── dynamicmusicplayerregistryenoch.c │ │ └── dynamicmusicplayerregistrysakhal.c │ ├── fsmbase.c │ ├── hfsmbase.c │ ├── inventory │ │ ├── buildinginventory.c │ │ ├── cargo.c │ │ ├── debug.c │ │ ├── hand_actions.c │ │ ├── hand_events.c │ │ ├── hand_guards.c │ │ ├── hand_states.c │ │ ├── handanimated_guards.c │ │ ├── handanimatedforceswapping.c │ │ ├── handanimatedmovingtoatt.c │ │ ├── handanimatedswapping.c │ │ ├── handanimatedtakingfromatt.c │ │ ├── handfsm.c │ │ ├── handreplacingitemelsewherewithnewinhands.c │ │ ├── handreplacingiteminhands.c │ │ ├── handstablestate.c │ │ ├── handstartaction.c │ │ ├── handstatebase.c │ │ ├── humaninventory.c │ │ ├── humaninventorywithfsm.c │ │ ├── inventory.c │ │ ├── inventoryinputuserdata.c │ │ ├── inventorylocation.c │ │ ├── inventoryslots.c │ │ ├── junctures.c │ │ ├── replaceitemwithnewlambdabase.c │ │ ├── transportinventory.c │ │ └── weaponinventory.c │ ├── ofsmbase.c │ ├── temperatureaccess │ │ ├── temperatureaccesscomponent.c │ │ ├── temperatureaccessconstants.c │ │ ├── temperatureaccessmanager.c │ │ ├── temperatureaccesstypes.c │ │ └── temperaturedata.c │ ├── testframework.c │ ├── tftests │ │ ├── enprofilertests.c │ │ └── scriptinvokertests.c │ └── universaltemperaturesource │ │ ├── universaltemperaturesource.c │ │ ├── universaltemperaturesourcelambdabase.c │ │ └── universaltemperaturesourcelambdafireplace.c ├── tools │ ├── bitarray.c │ ├── blend2d.c │ ├── cameratools.c │ ├── component.c │ ├── component │ │ ├── _constants.c │ │ ├── bodystaging.c │ │ ├── componentanimalbleeding.c │ │ ├── componentenergymanager.c │ │ └── componententitydebug.c │ ├── componentsbank.c │ ├── debug.c │ ├── debugprint.c │ ├── dispatcher.c │ ├── input.c │ ├── inpututils.c │ ├── jsonfileloader.c │ ├── jsonobject.c │ ├── keystouielements.c │ ├── logtemplates.c │ ├── simplecircularbuffer.c │ ├── simplemovingaverage.c │ ├── timeconversions.c │ ├── tools.c │ ├── uimanager.c │ ├── uiscriptedmenu.c │ ├── uiscriptedwindow.c │ ├── utilityclasses.c │ └── vector2.c ├── triggercarrierbase.c ├── undergroundarealoader.c ├── vehicles │ ├── boat.c │ ├── car.c │ ├── helicopter.c │ └── transport.c ├── vonmanager.c ├── weather.c ├── worlddata.c ├── worldlighting.c └── xboxdemogame.c ├── 4_world ├── classes │ ├── areadamage │ │ ├── areadamage.c │ │ ├── areadamagenew │ │ │ ├── areadamageevents.c │ │ │ ├── areadamagelooped.c │ │ │ ├── areadamageloopeddeferred.c │ │ │ ├── areadamageloopeddeferred_novehicle.c │ │ │ ├── areadamagemanager.c │ │ │ ├── areadamageonce.c │ │ │ ├── areadamagetriggerbase.c │ │ │ ├── areadamagetriggerdirect.c │ │ │ └── damagecomponents │ │ │ │ ├── areadamagecomponent.c │ │ │ │ ├── areadamagecomponentrandomhitzone.c │ │ │ │ └── areadamagecomponentraycasted.c │ │ ├── areadamageonetime.c │ │ ├── areadamageonetimedeferred.c │ │ ├── areadamageonetimeraycasted.c │ │ ├── areadamageonetimeraycasteddeferred.c │ │ ├── areadamageregular.c │ │ ├── areadamageregulardeferred.c │ │ ├── areadamageregularraycasted.c │ │ ├── areadamageregularraycasteddeferred.c │ │ └── areadamagetrigger.c │ ├── arrowmanager │ │ ├── arrowmanagerbase.c │ │ └── arrowmanagerplayer.c │ ├── basebuilding │ │ ├── construction.c │ │ ├── constructionactiondata.c │ │ └── constructionpart.c │ ├── bleedingindication │ │ ├── bleedingindicationconstants.c │ │ └── bleedingindicationstaticinfo.c │ ├── bleedingsources │ │ ├── bleedingsource.c │ │ ├── bleedingsourcelocation.c │ │ ├── bleedingsourcesmanagerbase.c │ │ ├── bleedingsourcesmanagerremote.c │ │ ├── bleedingsourcesmanagerserver.c │ │ └── bleedingsourcezone.c │ ├── bloodyhands.c │ ├── bullethitreaction │ │ └── bullethitreaction.c │ ├── camerashake.c │ ├── confighandler │ │ ├── cfgparam.c │ │ ├── cfgparamarray.c │ │ ├── cfgparambool.c │ │ ├── cfgparamfloat.c │ │ ├── cfgparamint.c │ │ ├── cfgparamstring.c │ │ └── cfgparamtype.c │ ├── consumeconditiondata.c │ ├── contaminatedarea │ │ ├── contaminatedarea.c │ │ ├── contaminatedarea_dynamic.c │ │ ├── contaminatedarea_dynamicbase.c │ │ ├── contaminatedarea_local.c │ │ ├── contaminatedarealoader.c │ │ ├── dynamicarea_flare.c │ │ ├── effectarea.c │ │ ├── geyserarea.c │ │ ├── hotspringarea.c │ │ ├── jsondatacontaminatedarea.c │ │ ├── spookyarea.c │ │ ├── spookyareamisc.c │ │ └── volcanicarea.c │ ├── contextmenu.c │ ├── cooking │ │ ├── cooking.c │ │ ├── fireconsumable.c │ │ └── fireconsumabletype.c │ ├── corpsedata.c │ ├── craftingmanager.c │ ├── debug │ │ └── presethandlers.c │ ├── debugmonitorvalues.c │ ├── destructioneffects │ │ └── destructioneffects.c │ ├── emoteclasses │ │ ├── emotebase.c │ │ └── emoteclasses.c │ ├── emoteconstructor.c │ ├── emotemanager.c │ ├── environment │ │ └── environment.c │ ├── explosion.c │ ├── explosions │ │ └── flashbangeffect.c │ ├── foodstage │ │ └── foodstage.c │ ├── heatcomfortanimhandler.c │ ├── hitindication │ │ ├── hitdirectionarrow.c │ │ ├── hitdirectionbase.c │ │ ├── hitdirectionimages │ │ │ ├── hitdirectionimagesarrow.c │ │ │ ├── hitdirectionimagesbase.c │ │ │ ├── hitdirectionimagesspike.c │ │ │ └── hitdirectionimagessplash.c │ │ ├── hitdirectionspike.c │ │ └── hitdirectionsplash.c │ ├── hologram.c │ ├── injuryhandler.c │ ├── introscenecharacter.c │ ├── inventoryactionhandler.c │ ├── keybinding.c │ ├── kurushake.c │ ├── lifespanlevel.c │ ├── meleetargeting.c │ ├── messagereceiverbase.c │ ├── missionbaseworld.c │ ├── modules │ │ ├── plantmaterial.c │ │ └── syncedvalue.c │ ├── mousebinding.c │ ├── mousebuttoninfo.c │ ├── nutritionalprofile.c │ ├── objecttemperaturestatedata.c │ ├── playergearspawn │ │ ├── cfgplayerspawndatainterpreted.c │ │ ├── cfgplayerspawndatajson.c │ │ └── cfgplayerspawnhandler.c │ ├── playerlightmanager.c │ ├── playermodifiers │ │ ├── emodifiers.c │ │ ├── modifierbase.c │ │ ├── modifiers │ │ │ ├── antibiotics.c │ │ │ ├── bloodregen.c │ │ │ ├── boneregen.c │ │ │ ├── breathvapourmdfr.c │ │ │ ├── charcoalmdfr.c │ │ │ ├── chelation.c │ │ │ ├── conditions │ │ │ │ ├── areaexposure.c │ │ │ │ ├── bleeding.c │ │ │ │ ├── blinded.c │ │ │ │ ├── brokenarms.c │ │ │ │ ├── brokenlegs.c │ │ │ │ ├── burning.c │ │ │ │ ├── fatigue.c │ │ │ │ ├── fever.c │ │ │ │ ├── heartattack.c │ │ │ │ ├── heatbuffer.c │ │ │ │ ├── hemolyticreaction.c │ │ │ │ ├── poisoning.c │ │ │ │ ├── stuffedstomach.c │ │ │ │ ├── tremor.c │ │ │ │ ├── vomitstuffed.c │ │ │ │ └── wet.c │ │ │ ├── diseases │ │ │ │ ├── braindisease.c │ │ │ │ ├── cholera.c │ │ │ │ ├── commoncold.c │ │ │ │ ├── contamination.c │ │ │ │ ├── contamination2.c │ │ │ │ ├── contamination3.c │ │ │ │ ├── heavymetal.c │ │ │ │ ├── influenza.c │ │ │ │ ├── pneumonia.c │ │ │ │ ├── salmonella.c │ │ │ │ ├── testdisease.c │ │ │ │ ├── woundinfection.c │ │ │ │ └── woundinfection2.c │ │ │ ├── disinfectmdfr.c │ │ │ ├── drowning.c │ │ │ ├── epinephrinemdfr.c │ │ │ ├── flies.c │ │ │ ├── health.c │ │ │ ├── healthregen.c │ │ │ ├── heatcomfortmdfr.c │ │ │ ├── hunger.c │ │ │ ├── immunesystem.c │ │ │ ├── immunityboost.c │ │ │ ├── mask.c │ │ │ ├── morphinemdfr.c │ │ │ ├── painkillersmdfr.c │ │ │ ├── saline.c │ │ │ ├── shock.c │ │ │ ├── shockdamage.c │ │ │ ├── stomach.c │ │ │ ├── testing.c │ │ │ ├── thirst.c │ │ │ ├── toxicity.c │ │ │ └── unconsciousness.c │ │ └── modifiersmanager.c │ ├── playernotifiers │ │ ├── notifierbase.c │ │ ├── notifiers │ │ │ ├── agentsnotfr.c │ │ │ ├── bleedingnotfr.c │ │ │ ├── bloodnotfr.c │ │ │ ├── fevernotfr.c │ │ │ ├── fracturedlegnotfr.c │ │ │ ├── healthnotfr.c │ │ │ ├── heartbeatnotfr.c │ │ │ ├── hungernotfr.c │ │ │ ├── injuredlegnotfr.c │ │ │ ├── pillsnotfr.c │ │ │ ├── sicknotfr.c │ │ │ ├── stuffednotfr.c │ │ │ ├── thirstnotfr.c │ │ │ ├── warmthnotfr.c │ │ │ └── wetnessnotfr.c │ │ └── notifiersmanager.c │ ├── playerstats │ │ ├── playerstatbase.c │ │ ├── playerstatrecord.c │ │ ├── playerstats.c │ │ ├── playerstatspco.c │ │ └── statdebugobject.c │ ├── playerstomach.c │ ├── playersymptoms │ │ ├── smptanimmeta.c │ │ ├── statebase.c │ │ ├── statecb.c │ │ ├── statemanager.c │ │ └── states │ │ │ ├── primary │ │ │ ├── coughstate.c │ │ │ ├── freezestate.c │ │ │ ├── gaspsymptom.c │ │ │ ├── hotstate.c │ │ │ ├── laughterstate.c │ │ │ ├── painheavystate.c │ │ │ ├── painlightstate.c │ │ │ ├── sneezestate.c │ │ │ └── vomitstate.c │ │ │ └── secondary │ │ │ ├── blindnessstate.c │ │ │ ├── bloodloss.c │ │ │ ├── bullethitstate.c │ │ │ ├── deafnesscomplete.c │ │ │ ├── feverblurstate.c │ │ │ ├── handshivers.c │ │ │ └── hmpsevere.c │ ├── propertymodifiers.c │ ├── quickbarbase.c │ ├── rainprocurementcomponent.c │ ├── rainprocurementhandler.c │ ├── rainprocurementmanager.c │ ├── randomgeneratorsyncmanager.c │ ├── recipes │ │ ├── cacheobject.c │ │ ├── recipebase.c │ │ └── recipes │ │ │ ├── attachholster.c │ │ │ ├── attachholsterpouch.c │ │ │ ├── attachpouch.c │ │ │ ├── attachpouchesholster.c │ │ │ ├── bloodtest.c │ │ │ ├── chelatewater.c │ │ │ ├── cleanrags.c │ │ │ ├── cleanweapon.c │ │ │ ├── closescientificbriefcase.c │ │ │ ├── craftarmbandflag.c │ │ │ ├── craftarmbandrag.c │ │ │ ├── craftarmbandraincoat.c │ │ │ ├── craftarrow.c │ │ │ ├── craftarrowbone.c │ │ │ ├── craftbait.c │ │ │ ├── craftbaseballbatbarbed.c │ │ │ ├── craftbaseballbatnailed.c │ │ │ ├── craftbloodbagiv.c │ │ │ ├── craftbolt.c │ │ │ ├── craftboltfeather.c │ │ │ ├── craftbonebait.c │ │ │ ├── craftbonehook.c │ │ │ ├── craftboneknife.c │ │ │ ├── craftbow.c │ │ │ ├── craftburlapstrips.c │ │ │ ├── craftcamonetshelter.c │ │ │ ├── craftchristmaslightsheadband.c │ │ │ ├── craftcookingstand.c │ │ │ ├── craftcourierbag.c │ │ │ ├── craftdrysackbag.c │ │ │ ├── craftfeathers.c │ │ │ ├── craftfencekit.c │ │ │ ├── craftfireplace.c │ │ │ ├── craftfishingrod.c │ │ │ ├── craftfishnettrap.c │ │ │ ├── craftgasmask_filter_improvised.c │ │ │ ├── craftghillieattachment.c │ │ │ ├── craftghilliebushrag.c │ │ │ ├── craftghilliehood.c │ │ │ ├── craftghilliesuit.c │ │ │ ├── craftghillietop.c │ │ │ ├── craftgorkahelmetcomplete.c │ │ │ ├── craftgutsrope.c │ │ │ ├── crafthanddrillkit.c │ │ │ ├── craftimprovisedbag.c │ │ │ ├── craftimprovisedexplosive.c │ │ │ ├── craftimprovisedleatherbag.c │ │ │ ├── craftleathercourierbag.c │ │ │ ├── craftleathersack.c │ │ │ ├── craftlongtorch.c │ │ │ ├── craftmetalwire.c │ │ │ ├── craftrabbitsnare.c │ │ │ ├── craftrag.c │ │ │ ├── craftragrope.c │ │ │ ├── craftsalinebagiv.c │ │ │ ├── craftshelterkit.c │ │ │ ├── craftsmallfishtrap.c │ │ │ ├── craftspearbone.c │ │ │ ├── craftspearstone.c │ │ │ ├── craftsplint.c │ │ │ ├── craftstoneknife.c │ │ │ ├── craftsuppressor.c │ │ │ ├── crafttannedleather.c │ │ │ ├── craftterritoryflagkit.c │ │ │ ├── crafttorch.c │ │ │ ├── crafttripwire.c │ │ │ ├── crafttruck01doublewheel.c │ │ │ ├── craftwatchtowerkit.c │ │ │ ├── craftwitchhoodcoif.c │ │ │ ├── craftwoodencrate.c │ │ │ ├── craftwoodenhook.c │ │ │ ├── craftwoodenplank.c │ │ │ ├── cutoutpepperseeds.c │ │ │ ├── cutoutpumpkinseeds.c │ │ │ ├── cutoutseeds.c │ │ │ ├── cutouttomatoseeds.c │ │ │ ├── cutoutzucchiniseeds.c │ │ │ ├── decraftarmband.c │ │ │ ├── decraftbow.c │ │ │ ├── decraftcamonetshelter.c │ │ │ ├── decraftcarriercomplete.c │ │ │ ├── decraftcarrierholster.c │ │ │ ├── decraftcarrierpouches.c │ │ │ ├── decraftcookingstand.c │ │ │ ├── decraftcourierbag.c │ │ │ ├── decraftdetonator.c │ │ │ ├── decraftfishingrod.c │ │ │ ├── decraftfishnettrap.c │ │ │ ├── decraftghillieattachment.c │ │ │ ├── decraftghilliebushrag.c │ │ │ ├── decraftghilliehood.c │ │ │ ├── decraftghilliesuit.c │ │ │ ├── decraftghillietop.c │ │ │ ├── decrafthanddrillkit.c │ │ │ ├── decraftimprovisedbag.c │ │ │ ├── decraftimprovisedleatherbag.c │ │ │ ├── decraftleathercourierbag.c │ │ │ ├── decraftleathersack.c │ │ │ ├── decraftsnaretrap.c │ │ │ ├── decraftspear.c │ │ │ ├── decraftsplint.c │ │ │ ├── decrafttripwire.c │ │ │ ├── decrafttruck01doublewheel.c │ │ │ ├── decraftwoodencrate.c │ │ │ ├── disinfectitem.c │ │ │ ├── drainliquid.c │ │ │ ├── extinguishtorch.c │ │ │ ├── fillgasmask_filter.c │ │ │ ├── fillsyringe.c │ │ │ ├── fuelchainsaw.c │ │ │ ├── loadmagazine.c │ │ │ ├── opencan.c │ │ │ ├── openscientificbriefcase.c │ │ │ ├── paintak101.c │ │ │ ├── paintak10130mag.c │ │ │ ├── paintak74.c │ │ │ ├── paintak7430mag.c │ │ │ ├── paintak74hndgrdblack.c │ │ │ ├── paintak74hndgrdcamo.c │ │ │ ├── paintak74woodbttstckblack.c │ │ │ ├── paintak74woodbttstckcamo.c │ │ │ ├── paintakfoldingbttstck.c │ │ │ ├── paintakmdrummag.c │ │ │ ├── paintakmpalm30mag.c │ │ │ ├── paintakplasticbttstck.c │ │ │ ├── paintakrailhndgrd.c │ │ │ ├── paintaks74u.c │ │ │ ├── paintaks74ubttstck.c │ │ │ ├── paintakwoodbttstckblack.c │ │ │ ├── paintakwoodbttstckcamo.c │ │ │ ├── paintb95.c │ │ │ ├── paintballistichelmet.c │ │ │ ├── paintcmag10.c │ │ │ ├── paintcmag20.c │ │ │ ├── paintcmag30.c │ │ │ ├── paintcmag40.c │ │ │ ├── paintcz527.c │ │ │ ├── paintcz527camoblack.c │ │ │ ├── paintcz527camogreen.c │ │ │ ├── paintdarkmotohelmet.c │ │ │ ├── paintfirefighteraxe.c │ │ │ ├── paintghillieattblack.c │ │ │ ├── paintghillieattgreen.c │ │ │ ├── paintghillieattgreenmossy.c │ │ │ ├── paintghilliebushragblack.c │ │ │ ├── paintghilliebushraggreen.c │ │ │ ├── paintghilliebushraggreenmossy.c │ │ │ ├── paintghilliehoodblack.c │ │ │ ├── paintghilliehoodgreen.c │ │ │ ├── paintghilliehoodgreenmossy.c │ │ │ ├── paintghilliesuitblack.c │ │ │ ├── paintghilliesuitgreen.c │ │ │ ├── paintghilliesuitgreenmossy.c │ │ │ ├── paintghillietopblack.c │ │ │ ├── paintghillietopgreen.c │ │ │ ├── paintghillietopgreenmossy.c │ │ │ ├── paintgorkahelmet.c │ │ │ ├── paintgorkahelmetcomplete.c │ │ │ ├── paintm4a1.c │ │ │ ├── paintm4cqbbttstck.c │ │ │ ├── paintm4mpbttstck.c │ │ │ ├── paintm4mphndgrd.c │ │ │ ├── paintm4oebttstck.c │ │ │ ├── paintm4plastichndgrd.c │ │ │ ├── paintm4rishndgrd.c │ │ │ ├── paintmosin.c │ │ │ ├── paintmosincamoblack.c │ │ │ ├── paintmosincamogreen.c │ │ │ ├── paintmotohelmet.c │ │ │ ├── paintruger1022.c │ │ │ ├── paintsawedoffmosin.c │ │ │ ├── paintsawedoffmosincamoblack.c │ │ │ ├── paintsawedoffmosincamogreen.c │ │ │ ├── paintsks.c │ │ │ ├── paintzsh3pilothelmet.c │ │ │ ├── patchitem.c │ │ │ ├── peelpotato.c │ │ │ ├── pluginrecipesmanagerbase.c │ │ │ ├── pokeholesbarrel.c │ │ │ ├── pourliquid.c │ │ │ ├── prepareanimal.c │ │ │ ├── preparecarp.c │ │ │ ├── preparechicken.c │ │ │ ├── preparefish.c │ │ │ ├── preparefox.c │ │ │ ├── preparemackerel.c │ │ │ ├── preparerabbit.c │ │ │ ├── preparesteelheadtrout.c │ │ │ ├── preparewalleyepollock.c │ │ │ ├── purifywater.c │ │ │ ├── recipetest.c │ │ │ ├── refueltorch.c │ │ │ ├── repairelectric.c │ │ │ ├── repairepoxy.c │ │ │ ├── repaireyepatch.c │ │ │ ├── repairplanks.c │ │ │ ├── repairwithpliers.c │ │ │ ├── repairwithrags.c │ │ │ ├── repairwithtape.c │ │ │ ├── sawoffb95.c │ │ │ ├── sawofffamas.c │ │ │ ├── sawoffizh18.c │ │ │ ├── sawoffizh18shotgun.c │ │ │ ├── sawoffmagnum.c │ │ │ ├── sawoffmosin.c │ │ │ ├── sawoffmosinpainted.c │ │ │ ├── sawoffshotgunizh43.c │ │ │ ├── sawwoodenlog.c │ │ │ ├── sharpenbroom.c │ │ │ ├── sharpenlongstick.c │ │ │ ├── sharpenmelee.c │ │ │ ├── sharpenstick.c │ │ │ ├── splitbroom.c │ │ │ ├── splitfirewood.c │ │ │ ├── splitlongwoodenstick.c │ │ │ ├── splitstones.c │ │ │ ├── test.c │ │ │ ├── upgradetorchwithlard.c │ │ │ ├── upgradetorchwithliquidfuel.c │ │ │ └── writeletter.c │ ├── recoilbase │ │ ├── recoilbase.c │ │ └── recoils │ │ │ ├── ak101recoil.c │ │ │ ├── ak74recoil.c │ │ │ ├── akmrecoil.c │ │ │ ├── aks74urecoil.c │ │ │ ├── augrecoil.c │ │ │ ├── b95recoil.c │ │ │ ├── colt1911recoil.c │ │ │ ├── crossbowrecoil.c │ │ │ ├── cz527recoil.c │ │ │ ├── cz550recoil.c │ │ │ ├── cz75recoil.c │ │ │ ├── deaglerecoil.c │ │ │ ├── defaultrecoil.c │ │ │ ├── derringerrecoil.c │ │ │ ├── falrecoil.c │ │ │ ├── famasrecoil.c │ │ │ ├── fnx45recoil.c │ │ │ ├── glockrecoil.c │ │ │ ├── izh18recoil.c │ │ │ ├── izh18sawedoffrecoil.c │ │ │ ├── izh18shotgunrecoil.c │ │ │ ├── izh43recoil.c │ │ │ ├── longhornrecoil.c │ │ │ ├── m14recoil.c │ │ │ ├── m16a2recoil.c │ │ │ ├── m4a1recoil.c │ │ │ ├── m79recoil.c │ │ │ ├── magnumrecoil.c │ │ │ ├── makarovrecoil.c │ │ │ ├── mkiirecoil.c │ │ │ ├── mosinrecoil.c │ │ │ ├── mosinsawedoffrecoil.c │ │ │ ├── mp133recoil.c │ │ │ ├── mp5krecoil.c │ │ │ ├── p1recoil.c │ │ │ ├── pm73rak.c │ │ │ ├── pp19recoil.c │ │ │ ├── r12recoil.c │ │ │ ├── repeaterrecoil.c │ │ │ ├── ruger1022recoil.c │ │ │ ├── scoutrecoil.c │ │ │ ├── siagarecoil.c │ │ │ ├── skorpionrecoil.c │ │ │ ├── sksrecoil.c │ │ │ ├── ssg82recoil.c │ │ │ ├── sv98recoil.c │ │ │ ├── svdrecoil.c │ │ │ ├── ump45recoil.c │ │ │ ├── vssrecoil.c │ │ │ └── winchester70recoil.c │ ├── remoteplayerdebug │ │ ├── damagedata.c │ │ ├── remoteplayerdamagedebug.c │ │ ├── remoteplayermeta.c │ │ └── remoteplayerstatdebug.c │ ├── sceneeditor │ │ ├── scenedata.c │ │ ├── sceneobject.c │ │ └── sceneplayer.c │ ├── shockhandler.c │ ├── shockhitreaction │ │ └── shockhitreaction.c │ ├── softskillsmanager.c │ ├── soundevents │ │ ├── infectedsoundevents │ │ │ ├── events │ │ │ │ └── mindstates.c │ │ │ ├── infectedsoundeventbase.c │ │ │ └── infectedsoundeventhandler.c │ │ ├── playersoundevents │ │ │ ├── events │ │ │ │ ├── damageevents.c │ │ │ │ ├── drowningevents.c │ │ │ │ ├── heatcomfortevents.c │ │ │ │ ├── holdbreathevents.c │ │ │ │ ├── injuryevents.c │ │ │ │ ├── jumpevents.c │ │ │ │ ├── meleeattack.c │ │ │ │ ├── miscevents.c │ │ │ │ ├── staminaevents.c │ │ │ │ └── symptomevents.c │ │ │ ├── playersoundeventbase.c │ │ │ └── playersoundeventhandler.c │ │ ├── replacesoundevents │ │ │ ├── events │ │ │ │ └── actionsurfaceevents.c │ │ │ ├── replacesoundeventbase.c │ │ │ └── replacesoundeventhandler.c │ │ └── soundevents.c │ ├── soundhandlers │ │ ├── freezingsoundhandler.c │ │ ├── hungersoundhandler.c │ │ ├── injurysoundhandler.c │ │ ├── itemsoundhandler.c │ │ ├── playersoundmanager.c │ │ └── thirstsoundhandler.c │ ├── sqfdebugwatcher.c │ ├── staminahandler.c │ ├── staminamodifierdata.c │ ├── staminasoundhandler.c │ ├── stanceindicator.c │ ├── toggleselections.c │ ├── transfervalues.c │ ├── transmissionagents │ │ ├── agents │ │ │ ├── agentbase.c │ │ │ ├── brainagent.c │ │ │ ├── chemicalagent.c │ │ │ ├── choleraagent.c │ │ │ ├── foodpoisonagent.c │ │ │ ├── heavymetalagent.c │ │ │ ├── influenzaagent.c │ │ │ ├── nerveagent.c │ │ │ ├── salmonellaagent.c │ │ │ └── woundagent.c │ │ └── playeragentpool │ │ │ └── playeragentpool.c │ ├── undergroundbunkerhandlerclient.c │ ├── undergroundhandlerclient.c │ ├── underobjectdecalspawncomponent.c │ ├── useractionscomponent │ │ ├── _constants.c │ │ ├── actionbase.c │ │ ├── actioncomponents │ │ │ ├── cabase.c │ │ │ ├── cacontinuousbase.c │ │ │ ├── cacontinuouscraft.c │ │ │ ├── cacontinuousdisinfectplant.c │ │ │ ├── cacontinuousempty.c │ │ │ ├── cacontinuousemptymagazine.c │ │ │ ├── cacontinuousfertilizegardenslot.c │ │ │ ├── cacontinuousfill.c │ │ │ ├── cacontinuousfillbrakes.c │ │ │ ├── cacontinuousfillcoolant.c │ │ │ ├── cacontinuousfillfuel.c │ │ │ ├── cacontinuousfilloil.c │ │ │ ├── cacontinuousfillpowergenerator.c │ │ │ ├── cacontinuousfish.c │ │ │ ├── cacontinuousloadmagazine.c │ │ │ ├── cacontinuousminerock.c │ │ │ ├── cacontinuousminewood.c │ │ │ ├── cacontinuousquantity.c │ │ │ ├── cacontinuousquantitybloodtransfer.c │ │ │ ├── cacontinuousquantityedible.c │ │ │ ├── cacontinuousquantityextinguish.c │ │ │ ├── cacontinuousquantityliquidtransfer.c │ │ │ ├── cacontinuousquantityrepeat.c │ │ │ ├── cacontinuousrepeat.c │ │ │ ├── cacontinuousrepeatfishing.c │ │ │ ├── cacontinuousrepeatstartengine.c │ │ │ ├── cacontinuoustime.c │ │ │ ├── cacontinuoustimecooking.c │ │ │ ├── cacontinuoustransferquantity.c │ │ │ ├── cacontinuouswaterplant.c │ │ │ ├── cacontinuouswaterslot.c │ │ │ ├── cacontinuouswringclothes.c │ │ │ ├── cadummy.c │ │ │ ├── cainteract.c │ │ │ ├── cainteractloop.c │ │ │ ├── casingleuse.c │ │ │ ├── casingleusebase.c │ │ │ ├── casingleusequantity.c │ │ │ ├── casingleusequantityedible.c │ │ │ └── casingleuseturnonplugged.c │ │ ├── actionconstructor.c │ │ ├── actioninput.c │ │ ├── actionmanagerbase.c │ │ ├── actionmanagerclient.c │ │ ├── actionmanagerserver.c │ │ ├── actions │ │ │ ├── actionconstants.c │ │ │ ├── actioncontinuousbase.c │ │ │ ├── actioninstantbase.c │ │ │ ├── actioninteractbase.c │ │ │ ├── actioninteractloopbase.c │ │ │ ├── actionsequentialbase.c │ │ │ ├── actionsingleusebase.c │ │ │ ├── continuous │ │ │ │ ├── actionactivatetrap.c │ │ │ │ ├── actionarmexplosive.c │ │ │ │ ├── actionattachexplosivestrigger.c │ │ │ │ ├── actionbreaklongwoodenstick.c │ │ │ │ ├── actionbuildoven.c │ │ │ │ ├── actionbuildpart.c │ │ │ │ ├── actionbuildstonecircle.c │ │ │ │ ├── actionburyashes.c │ │ │ │ ├── actionburybody.c │ │ │ │ ├── actionconsume.c │ │ │ │ ├── actioncookonstick.c │ │ │ │ ├── actioncoverheadself.c │ │ │ │ ├── actioncoverheadtarget.c │ │ │ │ ├── actioncraft.c │ │ │ │ ├── actioncraftarmband.c │ │ │ │ ├── actioncraftbolts.c │ │ │ │ ├── actioncraftboltsfeather.c │ │ │ │ ├── actioncraftboneknife.c │ │ │ │ ├── actioncraftboneknifeenv.c │ │ │ │ ├── actioncraftimprovisedeyepatch.c │ │ │ │ ├── actioncraftimprovisedfacecover.c │ │ │ │ ├── actioncraftimprovisedfeetcover.c │ │ │ │ ├── actioncraftimprovisedhandscover.c │ │ │ │ ├── actioncraftimprovisedheadcover.c │ │ │ │ ├── actioncraftimprovisedlegscover.c │ │ │ │ ├── actioncraftimprovisedtorsocover.c │ │ │ │ ├── actioncraftropebelt.c │ │ │ │ ├── actioncraftstoneknifeenv.c │ │ │ │ ├── actioncreategreenhousegardenplot.c │ │ │ │ ├── actiondecraftdrysackbag.c │ │ │ │ ├── actiondecraftropebelt.c │ │ │ │ ├── actiondecraftwitchhoodcoif.c │ │ │ │ ├── actiondestroycombinationlock.c │ │ │ │ ├── actiondestroypart.c │ │ │ │ ├── actiondialcombinationlock.c │ │ │ │ ├── actiondialcombinationlockontarget.c │ │ │ │ ├── actiondiggardenplot.c │ │ │ │ ├── actiondiginstash.c │ │ │ │ ├── actiondigoutstash.c │ │ │ │ ├── actiondigworms.c │ │ │ │ ├── actiondisarmexplosive.c │ │ │ │ ├── actiondisarmexplosivewithremotedetonator.c │ │ │ │ ├── actiondisarmexplosivewithremotedetonatorunpaired.c │ │ │ │ ├── actiondisarmmine.c │ │ │ │ ├── actiondisinfectplant.c │ │ │ │ ├── actiondismantlegardenplot.c │ │ │ │ ├── actiondismantleoven.c │ │ │ │ ├── actiondismantlepart.c │ │ │ │ ├── actiondismantlestonecircle.c │ │ │ │ ├── actiondrainliquid.c │ │ │ │ ├── actiondrink.c │ │ │ │ ├── actiondrinkcan.c │ │ │ │ ├── actiondrinkcookingpot.c │ │ │ │ ├── actiondrinkpondcontinuous.c │ │ │ │ ├── actiondrinkthroughcontinuous.c │ │ │ │ ├── actiondrinkwellcontinuous.c │ │ │ │ ├── actiondummyrelease.c │ │ │ │ ├── actioneat.c │ │ │ │ ├── actioneatcan.c │ │ │ │ ├── actioneatcereal.c │ │ │ │ ├── actioneatfruit.c │ │ │ │ ├── actioneatmeat.c │ │ │ │ ├── actioneatsnowcontinuous.c │ │ │ │ ├── actionemptybottlebase.c │ │ │ │ ├── actionemptycookingpot.c │ │ │ │ ├── actionemptymagazine.c │ │ │ │ ├── actionextinguishfireplacebyextinguisher.c │ │ │ │ ├── actionextinguishfireplacebyliquid.c │ │ │ │ ├── actionfertilizeslot.c │ │ │ │ ├── actionfillbottlebase.c │ │ │ │ ├── actionfillbottlesnow.c │ │ │ │ ├── actionfillgeneratortank.c │ │ │ │ ├── actionfillobject.c │ │ │ │ ├── actionfishing.c │ │ │ │ ├── actionfishingnew.c │ │ │ │ ├── actionfoldbasebuildingobject.c │ │ │ │ ├── actionforceconsume.c │ │ │ │ ├── actionforcedrink.c │ │ │ │ ├── actionforcefeed.c │ │ │ │ ├── actionforcefeedcan.c │ │ │ │ ├── actionforcefeedmeat.c │ │ │ │ ├── actiongagself.c │ │ │ │ ├── actiongagtarget.c │ │ │ │ ├── actionignitefireplacebyair.c │ │ │ │ ├── actionlightitemonfire.c │ │ │ │ ├── actionlightitemonfirewithblowtorch.c │ │ │ │ ├── actionloadmagazine.c │ │ │ │ ├── actionlockattachment.c │ │ │ │ ├── actionlockdoors.c │ │ │ │ ├── actionlowerflag.c │ │ │ │ ├── actionminebush.c │ │ │ │ ├── actionminebushbyhand.c │ │ │ │ ├── actionminerock.c │ │ │ │ ├── actionminetree.c │ │ │ │ ├── actionminetreebark.c │ │ │ │ ├── actionmountbarbedwire.c │ │ │ │ ├── actionpackgift.c │ │ │ │ ├── actionplaceobject.c │ │ │ │ ├── actionplaceonground.c │ │ │ │ ├── actionpourliquid.c │ │ │ │ ├── actionpushboat.c │ │ │ │ ├── actionpushcar.c │ │ │ │ ├── actionpushobject.c │ │ │ │ ├── actionraiseflag.c │ │ │ │ ├── actionraisemegaphone.c │ │ │ │ ├── actionrefueltorch.c │ │ │ │ ├── actionrepairboatchassis.c │ │ │ │ ├── actionrepairboatengine.c │ │ │ │ ├── actionrepaircarchassis.c │ │ │ │ ├── actionrepaircarchassiswithblowtorch.c │ │ │ │ ├── actionrepaircarengine.c │ │ │ │ ├── actionrepaircarenginewithblowtorch.c │ │ │ │ ├── actionrepaircarpart.c │ │ │ │ ├── actionrepaircarpartwithblowtorch.c │ │ │ │ ├── actionrepairitemwithblowtorch.c │ │ │ │ ├── actionrepairpart.c │ │ │ │ ├── actionrepairshelter.c │ │ │ │ ├── actionrepairtent.c │ │ │ │ ├── actionrepairtentpart.c │ │ │ │ ├── actionrepairvehiclepartbase.c │ │ │ │ ├── actionrestrainself.c │ │ │ │ ├── actionrestraintarget.c │ │ │ │ ├── actionsawplanks.c │ │ │ │ ├── actionshave.c │ │ │ │ ├── actionshavetarget.c │ │ │ │ ├── actionskinning.c │ │ │ │ ├── actionsortammopile.c │ │ │ │ ├── actionstripcarriervest.c │ │ │ │ ├── actiontransferliquid.c │ │ │ │ ├── actiontunefrequency.c │ │ │ │ ├── actiontuneradiostation.c │ │ │ │ ├── actionturnvalve.c │ │ │ │ ├── actionturnvalveundergroundreservoir.c │ │ │ │ ├── actionuncoverheadself.c │ │ │ │ ├── actionuncoverheadtarget.c │ │ │ │ ├── actionungagself.c │ │ │ │ ├── actionungagtarget.c │ │ │ │ ├── actionunlockcontainerdoor.c │ │ │ │ ├── actionunlockdoors.c │ │ │ │ ├── actionunmountbarbedwire.c │ │ │ │ ├── actionunpackbox.c │ │ │ │ ├── actionunpackgift.c │ │ │ │ ├── actionunrestrainself.c │ │ │ │ ├── actionunrestraintarget.c │ │ │ │ ├── actionunrestraintargetempty.c │ │ │ │ ├── actionupgradetorchfromgaspump.c │ │ │ │ ├── actionuserangefinder.c │ │ │ │ ├── actionviewbinoculars.c │ │ │ │ ├── actionviewcompass.c │ │ │ │ ├── actionviewoptics.c │ │ │ │ ├── actionwashhandsitemcontinuous.c │ │ │ │ ├── actionwashhandssnow.c │ │ │ │ ├── actionwashhandswater.c │ │ │ │ ├── actionwashhandswell.c │ │ │ │ ├── actionwatergardenslot.c │ │ │ │ ├── actionwaterplant.c │ │ │ │ ├── actionworldcraft.c │ │ │ │ ├── actionwringclothes.c │ │ │ │ ├── deployactions │ │ │ │ │ ├── actiondeploybase.c │ │ │ │ │ ├── actiondeployhuntingtrap.c │ │ │ │ │ └── actiondeployobject.c │ │ │ │ ├── medical │ │ │ │ │ ├── actionbandagebase.c │ │ │ │ │ ├── actionbandageself.c │ │ │ │ │ ├── actionbandagetarget.c │ │ │ │ │ ├── actionburnsewself.c │ │ │ │ │ ├── actionburnsewtarget.c │ │ │ │ │ ├── actioncheckpulse.c │ │ │ │ │ ├── actioncheckpulsetarget.c │ │ │ │ │ ├── actioncollectbloodself.c │ │ │ │ │ ├── actioncollectbloodtarget.c │ │ │ │ │ ├── actioncollectsampleself.c │ │ │ │ │ ├── actioncollectsampletarget.c │ │ │ │ │ ├── actioncpr.c │ │ │ │ │ ├── actiondefibrilatebase.c │ │ │ │ │ ├── actiondefibrilateself.c │ │ │ │ │ ├── actiondefibrilatetarget.c │ │ │ │ │ ├── actiondrinkalcohol.c │ │ │ │ │ ├── actiondrinkdisinfectant.c │ │ │ │ │ ├── actiondrinkdisinfectant2.c │ │ │ │ │ ├── actioneatcharcoaltablets.c │ │ │ │ │ ├── actioneatpainkillertablets.c │ │ │ │ │ ├── actioneatpurificationtablets.c │ │ │ │ │ ├── actioneattetracyclineantibiotics.c │ │ │ │ │ ├── actioneatvitaminbottle.c │ │ │ │ │ ├── actionfeedcharcoaltablets.c │ │ │ │ │ ├── actionfeedpainkillertablets.c │ │ │ │ │ ├── actionfeedpurificationtablets.c │ │ │ │ │ ├── actionfeedtetracyclineantibiotics.c │ │ │ │ │ ├── actionfeedvitaminbottle.c │ │ │ │ │ ├── actionforcedrinkalcohol.c │ │ │ │ │ ├── actionforcedrinkdisinfectant.c │ │ │ │ │ ├── actiongivebloodself.c │ │ │ │ │ ├── actiongivebloodtarget.c │ │ │ │ │ ├── actiongivesalineself.c │ │ │ │ │ ├── actiongivesalinetarget.c │ │ │ │ │ ├── actionmeasuretemperatureself.c │ │ │ │ │ ├── actionmeasuretemperaturetarget.c │ │ │ │ │ ├── actionsewself.c │ │ │ │ │ ├── actionsewtarget.c │ │ │ │ │ ├── actionsplintself.c │ │ │ │ │ ├── actionsplinttarget.c │ │ │ │ │ ├── actiontestbloodself.c │ │ │ │ │ └── actiontestbloodtarget.c │ │ │ │ └── vehicles │ │ │ │ │ ├── actioncarhorn.c │ │ │ │ │ ├── actionfillbrakes.c │ │ │ │ │ ├── actionfillcoolant.c │ │ │ │ │ ├── actionfillfuel.c │ │ │ │ │ ├── actionfilloil.c │ │ │ │ │ ├── actionstartengine.c │ │ │ │ │ └── actionstartengineboat.c │ │ │ ├── instant │ │ │ │ └── actiondebug.c │ │ │ ├── interact │ │ │ │ ├── actionbuildshelter.c │ │ │ │ ├── actionclosebarrel.c │ │ │ │ ├── actionclosebarrelholes.c │ │ │ │ ├── actionclosedoors.c │ │ │ │ ├── actionclosefence.c │ │ │ │ ├── actiondetach.c │ │ │ │ ├── actiondetachfromtarget.c │ │ │ │ ├── actiondetachpowersourcefrompanel.c │ │ │ │ ├── actionenterladder.c │ │ │ │ ├── actionexitladder.c │ │ │ │ ├── actionfoldobject.c │ │ │ │ ├── actiongetintransport.c │ │ │ │ ├── actiongetouttransport.c │ │ │ │ ├── actionhandspartswitch.c │ │ │ │ ├── actionharvestcrops.c │ │ │ │ ├── actionitest.c │ │ │ │ ├── actionlockeddoors.c │ │ │ │ ├── actionnextcombinationlockdialontarget.c │ │ │ │ ├── actionopenbarrel.c │ │ │ │ ├── actionopenbarrelholes.c │ │ │ │ ├── actionopendoors.c │ │ │ │ ├── actionopenfence.c │ │ │ │ ├── actionoperatepanel.c │ │ │ │ ├── actionoperatepanelpowerstation.c │ │ │ │ ├── actionpackshelter.c │ │ │ │ ├── actionpacktent.c │ │ │ │ ├── actionpickberry.c │ │ │ │ ├── actionpickupchicken.c │ │ │ │ ├── actionpullbodyfromtransport.c │ │ │ │ ├── actionpulloutplug.c │ │ │ │ ├── actionremoveplant.c │ │ │ │ ├── actionremoveseed.c │ │ │ │ ├── actionrepacktent.c │ │ │ │ ├── actionrepositionpluggeditem.c │ │ │ │ ├── actionsetalarmclock.c │ │ │ │ ├── actionsetkitchentimer.c │ │ │ │ ├── actionswapitemtohand.c │ │ │ │ ├── actiontakearrow.c │ │ │ │ ├── actiontakearrowtohands.c │ │ │ │ ├── actiontakefireplacefrombarrel.c │ │ │ │ ├── actiontakefireplaceindoor.c │ │ │ │ ├── actiontakehybridattachment.c │ │ │ │ ├── actiontakehybridattachmenttohands.c │ │ │ │ ├── actiontakeitem.c │ │ │ │ ├── actiontakeitemtohands.c │ │ │ │ ├── actiontakematerialtohands.c │ │ │ │ ├── actiontakeovenindoor.c │ │ │ │ ├── actiontoggletentopen.c │ │ │ │ ├── actiontunefrequencyonground.c │ │ │ │ ├── actionturnoffpowergenerator.c │ │ │ │ ├── actionturnoffspotlight.c │ │ │ │ ├── actionturnofftransmitteronground.c │ │ │ │ ├── actionturnoffwhileonground.c │ │ │ │ ├── actionturnonpowergenerator.c │ │ │ │ ├── actionturnonspotlight.c │ │ │ │ ├── actionturnontransmitteronground.c │ │ │ │ ├── actionturnonwhileonground.c │ │ │ │ ├── actionunplugthisbycord.c │ │ │ │ ├── actionuseundergroundlever.c │ │ │ │ ├── actionuseundergroundpanel.c │ │ │ │ ├── actionwashhandswaterone.c │ │ │ │ ├── actionwashhandswellone.c │ │ │ │ └── vehicles │ │ │ │ │ ├── actionanimatecarselection.c │ │ │ │ │ ├── actionanimateseats.c │ │ │ │ │ ├── actioncardoors.c │ │ │ │ │ ├── actioncardoorsoutside.c │ │ │ │ │ ├── actionclosecardoors.c │ │ │ │ │ ├── actionclosecardoorsoutside.c │ │ │ │ │ ├── actionopencardoors.c │ │ │ │ │ ├── actionopencardoorsoutside.c │ │ │ │ │ ├── actionsideplateinteract.c │ │ │ │ │ └── actionswitchlights.c │ │ │ ├── singleuse │ │ │ │ ├── actionattach.c │ │ │ │ ├── actionattachonproxy.c │ │ │ │ ├── actionattachonselection.c │ │ │ │ ├── actionattachontentproxy.c │ │ │ │ ├── actionattachontrap.c │ │ │ │ ├── actionattachpowersourcetopanel.c │ │ │ │ ├── actionattachseeds.c │ │ │ │ ├── actionattachtoconstruction.c │ │ │ │ ├── actionattachwheels.c │ │ │ │ ├── actionattachwithswich.c │ │ │ │ ├── actionbuildpartswitch.c │ │ │ │ ├── actionclapbeartrapwiththisitem.c │ │ │ │ ├── actionclose.c │ │ │ │ ├── actionconsumesingle.c │ │ │ │ ├── actioncreateindoorfireplace.c │ │ │ │ ├── actioncreateindooroven.c │ │ │ │ ├── actiondisinfectplantbit.c │ │ │ │ ├── actiondropitem.c │ │ │ │ ├── actiondropitemsimple.c │ │ │ │ ├── actionemptyseedspack.c │ │ │ │ ├── actionextinquishtorchvideo.c │ │ │ │ ├── actionfoldbandanatohead.c │ │ │ │ ├── actionfoldbandanatomask.c │ │ │ │ ├── actionfoldentitytoslot.c │ │ │ │ ├── actionfoldmap.c │ │ │ │ ├── actionforceabite.c │ │ │ │ ├── actionforceabitecan.c │ │ │ │ ├── actionforceasip.c │ │ │ │ ├── actionforceconsumesingle.c │ │ │ │ ├── actionhandcufftarget.c │ │ │ │ ├── actioninstallsparkplug.c │ │ │ │ ├── actionlighttorchvideo.c │ │ │ │ ├── actionmeasurebattery.c │ │ │ │ ├── actionnextcombinationlockdial.c │ │ │ │ ├── actionopen.c │ │ │ │ ├── actionpin.c │ │ │ │ ├── actionplacefireplaceindoor.c │ │ │ │ ├── actionplacefireplaceintobarrel.c │ │ │ │ ├── actionplaceovenindoor.c │ │ │ │ ├── actionplantseed.c │ │ │ │ ├── actionplugin.c │ │ │ │ ├── actionplugintofence.c │ │ │ │ ├── actionplugtargetintothis.c │ │ │ │ ├── actionreadpaper.c │ │ │ │ ├── actionrepairwithtoolfromhands.c │ │ │ │ ├── actionresetkitchentimer.c │ │ │ │ ├── actiontakeabite.c │ │ │ │ ├── actiontakeabitecan.c │ │ │ │ ├── actiontakeasip.c │ │ │ │ ├── actiontakematerialtohandsswitch.c │ │ │ │ ├── actiontogglefishing.c │ │ │ │ ├── actiontogglenvg.c │ │ │ │ ├── actiontogglenvmode.c │ │ │ │ ├── actiontoggleplaceobject.c │ │ │ │ ├── actiontoggleplaceobjectdigging.c │ │ │ │ ├── actiontriggerremotely.c │ │ │ │ ├── actionturnoffalarmclock.c │ │ │ │ ├── actionturnoffheadtorch.c │ │ │ │ ├── actionturnoffhelmetflashlight.c │ │ │ │ ├── actionturnofftransmitter.c │ │ │ │ ├── actionturnoffweaponflashlight.c │ │ │ │ ├── actionturnoffwhileinhands.c │ │ │ │ ├── actionturnonalarmclock.c │ │ │ │ ├── actionturnonchemlight.c │ │ │ │ ├── actionturnonheadtorch.c │ │ │ │ ├── actionturnonheatpack.c │ │ │ │ ├── actionturnonhelmetflashlight.c │ │ │ │ ├── actionturnontransmitter.c │ │ │ │ ├── actionturnonweaponflashlight.c │ │ │ │ ├── actionturnonwhileinhands.c │ │ │ │ ├── actionunfoldbandana.c │ │ │ │ ├── actionunfoldentity.c │ │ │ │ ├── actionunfoldmap.c │ │ │ │ ├── actionunpin.c │ │ │ │ ├── actionwashhandsitem.c │ │ │ │ ├── actionworldcraftcancel.c │ │ │ │ ├── actionworldcraftswitch.c │ │ │ │ ├── actionworldflagactionswitch.c │ │ │ │ ├── actionworldliquidactionswitch.c │ │ │ │ ├── actionwritepaper.c │ │ │ │ ├── actionzoomin.c │ │ │ │ ├── actionzoomout.c │ │ │ │ ├── medical │ │ │ │ │ ├── actionbitecharcoaltablets.c │ │ │ │ │ ├── actionbitepainkillertablets.c │ │ │ │ │ ├── actionbitepurificationtablets.c │ │ │ │ │ ├── actionbitetetracyclineantibiotics.c │ │ │ │ │ ├── actionbitevitaminbottle.c │ │ │ │ │ ├── actiondisinfectself.c │ │ │ │ │ ├── actiondisinfecttarget.c │ │ │ │ │ ├── actioneatpillfrombottle.c │ │ │ │ │ ├── actioneattabletfromwrapper.c │ │ │ │ │ ├── actionforcebitecharcoaltablets.c │ │ │ │ │ ├── actionforcebitepainkillertablets.c │ │ │ │ │ ├── actionforcebitepurificationtablets.c │ │ │ │ │ ├── actionforcebitetetracyclineantibiotics.c │ │ │ │ │ ├── actionforcebitevitaminbottle.c │ │ │ │ │ ├── actioninjectepinephrineself.c │ │ │ │ │ ├── actioninjectepinephrinetarget.c │ │ │ │ │ ├── actioninjectmorphineself.c │ │ │ │ │ ├── actioninjectmorphinetarget.c │ │ │ │ │ ├── actioninjectself.c │ │ │ │ │ └── actioninjecttarget.c │ │ │ │ └── vehicles │ │ │ │ │ ├── actionstopengine.c │ │ │ │ │ ├── actionstopengineboat.c │ │ │ │ │ └── actionswitchseats.c │ │ │ └── weapons │ │ │ │ ├── firearmactionattachmagazine.c │ │ │ │ ├── firearmactionbase.c │ │ │ │ ├── firearmactiondetachmagazine.c │ │ │ │ ├── firearmactionloadbullet.c │ │ │ │ ├── firearmactionloadmultibullet.c │ │ │ │ ├── firearmactionmechanicmanipulate.c │ │ │ │ └── firearmactionunjam.c │ │ ├── actiontargets.c │ │ ├── actionvariantsmanager.c │ │ ├── animatedactionbase.c │ │ ├── itemconditioncomponents │ │ │ ├── ccibase.c │ │ │ ├── ccidummy.c │ │ │ ├── ccinone.c │ │ │ ├── ccinonruined.c │ │ │ ├── ccinotempty.c │ │ │ ├── ccinotpresent.c │ │ │ ├── ccinotruinedanddry.c │ │ │ ├── ccinotruinedandempty.c │ │ │ └── ccipresent.c │ │ └── targetconditionscomponents │ │ │ ├── cctbase.c │ │ │ ├── cctcursor.c │ │ │ ├── cctcursornoobject.c │ │ │ ├── cctcursornoruincheck.c │ │ │ ├── cctcursorparent.c │ │ │ ├── cctdummy.c │ │ │ ├── cctman.c │ │ │ ├── cctnone.c │ │ │ ├── cctnonruined.c │ │ │ ├── cctobject.c │ │ │ ├── cctself.c │ │ │ ├── cctsurface.c │ │ │ ├── ccttree.c │ │ │ └── cctwatersurface.c │ ├── vehiclemanager.c │ ├── virtualhud │ │ ├── _constants.c │ │ ├── displayelementbadge.c │ │ ├── displayelementbase.c │ │ ├── displayelementtendency.c │ │ ├── displaystatus.c │ │ └── elements │ │ │ ├── badge │ │ │ ├── badgebleeding.c │ │ │ ├── badgefracture.c │ │ │ ├── badgeheartbeat.c │ │ │ ├── badgelegs.c │ │ │ ├── badgepills.c │ │ │ ├── badgepoisoned.c │ │ │ ├── badgesick.c │ │ │ ├── badgestuffed.c │ │ │ └── badgewet.c │ │ │ ├── misc │ │ │ └── elementstance.c │ │ │ └── tendency │ │ │ ├── tendencybacteria.c │ │ │ ├── tendencyblood.c │ │ │ ├── tendencyhealth.c │ │ │ ├── tendencyhunger.c │ │ │ ├── tendencytemperature.c │ │ │ └── tendencythirst.c │ ├── weapondebug.c │ ├── weapons │ │ └── weaponmanager.c │ ├── worlds │ │ ├── chernarusplus.c │ │ ├── enoch.c │ │ ├── mainmenuworlddata.c │ │ └── sakhal.c │ └── writtennotedata.c ├── entities.c ├── entities │ ├── advancedcommunication │ │ ├── advancedcommunication.c │ │ ├── land_lamp_city1_amp.c │ │ ├── land_power_pole_conc1_amp.c │ │ ├── land_power_pole_conc4_lamp_amp.c │ │ ├── land_power_pole_wood1_amp.c │ │ ├── land_power_pole_wood1_lamp_amp.c │ │ ├── land_radio_panelbig.c │ │ └── land_radio_panelpas.c │ ├── building │ │ ├── buildingwithfireplace.c │ │ ├── crashbase.c │ │ ├── fuelstation.c │ │ ├── industrial │ │ │ └── misc │ │ │ │ └── land_misc_through_static.c │ │ ├── military │ │ │ └── houses │ │ │ │ ├── mil_barracks1.c │ │ │ │ ├── mil_barracks3.c │ │ │ │ └── mil_barracks4.c │ │ ├── outdoorthermometer.c │ │ ├── residential │ │ │ ├── houseblocks │ │ │ │ ├── houseblock_1f1.c │ │ │ │ ├── houseblock_1f3.c │ │ │ │ ├── houseblock_1f4.c │ │ │ │ ├── houseblock_2f1.c │ │ │ │ ├── houseblock_2f8.c │ │ │ │ ├── houseblock_2f9.c │ │ │ │ ├── houseblock_3f2.c │ │ │ │ └── houseblock_5f.c │ │ │ ├── houses │ │ │ │ ├── land_airfield_small_control.c │ │ │ │ ├── land_house_1b01_pub.c │ │ │ │ ├── land_house_1w01.c │ │ │ │ ├── land_house_1w02.c │ │ │ │ ├── land_house_1w03.c │ │ │ │ ├── land_house_1w04.c │ │ │ │ ├── land_house_1w05.c │ │ │ │ ├── land_house_1w06.c │ │ │ │ ├── land_house_1w08.c │ │ │ │ ├── land_house_1w09.c │ │ │ │ ├── land_house_1w10.c │ │ │ │ ├── land_house_1w11.c │ │ │ │ ├── land_house_1w12.c │ │ │ │ ├── land_house_2b01.c │ │ │ │ ├── land_house_2w01.c │ │ │ │ ├── land_house_2w02.c │ │ │ │ └── land_village_pub.c │ │ │ └── misc │ │ │ │ ├── land_misc_greenhouse.c │ │ │ │ ├── land_misc_well_pump_blue.c │ │ │ │ └── land_misc_well_pump_yellow.c │ │ ├── signs.c │ │ ├── specific │ │ │ ├── anniversarymusicsource.c │ │ │ ├── anniversaryspotlight.c │ │ │ ├── bonfire.c │ │ │ ├── hotspring.c │ │ │ ├── land_buoy.c │ │ │ ├── land_fuelstation_feed.c │ │ │ ├── land_waterspring_sakhal.c │ │ │ └── misc_tirepile_burning.c │ │ ├── underground │ │ │ ├── entrance │ │ │ │ ├── land_underground_entrance.c │ │ │ │ ├── land_underground_panel.c │ │ │ │ └── land_underground_panel_lever.c │ │ │ ├── land_warheadstorage_main.c │ │ │ ├── land_warheadstorage_powerstation.c │ │ │ ├── powergeneratorstatic.c │ │ │ ├── stairs │ │ │ │ └── land_underground_stairs_exit.c │ │ │ └── water │ │ │ │ └── land_underground_waterreservoir.c │ │ ├── well.c │ │ └── wrecks │ │ │ ├── staticobj_roadblock_wood_small.c │ │ │ ├── wreck_mi8.c │ │ │ ├── wreck_santassleigh.c │ │ │ └── wreck_uh1y.c │ ├── cluttercutter2x2.c │ ├── cluttercutter6x6.c │ ├── cluttercutterfireplace.c │ ├── core │ │ └── inherited │ │ │ ├── building.c │ │ │ ├── entityai.c │ │ │ ├── inventoryitem.c │ │ │ ├── inventoryitemtype.c │ │ │ ├── itemoptics.c │ │ │ ├── lightai.c │ │ │ ├── man.c │ │ │ ├── plant.c │ │ │ └── weapon.c │ ├── creatures │ │ ├── animals │ │ │ └── animalbase.c │ │ └── infected │ │ │ ├── dayzinfectedcfgbase.c │ │ │ ├── zombiebase.c │ │ │ ├── zombiefemalebase.c │ │ │ └── zombiemalebase.c │ ├── dayzanimalimplement.c │ ├── dayzinfectedimplement.c │ ├── dayzplayerimplement.c │ ├── dayzplayerimplementaiming.c │ ├── dayzplayerimplementfalldamage.c │ ├── dayzplayerimplementheading.c │ ├── dayzplayerimplementjumpclimb.c │ ├── dayzplayerimplementmeleecombat.c │ ├── dayzplayerimplementswimming.c │ ├── dayzplayerimplementthrowing.c │ ├── dayzplayerimplementvehicle.c │ ├── dayzplayersyncjunctures.c │ ├── dayzplayerutils.c │ ├── dayzspectator.c │ ├── effects │ │ ├── boatwatereffects.c │ │ └── wheelsmoke.c │ ├── explosivesbase.c │ ├── explosivesbase │ │ ├── claymoremine.c │ │ ├── improvisedexplosive.c │ │ ├── plastic_explosive.c │ │ ├── remotedetonator.c │ │ └── remotelyactivateditembehaviour.c │ ├── firearms │ │ ├── archery │ │ │ ├── archery_base.c │ │ │ └── crossbow.c │ │ ├── automaticrifle │ │ │ ├── ak101.c │ │ │ ├── ak74.c │ │ │ ├── akm.c │ │ │ ├── aks74u.c │ │ │ ├── aug.c │ │ │ ├── fal.c │ │ │ ├── famas.c │ │ │ ├── m14.c │ │ │ ├── m16a2.c │ │ │ ├── m4a1.c │ │ │ ├── ots14.c │ │ │ └── sks.c │ │ ├── boltactionrifle_base.c │ │ ├── boltactionrifleexternalmagazine_base.c │ │ ├── boltactionrifleinnermagazine_base.c │ │ ├── boltrifle_base.c │ │ ├── chamberfirstinnermagazinesemiautomatic_base.c │ │ ├── cupidsboltsimulation.c │ │ ├── debug.c │ │ ├── doublebarrel_base.c │ │ ├── flaresimulation.c │ │ ├── fsm │ │ │ ├── actions.c │ │ │ ├── events.c │ │ │ ├── guards.c │ │ │ ├── states │ │ │ │ ├── bullethide.c │ │ │ │ ├── bulletshow.c │ │ │ │ ├── magazinehide.c │ │ │ │ ├── magazineshow.c │ │ │ │ ├── riflechambering.c │ │ │ │ ├── rifleejectcasing.c │ │ │ │ ├── riflerechambering.c │ │ │ │ ├── weaponattachmagazine.c │ │ │ │ ├── weaponchamberfromattmag.c │ │ │ │ ├── weaponchambering.c │ │ │ │ ├── weaponchamberinglooped.c │ │ │ │ ├── weaponcharging.c │ │ │ │ ├── weapondetachingmag.c │ │ │ │ ├── weaponejectbullet.c │ │ │ │ ├── weaponejectcasingandchamberfromattmag.c │ │ │ │ ├── weaponfire.c │ │ │ │ ├── weaponfireandchambernext.c │ │ │ │ ├── weaponfireandchambernextfrominnermag.c │ │ │ │ ├── weaponfirelast.c │ │ │ │ ├── weaponrechamber.c │ │ │ │ ├── weaponreplacingmagandchambernext.c │ │ │ │ ├── weaponstablestate.c │ │ │ │ ├── weaponstartaction.c │ │ │ │ ├── weaponstatebase.c │ │ │ │ ├── weaponstatejammed.c │ │ │ │ └── weaponunjamming.c │ │ │ └── weapon_utils.c │ │ ├── launcher │ │ │ └── m79.c │ │ ├── machinegun │ │ │ └── m249.c │ │ ├── openbolt_base.c │ │ ├── pistol │ │ │ ├── 1911.c │ │ │ ├── cz75.c │ │ │ ├── de.c │ │ │ ├── derringer.c │ │ │ ├── flaregun.c │ │ │ ├── fnx45.c │ │ │ ├── glock.c │ │ │ ├── longhorn.c │ │ │ ├── magnum.c │ │ │ ├── makarov.c │ │ │ ├── mkii.c │ │ │ ├── p1.c │ │ │ ├── pmm.c │ │ │ └── red9.c │ │ ├── pistol_base.c │ │ ├── pistolalt_base.c │ │ ├── rifle │ │ │ ├── b95.c │ │ │ ├── cz527.c │ │ │ ├── cz550.c │ │ │ ├── izh18.c │ │ │ ├── mosin9130.c │ │ │ ├── repeater.c │ │ │ ├── ruger1022.c │ │ │ ├── sawedoffizh18.c │ │ │ ├── scout.c │ │ │ ├── ssg82.c │ │ │ ├── sv98.c │ │ │ ├── svd.c │ │ │ ├── trumpet.c │ │ │ └── winchester70.c │ │ ├── rifle_base.c │ │ ├── rifleboltfree_base.c │ │ ├── rifleboltlock_base.c │ │ ├── riflesingleshot_base.c │ │ ├── riflesingleshotmanual_base.c │ │ ├── shotgun │ │ │ ├── izh18shotgun.c │ │ │ ├── izh43.c │ │ │ ├── mp133.c │ │ │ ├── remington12.c │ │ │ ├── saiga.c │ │ │ └── sawedoffizh18shotgun.c │ │ ├── singleshotpistol_base.c │ │ ├── smg │ │ │ ├── cz61.c │ │ │ ├── mp5.c │ │ │ ├── pm73rak.c │ │ │ ├── pp19.c │ │ │ ├── ump45.c │ │ │ └── vss.c │ │ ├── smokesimulation.c │ │ ├── weapon_base.c │ │ └── weaponfsm.c │ ├── game │ │ └── super │ │ │ ├── building.c │ │ │ ├── inventoryitem.c │ │ │ ├── lightai.c │ │ │ ├── man.c │ │ │ └── plant.c │ ├── gardenbase.c │ ├── gardenbase │ │ ├── gardenplot.c │ │ ├── plantbase.c │ │ └── slot.c │ ├── grenade_base │ │ ├── flashgrenade.c │ │ ├── grenade_chemgas.c │ │ ├── m18smokegrenade_colorbase.c │ │ ├── m67grenade.c │ │ ├── rdg2smokegrenade_colorbase.c │ │ ├── rgd5grenade.c │ │ └── smokegrenadebase.c │ ├── itembase.c │ ├── itembase │ │ ├── ammoboxes.c │ │ ├── bandagedressing.c │ │ ├── barbedbaseballbat.c │ │ ├── barbedwire.c │ │ ├── bark_colorbase.c │ │ ├── bark_colorbase │ │ │ ├── bark_birch.c │ │ │ └── bark_oak.c │ │ ├── barrel_colorbase.c │ │ ├── baseballbat.c │ │ ├── basebuildingbase.c │ │ ├── basebuildingbase │ │ │ ├── fence.c │ │ │ ├── sheltersite.c │ │ │ ├── staticflagpole.c │ │ │ ├── totem.c │ │ │ └── watchtower.c │ │ ├── battery9v.c │ │ ├── batterycharger.c │ │ ├── binocularsbase.c │ │ ├── bloodcontainerbase │ │ │ ├── bloodbagempty.c │ │ │ ├── bloodbagfull.c │ │ │ ├── bloodbagiv.c │ │ │ ├── bloodcontainerbase.c │ │ │ ├── bloodsyringe.c │ │ │ └── syringe.c │ │ ├── blowtorch.c │ │ ├── boneknife.c │ │ ├── brassknuckles_colorbase.c │ │ ├── cablereel.c │ │ ├── camonet.c │ │ ├── cattleprod.c │ │ ├── chemlight.c │ │ ├── chernarusmap_open.c │ │ ├── cleaver.c │ │ ├── clockbase.c │ │ ├── clothing │ │ │ ├── airbornemask.c │ │ │ ├── alicebag_colorbase.c │ │ │ ├── armband_colorbase.c │ │ │ ├── armband_white.c │ │ │ ├── armypouch_colorbase.c │ │ │ ├── assaultbag_colorbase.c │ │ │ ├── athleticshoes_colorbase.c │ │ │ ├── aviatorglasses.c │ │ │ ├── balaclava3holes_colorbase.c │ │ │ ├── balaclavamask_colorbase.c │ │ │ ├── ballerinas_colorbase.c │ │ │ ├── bandana_hybrid.c │ │ │ ├── bandanamask_colorbase.c │ │ │ ├── baseballcap_colorbase.c │ │ │ ├── bdujacket.c │ │ │ ├── bdupants.c │ │ │ ├── beaniehat_colorbase.c │ │ │ ├── blouse_colorbase.c │ │ │ ├── bomberjacket_colorbase.c │ │ │ ├── booniehat_colorbase.c │ │ │ ├── breeches_colorbase.c │ │ │ ├── budenovkahat_colorbase.c │ │ │ ├── burlapsackcover.c │ │ │ ├── bushlatpolicejacket.c │ │ │ ├── canvasbag_colorbase.c │ │ │ ├── canvaspants.c │ │ │ ├── cargopants_colorbase.c │ │ │ ├── chainmail.c │ │ │ ├── chainmail_coif.c │ │ │ ├── chainmail_leggings.c │ │ │ ├── chernarussportshirt.c │ │ │ ├── chestholster.c │ │ │ ├── chestplate.c │ │ │ ├── childbag_colorbase.c │ │ │ ├── christmasheadband_colorbase.c │ │ │ ├── civilianbelt.c │ │ │ ├── combatboots_colorbase.c │ │ │ ├── courierbag.c │ │ │ ├── cowboyhat_colorbase.c │ │ │ ├── coyotebag_colorbase.c │ │ │ ├── crookednose.c │ │ │ ├── dallasmask.c │ │ │ ├── denimjacket.c │ │ │ ├── designerglasses.c │ │ │ ├── downjacket_colorbase.c │ │ │ ├── dressshoes_colorbase.c │ │ │ ├── drybag_colorbase.c │ │ │ ├── drysackbag_colorbase.c │ │ │ ├── duffelbagsmall_colorbase.c │ │ │ ├── eyepatch_improvised.c │ │ │ ├── facecover_improvised.c │ │ │ ├── feetcover_improvised.c │ │ │ ├── firefighterjacket_colorbase.c │ │ │ ├── firefighterspants_colorbase.c │ │ │ ├── flatcap_colorbase.c │ │ │ ├── furcourierbag.c │ │ │ ├── furimprovisedbag.c │ │ │ ├── gasmask.c │ │ │ ├── gasmask_filter.c │ │ │ ├── ghilliebushrag_colorbase.c │ │ │ ├── ghilliehood_colorbase.c │ │ │ ├── ghilliesuit_colorbase.c │ │ │ ├── ghillietop_colorbase.c │ │ │ ├── gorkaejacket_colorbase.c │ │ │ ├── gorkapants_colorbase.c │ │ │ ├── gp5gasmask.c │ │ │ ├── greathelm.c │ │ │ ├── guyfawkesmask.c │ │ │ ├── handscover_improvised.c │ │ │ ├── headbandana_colorbase.c │ │ │ ├── headcover_improvised.c │ │ │ ├── headdress_colorbase.c │ │ │ ├── headtorch_black.c │ │ │ ├── headtorch_colorbase.c │ │ │ ├── headtorch_grey.c │ │ │ ├── helmetbase.c │ │ │ ├── helmetbase │ │ │ │ ├── ballistichelmet_colorbase.c │ │ │ │ ├── constructionhelmet_colorbase.c │ │ │ │ ├── darkmotohelmet_colorbase.c │ │ │ │ ├── dirtbikehelmet_colorbase.c │ │ │ │ ├── firefightershelmet_colorbase.c │ │ │ │ ├── gorkahelmetcomplete.c │ │ │ │ ├── hockeyhelmet_colorbase.c │ │ │ │ ├── mich2001helmet.c │ │ │ │ ├── motohelmet_colorbase.c │ │ │ │ ├── skatehelmet_colorbase.c │ │ │ │ ├── ssh68helmet.c │ │ │ │ └── zsh3pilothelmet.c │ │ │ ├── highcapacityvest_colorbase.c │ │ │ ├── hikingboots_colorbase.c │ │ │ ├── hikingbootslow_colorbase.c │ │ │ ├── hikingjacket_colorbase.c │ │ │ ├── hippack_colorbase.c │ │ │ ├── hockeymask.c │ │ │ ├── hoodie_colorbase.c │ │ │ ├── hoxtonmask.c │ │ │ ├── hunterpants_colorbase.c │ │ │ ├── huntingbag.c │ │ │ ├── huntingjacket_colorbase.c │ │ │ ├── huntingvest.c │ │ │ ├── improvisedbag.c │ │ │ ├── jeans_colorbase.c │ │ │ ├── joggingshoes_colorbase.c │ │ │ ├── jumpsuitjacket_colorbase.c │ │ │ ├── jumpsuitpants_colorbase.c │ │ │ ├── jungleboots_colorbase.c │ │ │ ├── knifeholster.c │ │ │ ├── knifesheaths.c │ │ │ ├── labcoat.c │ │ │ ├── leafcrown.c │ │ │ ├── leatherbelt_colorbase.c │ │ │ ├── leathergloves_colorbase.c │ │ │ ├── leatherhat_colorbase.c │ │ │ ├── leatherjacket_colorbase.c │ │ │ ├── leatherjacket_natural.c │ │ │ ├── leathermoccasinsshoes_natural.c │ │ │ ├── leatherpants_colorbase.c │ │ │ ├── leatherpants_natural.c │ │ │ ├── leathersack_colorbase.c │ │ │ ├── leathersack_natural.c │ │ │ ├── leathershirt_colorbase.c │ │ │ ├── leathershoes_colorbase.c │ │ │ ├── leatherstoragevest_colorbase.c │ │ │ ├── leatherstoragevest_natural.c │ │ │ ├── legcover_improvised.c │ │ │ ├── m65jacket_colorbase.c │ │ │ ├── mansuit_colorbase.c │ │ │ ├── maskbase.c │ │ │ ├── medicalscrubshat_colorbase.c │ │ │ ├── medicalscrubspants_colorbase.c │ │ │ ├── medicalscrubsshirt_colorbase.c │ │ │ ├── medievalboots.c │ │ │ ├── militarybelt.c │ │ │ ├── militaryberet_colorbase.c │ │ │ ├── militaryboots_colorbase.c │ │ │ ├── mimemask.c │ │ │ ├── minidress_colorbase.c │ │ │ ├── morozkohat.c │ │ │ ├── mountainbag_colorbase.c │ │ │ ├── mouthrag.c │ │ │ ├── navyuniformjacket.c │ │ │ ├── navyuniformpants.c │ │ │ ├── nbcbootsbase.c │ │ │ ├── nbcgloves_colorbase.c │ │ │ ├── nbchood.c │ │ │ ├── nbcjacketbase.c │ │ │ ├── nbcpantsbase.c │ │ │ ├── nioshfacemask.c │ │ │ ├── norsehelm.c │ │ │ ├── nursedress_colorbase.c │ │ │ ├── nvgheadstrap.c │ │ │ ├── officerhat.c │ │ │ ├── okzkcap_colorbase.c │ │ │ ├── omkjacket_colorbase.c │ │ │ ├── omkpants_colorbase.c │ │ │ ├── omnogloves_colorbase.c │ │ │ ├── paddedgloves_colorbase.c │ │ │ ├── paramedicjacket_colorbase.c │ │ │ ├── paramedicpants_colorbase.c │ │ │ ├── paydaymask_colorbase.c │ │ │ ├── petushokhat_colorbase.c │ │ │ ├── pilotkacap.c │ │ │ ├── platecarrierholster.c │ │ │ ├── platecarriervest.c │ │ │ ├── policecap.c │ │ │ ├── policejacket.c │ │ │ ├── policejacketorel.c │ │ │ ├── policepants.c │ │ │ ├── policepantsorel.c │ │ │ ├── policevest.c │ │ │ ├── pressvest_colorbase.c │ │ │ ├── prisonercap.c │ │ │ ├── prisonuniformjacket.c │ │ │ ├── prisonuniformpants.c │ │ │ ├── quiltedjacket_colorbase.c │ │ │ ├── radarcap_colorbase.c │ │ │ ├── raincoat_colorbase.c │ │ │ ├── reflexvest.c │ │ │ ├── ridersjacket_colorbase.c │ │ │ ├── ropebelt.c │ │ │ ├── santasbeard.c │ │ │ ├── santashat.c │ │ │ ├── sherpahat_colorbase.c │ │ │ ├── shirt_colorbase.c │ │ │ ├── skigloves_colorbase.c │ │ │ ├── skigoggles_colorbase.c │ │ │ ├── skirt_colorbase.c │ │ │ ├── slackspants_colorbase.c │ │ │ ├── slingbag.c │ │ │ ├── smershbag.c │ │ │ ├── smershvest.c │ │ │ ├── sneakers_colorbase.c │ │ │ ├── snowstormushanka_colorbase.c │ │ │ ├── sportglasses_colorbase.c │ │ │ ├── surgicalgloves_colorbase.c │ │ │ ├── surgicalmask.c │ │ │ ├── sweater_colorbase.c │ │ │ ├── tacticalgloves_colorbase.c │ │ │ ├── tacticalgoggles.c │ │ │ ├── tacticalshirt_colorbase.c │ │ │ ├── taloonbag_colorbase.c │ │ │ ├── tankerhelmet.c │ │ │ ├── telnyashkashirt.c │ │ │ ├── thickframesglasses.c │ │ │ ├── thinframesglasses.c │ │ │ ├── torsocover_improvised.c │ │ │ ├── tortillabag.c │ │ │ ├── tracksuitjacket_colorbase.c │ │ │ ├── tracksuitpants_colorbase.c │ │ │ ├── tshirt_colorbase.c │ │ │ ├── tshirt_dyed.c │ │ │ ├── tshirt_white.c │ │ │ ├── ttskoboots.c │ │ │ ├── ttskojacket_colorbase.c │ │ │ ├── ttskopants.c │ │ │ ├── ukassvest_colorbase.c │ │ │ ├── ushanka_colorbase.c │ │ │ ├── usmcjacket_colorbase.c │ │ │ ├── usmcpants_colorbase.c │ │ │ ├── weldingmask.c │ │ │ ├── wellies_colorbase.c │ │ │ ├── wintercoif_colorbase.c │ │ │ ├── witchhat.c │ │ │ ├── witchhood.c │ │ │ ├── witchhoodcoif_colorbase.c │ │ │ ├── wolfmask.c │ │ │ ├── womansuit_colorbase.c │ │ │ ├── woolcoat_colorbase.c │ │ │ ├── woolgloves_colorbase.c │ │ │ ├── woolglovesfingerless_colorbase.c │ │ │ ├── workingboots_colorbase.c │ │ │ ├── workinggloves_colorbase.c │ │ │ └── zmijovkacap_colorbase.c │ │ ├── clothing_base.c │ │ ├── combatknife.c │ │ ├── combinationlock.c │ │ ├── combinationlock4.c │ │ ├── compass.c │ │ ├── container_base.c │ │ ├── container_base │ │ │ ├── anniversarybox.c │ │ │ ├── en5c_bear_colorbase.c │ │ │ └── en5c_waterproofbag_colorbase.c │ │ ├── containerlocked.c │ │ ├── cookingstand.c │ │ ├── crudemachete.c │ │ ├── defibrillator.c │ │ ├── edible_base.c │ │ ├── edible_base │ │ │ ├── agaricusmushroom.c │ │ │ ├── amanitamushroom.c │ │ │ ├── apple.c │ │ │ ├── auriculariamushroom.c │ │ │ ├── bakedbeanscan.c │ │ │ ├── banana.c │ │ │ ├── bearsteakmeat.c │ │ │ ├── bitterlings.c │ │ │ ├── boarsteakmeat.c │ │ │ ├── boletusmushroom.c │ │ │ ├── bottle_base.c │ │ │ ├── bottle_base │ │ │ │ ├── canistergasoline.c │ │ │ │ ├── canteen.c │ │ │ │ ├── cauldron.c │ │ │ │ ├── filteringbottle.c │ │ │ │ ├── pot.c │ │ │ │ └── waterbottle.c │ │ │ ├── boxcerealcrunchin.c │ │ │ ├── candycane_colorbase.c │ │ │ ├── caninaberry.c │ │ │ ├── cannabis.c │ │ │ ├── carp.c │ │ │ ├── carpfilletmeat.c │ │ │ ├── charcoaltablets.c │ │ │ ├── chelatingtablets.c │ │ │ ├── chicken_colorbase.c │ │ │ ├── chickenbreastmeat.c │ │ │ ├── cowsteakmeat.c │ │ │ ├── craterellusmushroom.c │ │ │ ├── deersteakmeat.c │ │ │ ├── disinfectantspray.c │ │ │ ├── fox.c │ │ │ ├── foxsteakmeat.c │ │ │ ├── goatsteakmeat.c │ │ │ ├── greenbellpepper.c │ │ │ ├── guts.c │ │ │ ├── humansteakmeat.c │ │ │ ├── kiwi.c │ │ │ ├── lactariusmushroom.c │ │ │ ├── lard.c │ │ │ ├── mackerel.c │ │ │ ├── mackerelfilletmeat.c │ │ │ ├── macrolepiotamushroom.c │ │ │ ├── mouflonsteakmeat.c │ │ │ ├── orange.c │ │ │ ├── painkillertablets.c │ │ │ ├── peachescan.c │ │ │ ├── pear.c │ │ │ ├── pigsteakmeat.c │ │ │ ├── pleurotusmushroom.c │ │ │ ├── plum.c │ │ │ ├── potato.c │ │ │ ├── psilocybemushroom.c │ │ │ ├── pumpkin.c │ │ │ ├── purificationtablets.c │ │ │ ├── rabbit.c │ │ │ ├── rabbitlegmeat.c │ │ │ ├── redcaviar.c │ │ │ ├── reindeersteakmeat.c │ │ │ ├── sambucusberry.c │ │ │ ├── sardines.c │ │ │ ├── sardinescan.c │ │ │ ├── sheepsteakmeat.c │ │ │ ├── shrimp.c │ │ │ ├── slicedpumpkin.c │ │ │ ├── smallguts.c │ │ │ ├── spaghettican.c │ │ │ ├── steelheadtrout.c │ │ │ ├── steelheadtroutfilletmeat.c │ │ │ ├── tacticalbaconcan.c │ │ │ ├── tetracyclineantibiotics.c │ │ │ ├── tomato.c │ │ │ ├── tunacan.c │ │ │ ├── vitaminbottle.c │ │ │ ├── walleyepollock.c │ │ │ ├── walleyepollockfilletmeat.c │ │ │ ├── wolfsteakmeat.c │ │ │ ├── worm.c │ │ │ └── zucchini.c │ │ ├── eyemask_colorbase.c │ │ ├── fangeknife.c │ │ ├── fencekit.c │ │ ├── fieldshovel.c │ │ ├── firefighteraxe.c │ │ ├── fireplacebase.c │ │ ├── fireplacebase │ │ │ ├── barrelholes_colorbase.c │ │ │ ├── barrelholes_colorbase │ │ │ │ ├── barrelholes_blue.c │ │ │ │ ├── barrelholes_green.c │ │ │ │ ├── barrelholes_red.c │ │ │ │ └── barrelholes_yellow.c │ │ │ ├── fireplace.c │ │ │ ├── fireplacefirebarrel.c │ │ │ ├── fireplaceindoor.c │ │ │ ├── land_misc_firebarrel_colorbase.c │ │ │ └── ovenindoor.c │ │ ├── firewood.c │ │ ├── fireworksbase.c │ │ ├── fishingrod_base.c │ │ ├── flag_base.c │ │ ├── flashlight.c │ │ ├── gear │ │ │ ├── camping │ │ │ │ └── camping.c │ │ │ ├── consumables │ │ │ │ ├── consumables.c │ │ │ │ ├── easteregg.c │ │ │ │ └── fishingconsumables.c │ │ │ ├── containers │ │ │ │ └── containers.c │ │ │ ├── crafting │ │ │ │ └── crafting.c │ │ │ ├── cultivation │ │ │ │ └── cultivation.c │ │ │ ├── drinks │ │ │ │ ├── sodacan_colorbase.c │ │ │ │ ├── vodka.c │ │ │ │ └── waterpouch_colorbase.c │ │ │ ├── food │ │ │ │ ├── bakedbeanscan_opened.c │ │ │ │ ├── cannedfood.c │ │ │ │ ├── marmalade.c │ │ │ │ ├── mushroombase.c │ │ │ │ ├── packagedfood.c │ │ │ │ ├── peachescan_opened.c │ │ │ │ ├── powderedmilk.c │ │ │ │ ├── rice.c │ │ │ │ ├── sardinescan_opened.c │ │ │ │ ├── spaghettican_opened.c │ │ │ │ ├── tacticalbaconcan_opened.c │ │ │ │ └── tunacan_opened.c │ │ │ ├── medical │ │ │ │ ├── anticheminjector.c │ │ │ │ ├── bloodtestkit.c │ │ │ │ ├── cigarettepack_colorbase.c │ │ │ │ ├── clearsyringe.c │ │ │ │ ├── disinfectantalcohol.c │ │ │ │ ├── epinephrine.c │ │ │ │ ├── injectionvial.c │ │ │ │ ├── iodinetincture.c │ │ │ │ ├── morphine.c │ │ │ │ ├── salinebag.c │ │ │ │ ├── salinebagiv.c │ │ │ │ ├── splint.c │ │ │ │ └── startkitiv.c │ │ │ ├── navigation │ │ │ │ ├── gpsreceiver.c │ │ │ │ └── orienteeringcompass.c │ │ │ ├── optics │ │ │ │ └── binoculars.c │ │ │ └── tools │ │ │ │ ├── alarmclock.c │ │ │ │ ├── broom.c │ │ │ │ ├── broom_birch.c │ │ │ │ ├── canopener.c │ │ │ │ ├── cassette.c │ │ │ │ ├── crowbar.c │ │ │ │ ├── doortestcamera.c │ │ │ │ ├── electronicrepairkit.c │ │ │ │ ├── epoxyputty.c │ │ │ │ ├── farminghoe.c │ │ │ │ ├── fireextinguisher.c │ │ │ │ ├── fireworkslauncher.c │ │ │ │ ├── fireworkslauncheranniversary.c │ │ │ │ ├── fishingrod.c │ │ │ │ ├── handcuffkeys.c │ │ │ │ ├── handcuffs.c │ │ │ │ ├── handsaw.c │ │ │ │ ├── hayhook.c │ │ │ │ ├── iceaxe.c │ │ │ │ ├── improvisedfishingrod.c │ │ │ │ ├── kitchentimer.c │ │ │ │ ├── leathersewingkit.c │ │ │ │ ├── lockpick.c │ │ │ │ ├── lugwrench.c │ │ │ │ ├── mace.c │ │ │ │ ├── meattenderizer.c │ │ │ │ ├── messtin.c │ │ │ │ ├── obsoletefishingrod.c │ │ │ │ ├── paddle.c │ │ │ │ ├── pen_black.c │ │ │ │ ├── pen_blue.c │ │ │ │ ├── pen_colorbase.c │ │ │ │ ├── pen_green.c │ │ │ │ ├── pen_red.c │ │ │ │ ├── sewingkit.c │ │ │ │ ├── weaponcleaningkit.c │ │ │ │ ├── whetstone.c │ │ │ │ └── wrench.c │ │ ├── giftbox_base.c │ │ ├── giftwrappaper.c │ │ ├── grenade_base.c │ │ ├── hacksaw.c │ │ ├── hammer.c │ │ ├── handcuffslocked.c │ │ ├── handdrillkit.c │ │ ├── hatchet.c │ │ ├── head.c │ │ ├── heatpack.c │ │ ├── hescobox.c │ │ ├── huntingknife.c │ │ ├── inventory_base.c │ │ ├── inventory_base │ │ │ ├── ak74_hndgrd.c │ │ │ ├── ak_bayonet.c │ │ │ ├── ak_plastichndgrd.c │ │ │ ├── ak_railhndgrd.c │ │ │ ├── ak_woodhndgrd.c │ │ │ ├── atlasbipod.c │ │ │ ├── buisoptic.c │ │ │ ├── candle.c │ │ │ ├── fryingpan.c │ │ │ ├── gardenlime.c │ │ │ ├── grozagl_lowerreceiver.c │ │ │ ├── huntingoptic.c │ │ │ ├── m249_hndgrd.c │ │ │ ├── m249_rishndgrd.c │ │ │ ├── m4_carryhandleoptic.c │ │ │ ├── m4_mphndgrd.c │ │ │ ├── m4_plastichndgrd.c │ │ │ ├── m4_rishndgrd.c │ │ │ ├── m9a1_bayonet.c │ │ │ ├── mosin_bayonet.c │ │ │ ├── mosin_compensator.c │ │ │ ├── mp5_compensator.c │ │ │ ├── mp5_plastichndgrd.c │ │ │ ├── mp5_railhndgrd.c │ │ │ ├── nail.c │ │ │ ├── optics.c │ │ │ ├── plantmaterial.c │ │ │ ├── pso11optic.c │ │ │ ├── pso1optic.c │ │ │ ├── pso6optic.c │ │ │ ├── puscopeoptic.c │ │ │ ├── red9bttstck.c │ │ │ └── sks_bayonet.c │ │ ├── itembook.c │ │ ├── kitbase.c │ │ ├── kitchenknife.c │ │ ├── kukriknife.c │ │ ├── largegascannister.c │ │ ├── longtorch.c │ │ ├── machete.c │ │ ├── magazine │ │ │ ├── ammunitionpiles.c │ │ │ ├── magazine.c │ │ │ └── magazines.c │ │ ├── mapnavigationbehaviour.c │ │ ├── matchbox.c │ │ ├── mediumgascannister.c │ │ ├── megaphone.c │ │ ├── metalplate.c │ │ ├── metalwire.c │ │ ├── nail.c │ │ ├── nailedbaseballbat.c │ │ ├── nvgoggles.c │ │ ├── openablebehaviour.c │ │ ├── orientalmachete.c │ │ ├── paper.c │ │ ├── particletest.c │ │ ├── pelt_base.c │ │ ├── petrollighter.c │ │ ├── pickaxe.c │ │ ├── pileofwoodenplanks.c │ │ ├── pipe.c │ │ ├── pipewrench.c │ │ ├── pitchfork.c │ │ ├── pliers.c │ │ ├── portablegaslamp.c │ │ ├── portablegasstove.c │ │ ├── poweredoptic_base.c │ │ ├── powergenerator.c │ │ ├── pumpkinhelmet.c │ │ ├── punchedcard.c │ │ ├── radio.c │ │ ├── rag.c │ │ ├── rangefinder.c │ │ ├── raycaster.c │ │ ├── refridgerator.c │ │ ├── roadflare.c │ │ ├── scientificbriefcase.c │ │ ├── scientificbriefcasekeys.c │ │ ├── screwdriver.c │ │ ├── seedpackbase.c │ │ ├── seedpackbase │ │ │ ├── cannabisseedspack.c │ │ │ ├── pepperseedspack.c │ │ │ ├── pumpkinseedspack.c │ │ │ ├── tomatoseedspack.c │ │ │ └── zucchiniseedspack.c │ │ ├── shelterkit.c │ │ ├── shippingcontainerkeys_colorbase.c │ │ ├── shovel.c │ │ ├── sickle.c │ │ ├── sledgehammer.c │ │ ├── smallgascannister.c │ │ ├── sodacan_empty.c │ │ ├── spotlight.c │ │ ├── steakknife.c │ │ ├── stone.c │ │ ├── stoneknife.c │ │ ├── stunbaton.c │ │ ├── suppressorbase.c │ │ ├── suppressorbase │ │ │ ├── ak_suppressor.c │ │ │ ├── groza_barrel_grip.c │ │ │ ├── groza_barrel_short.c │ │ │ ├── groza_barrel_suppressor.c │ │ │ ├── improvisedsuppressor.c │ │ │ ├── m4_suppressor.c │ │ │ ├── makarovpbsuppressor.c │ │ │ └── pistolsuppressor.c │ │ ├── surrenderdummyitem.c │ │ ├── switchable_base.c │ │ ├── switchable_base │ │ │ ├── chainsaw.c │ │ │ ├── tlrlight.c │ │ │ └── universallight.c │ │ ├── sword.c │ │ ├── telescopicbaton.c │ │ ├── tentbase.c │ │ ├── tentbase │ │ │ ├── cartent.c │ │ │ ├── largetent.c │ │ │ ├── largetentbackpack.c │ │ │ ├── mediumtent.c │ │ │ ├── partytent.c │ │ │ └── shelter.c │ │ ├── thermometer.c │ │ ├── toolbase.c │ │ ├── torch.c │ │ ├── torch_video.c │ │ ├── totemkit.c │ │ ├── transmitterbase.c │ │ ├── transmitterbase │ │ │ ├── baseradio.c │ │ │ └── personalradio.c │ │ ├── trapbase.c │ │ ├── trapbase │ │ │ ├── trap_bear.c │ │ │ ├── trap_landmine.c │ │ │ └── trap_tripwire.c │ │ ├── trapspawnbase.c │ │ ├── trapspawnbase │ │ │ ├── trap_fishnet.c │ │ │ ├── trap_rabbitsnare.c │ │ │ └── trap_smallfish.c │ │ ├── tripod.c │ │ ├── vehiclebattery.c │ │ ├── vehiclebattery │ │ │ ├── aircraftbattery.c │ │ │ ├── carbattery.c │ │ │ └── truckbattery.c │ │ ├── watchtowerkit.c │ │ ├── weaponattachments │ │ │ └── attachments.c │ │ ├── woodaxe.c │ │ ├── woodenlog.c │ │ ├── woodenplank.c │ │ ├── woodenstick.c │ │ ├── worldcontainer_base.c │ │ ├── xmasbaseballbat.c │ │ └── xmaslights.c │ ├── manbase.c │ ├── manbase │ │ ├── bodyparts │ │ │ ├── feet.c │ │ │ ├── hands.c │ │ │ ├── head.c │ │ │ ├── legs.c │ │ │ └── torso.c │ │ ├── dayzplayer │ │ │ ├── dayzplayercamera1stperson.c │ │ │ ├── dayzplayercamera3rdperson.c │ │ │ ├── dayzplayercamera_base.c │ │ │ ├── dayzplayercameraironsights.c │ │ │ ├── dayzplayercameras.c │ │ │ ├── dayzplayercameravehicles.c │ │ │ ├── dayzplayercfgbase.c │ │ │ ├── dayzplayercfgsounds.c │ │ │ └── dayzplayermeleefightlogic_lightheavy.c │ │ ├── lightaibase.c │ │ ├── playerbase.c │ │ ├── playerbase │ │ │ ├── aitargetcallbacksplayer.c │ │ │ ├── playerconsumedata.c │ │ │ └── survivorbase.c │ │ └── playerbaseclient.c │ ├── rockbase.c │ ├── scriptedentities │ │ └── triggers │ │ │ ├── barbedwiretrigger.c │ │ │ ├── contaminatedtrigger.c │ │ │ ├── cylindertrigger.c │ │ │ ├── effecttrigger.c │ │ │ ├── geysertrigger.c │ │ │ ├── hotspringtrigger.c │ │ │ ├── mantrigger.c │ │ │ ├── spheretrigger.c │ │ │ ├── spookytrigger.c │ │ │ ├── traptrigger.c │ │ │ ├── trigger.c │ │ │ ├── triggereffectmanager.c │ │ │ ├── triggerevents.c │ │ │ ├── undergroundbunkertrigger.c │ │ │ ├── undergroundtrigger.c │ │ │ └── volcanictrigger.c │ ├── scriptedlightbase.c │ ├── scriptedlightbase │ │ ├── dimming │ │ │ ├── dimmingconfig.c │ │ │ └── lightdimming.c │ │ ├── pointlightbase.c │ │ ├── pointlightbase │ │ │ ├── anniversaryboxlight.c │ │ │ ├── anniversarymainlight.c │ │ │ ├── blowtorchlight.c │ │ │ ├── bonfirelight.c │ │ │ ├── brightnesstestlight.c │ │ │ ├── buoylight.c │ │ │ ├── chemlightlight.c │ │ │ ├── entrancelight.c │ │ │ ├── fireplacelight.c │ │ │ ├── flarelight.c │ │ │ ├── goatlight.c │ │ │ ├── muzzleflashlight.c │ │ │ ├── partylight.c │ │ │ ├── personallight.c │ │ │ ├── portablegaslamplight.c │ │ │ ├── roadflarelight.c │ │ │ ├── stovelight.c │ │ │ ├── tirepilelight.c │ │ │ ├── torchlight.c │ │ │ ├── warheadstoragelight.c │ │ │ ├── xmassleighlight.c │ │ │ ├── xmastreelight.c │ │ │ └── zombiemummylight.c │ │ ├── spotlightbase.c │ │ └── spotlightbase │ │ │ ├── carlightbase.c │ │ │ ├── carlightbase │ │ │ ├── carrearlightbase.c │ │ │ ├── carrearlightbase │ │ │ │ ├── civiliansedanrearlight.c │ │ │ │ ├── hatchback_02rearlight.c │ │ │ │ ├── offroad_02rearlight.c │ │ │ │ ├── offroadhatchbackrearlight.c │ │ │ │ ├── sedan_02rearlight.c │ │ │ │ └── truck_01rearlight.c │ │ │ ├── civiliansedanfrontlight.c │ │ │ ├── hatchback_02frontlight.c │ │ │ ├── offroad_02frontlight.c │ │ │ ├── offroadhatchbackfrontlight.c │ │ │ ├── sedan_02frontlight.c │ │ │ └── truck_01frontlight.c │ │ │ ├── flashlightlight.c │ │ │ ├── headtorchlight.c │ │ │ ├── pistollightlight.c │ │ │ ├── spotlightlight.c │ │ │ └── universallightlight.c │ ├── synchitinfo.c │ ├── undergroundstash.c │ ├── vehicles │ │ ├── boatscript.c │ │ ├── carscript.c │ │ ├── helicopterscript.c │ │ ├── inheritedboats │ │ │ └── boat_01.c │ │ ├── inheritedcars │ │ │ ├── civiliansedan.c │ │ │ ├── hatchback_02.c │ │ │ ├── offroad_02.c │ │ │ ├── offroadhatchback.c │ │ │ ├── sedan_02.c │ │ │ ├── test.c │ │ │ ├── truck_01_base.c │ │ │ ├── truck_01_cargo.c │ │ │ ├── truck_01_chassis.c │ │ │ ├── truck_01_covered.c │ │ │ ├── truck_02.c │ │ │ └── van_01.c │ │ └── vehicleaniminstances.c │ ├── weaponparticles.c │ ├── woodbase.c │ └── woodbase │ │ ├── bushes.c │ │ ├── christmastree.c │ │ └── trees.c ├── plugins │ ├── pluginbase.c │ ├── pluginbase │ │ ├── pluginadminlog.c │ │ ├── plugincameratools.c │ │ ├── pluginconfigviewer.c │ │ ├── plugindayzcreatureaidebug.c │ │ ├── plugindayzinfecteddebug.c │ │ ├── plugindayzplayerdebug.c │ │ ├── plugindayzplayerdebug_ctrl.c │ │ ├── plugindayzplayerdebug_othercmds.c │ │ ├── plugindayzplayerdebug_weapons.c │ │ ├── plugindeveloper.c │ │ ├── plugindeveloper │ │ │ ├── developerfreecamera.c │ │ │ ├── developerteleport.c │ │ │ ├── edevelopermask.c │ │ │ ├── plugincharplacement.c │ │ │ ├── plugindoorruler.c │ │ │ ├── plugindrawcheckerboard.c │ │ │ ├── pluginnutritiondumper.c │ │ │ ├── pluginremoteplayerdebugclient.c │ │ │ ├── pluginremoteplayerdebugserver.c │ │ │ ├── plugintargettemperature.c │ │ │ ├── pluginuniversaltemperaturesourceclient.c │ │ │ └── pluginuniversaltemperaturesourceserver.c │ │ ├── plugindevelopersync.c │ │ ├── plugindiagmenu.c │ │ ├── plugindiagmenu │ │ │ ├── plugindiagmenu.c │ │ │ ├── plugindiagmenuclient.c │ │ │ ├── plugindiagmenumodding.c │ │ │ ├── plugindiagmenuserver.c │ │ │ └── weaponliftdiag.c │ │ ├── pluginfilehandler.c │ │ ├── pluginfilehandler │ │ │ ├── pluginconfighandler.c │ │ │ ├── pluginconfighandler │ │ │ │ ├── pluginconfigdebugprofile.c │ │ │ │ ├── pluginconfigdebugprofilefixed.c │ │ │ │ ├── pluginconfigemotesprofile.c │ │ │ │ ├── pluginconfigscene.c │ │ │ │ └── pluginmissionconfig.c │ │ │ ├── pluginlocalenscripthistory.c │ │ │ ├── pluginlocalhistorybase.c │ │ │ ├── pluginlocalprofile.c │ │ │ └── pluginlocalprofile │ │ │ │ ├── pluginadditionalinfo.c │ │ │ │ └── pluginlocalprofilescene.c │ │ ├── pluginhorticulture.c │ │ ├── pluginitemdiagnostic.c │ │ ├── pluginkeybinding.c │ │ ├── pluginlifespan.c │ │ ├── pluginmessagemanager.c │ │ ├── pluginobjectsinteractionmanager.c │ │ ├── pluginpermanentcrosshair.c │ │ ├── pluginplayerstatus.c │ │ ├── pluginpresencenotifier.c │ │ ├── pluginrecipesmanager.c │ │ ├── pluginrepairing.c │ │ ├── pluginscenemanager.c │ │ ├── pluginsounddebug.c │ │ ├── plugintransmissionagents.c │ │ └── pluginvariables.c │ └── pluginmanager.c ├── static │ ├── betasound.c │ ├── bloodtype.c │ ├── liquid.c │ ├── misceffects.c │ ├── miscgameplayfunctions.c │ ├── openitem.c │ ├── paintitem.c │ ├── quantityconversions.c │ ├── sensesaievaluate.c │ ├── soundsetmap.c │ └── surface.c └── systems │ ├── animalcatchingsystem │ ├── catchingcontexts │ │ ├── catchingcontextfishingbase.c │ │ ├── catchingcontextfishingrodaction.c │ │ └── catchingcontexttraps.c │ ├── catchingresultstructure.c │ ├── catchingresultstructures │ │ ├── carchingresultfishingaction.c │ │ └── carchingresulttrapbase.c │ └── yielditems │ │ ├── yieldsfish.c │ │ ├── yieldsfishingjunk.c │ │ └── yieldslandanimals.c │ ├── bot │ ├── bot.c │ ├── bot_hunt.c │ ├── bot_stancerandomizer.c │ ├── bot_testattachanddropcycle.c │ ├── bot_testitemmovebackandforth.c │ ├── bot_tests.c │ ├── bot_testspamuseractions.c │ ├── bot_testspawnandopencan.c │ ├── bot_testspawndeadbury.c │ ├── bot_timedwait.c │ ├── botactions.c │ ├── botevents.c │ ├── botfsm.c │ ├── botguards.c │ └── botstates.c │ ├── inventory │ ├── attachmentsoutofreach.c │ ├── dayzplayerinventory.c │ ├── entityplacementcallback.c │ └── replaceitemwithnewlambda.c │ └── universaltemperaturesource │ ├── universaltemperaturesourcelambdabaseimpl.c │ └── universaltemperaturesourcelambdafireplace.c ├── 5_mission ├── dayzintroscene.c ├── dayzintroscenepc.c ├── dayzintroscenexbox.c ├── gui │ ├── actionmenu.c │ ├── actiontargetscursor.c │ ├── bookmenu.c │ ├── cameratools │ │ ├── cameratoolsmenu.c │ │ ├── ctactor.c │ │ ├── ctevent.c │ │ ├── ctkeyframe.c │ │ ├── ctobjectfollower.c │ │ └── ctsavestructure.c │ ├── chat │ │ ├── chat.c │ │ ├── chatinputmenu.c │ │ └── chatline.c │ ├── connectiondialogue.c │ ├── contextmenu.c │ ├── continuousactionprogress.c │ ├── controlsxbox.c │ ├── controlsxboxnew.c │ ├── crosshairselector.c │ ├── dayzplayerdebug │ │ └── dayzplayerdebug.c │ ├── debugmonitor.c │ ├── earlyaccessmenu.c │ ├── gesturesmenu.c │ ├── helpscreen.c │ ├── huddebug.c │ ├── ingamehud.c │ ├── ingamehudheatbuffer.c │ ├── ingamehudvisibility.c │ ├── ingamemenu.c │ ├── ingamemenu_xbox │ │ ├── playerlistentryscriptedwidget.c │ │ └── playerlistscriptedwidget.c │ ├── ingamemenuxbox.c │ ├── inputdevicedisconnectwarningmenu.c │ ├── inspectmenunew.c │ ├── inventory │ │ ├── inventorycombinationflags.c │ │ └── inventoryquickbar.c │ ├── inventorymenu.c │ ├── inventorynew │ │ ├── areas │ │ │ ├── handsarea.c │ │ │ ├── leftarea.c │ │ │ └── rightarea.c │ │ ├── attachments.c │ │ ├── colormanager.c │ │ ├── containeditems │ │ │ ├── cargocontainer.c │ │ │ ├── cargocontainerrow.c │ │ │ ├── handspreview.c │ │ │ ├── headers │ │ │ │ ├── closableheader.c │ │ │ │ ├── collapsibleheader.c │ │ │ │ ├── handsheader.c │ │ │ │ └── header.c │ │ │ ├── icon.c │ │ │ ├── slotscontainer.c │ │ │ └── slotsicon.c │ │ ├── containers │ │ │ ├── attachmentsgroupcontainer.c │ │ │ ├── attachmentswrapper.c │ │ │ ├── closablecontainer.c │ │ │ ├── collapsiblecontainer.c │ │ │ ├── container.c │ │ │ ├── handscontainer.c │ │ │ └── iconscontainer.c │ │ ├── inherited │ │ │ ├── attachmentcategoriescontainer.c │ │ │ ├── attachmentcategoriesrow.c │ │ │ ├── attachmentcategoriesslotscontainer.c │ │ │ ├── containerwithcargo.c │ │ │ ├── containerwithcargoandattachments.c │ │ │ ├── containerwithelectricmanager.c │ │ │ ├── playercontainer.c │ │ │ ├── vicinitycontainer.c │ │ │ ├── vicinityslotscontainer.c │ │ │ └── zombiecontainer.c │ │ ├── inventory.c │ │ ├── itemmanager.c │ │ ├── layoutholder.c │ │ ├── playerpreview.c │ │ ├── splititemutils.c │ │ └── vicinityitemmanager.c │ ├── invitemenu.c │ ├── itemactionswidget.c │ ├── itemdropwarningmenu.c │ ├── loadingmenu.c │ ├── logoutmenu.c │ ├── maphandler.c │ ├── mapmarkersinfo.c │ ├── mapmenu.c │ ├── newui │ │ ├── charactercreation │ │ │ └── charactercreationmenu.c │ │ ├── consoletoolbarhandler.c │ │ ├── controlmapping │ │ │ └── controlmappingkeybinds.c │ │ ├── credits │ │ │ ├── creditsmenu.c │ │ │ └── elements │ │ │ │ ├── creditsdepartmentelement.c │ │ │ │ ├── creditselement.c │ │ │ │ └── creditsgraphicalelement.c │ │ ├── dropdownprefab │ │ │ └── dropdownprefab.c │ │ ├── hints │ │ │ ├── hintpage.c │ │ │ └── uihintpanel.c │ │ ├── keybindings │ │ │ ├── keybindingelement.c │ │ │ ├── keybindingelementnew.c │ │ │ ├── keybindingscontainer.c │ │ │ ├── keybindingsentrywindow.c │ │ │ ├── keybindingsgroup.c │ │ │ └── keybindingsmenu.c │ │ ├── mainmenu │ │ │ ├── bannerhandlerbase.c │ │ │ ├── mainmenu.c │ │ │ ├── mainmenuconsoles.c │ │ │ ├── mainmenunewsfeed.c │ │ │ ├── mainmenupromo.c │ │ │ ├── mainmenustats.c │ │ │ ├── mainmenuvideo.c │ │ │ └── tutorialsmenu.c │ │ ├── modsmenu │ │ │ ├── modsmenudetailed.c │ │ │ ├── modsmenudetailedentry.c │ │ │ ├── modsmenusimple.c │ │ │ ├── modsmenusimpleentry.c │ │ │ └── modsmenutooltip.c │ │ ├── options │ │ │ ├── dependentoptions.c │ │ │ ├── optionsmenu.c │ │ │ ├── optionsmenucontrols.c │ │ │ ├── optionsmenugame.c │ │ │ ├── optionsmenusounds.c │ │ │ └── optionsmenuvideo.c │ │ ├── optionselector.c │ │ ├── optionselectorbase.c │ │ ├── optionselectoreditbox.c │ │ ├── optionselectorlevelmarker.c │ │ ├── optionselectormultistate.c │ │ ├── optionselectorslider.c │ │ ├── optionselectorslidersetup.c │ │ ├── serverbrowsermenu │ │ │ ├── serverbrowserdetailscontainer.c │ │ │ ├── serverbrowserentry.c │ │ │ ├── serverbrowserfavoritestabconsolepages.c │ │ │ ├── serverbrowserfavoritestabpc.c │ │ │ ├── serverbrowserfiltercontainer.c │ │ │ ├── serverbrowsermenunew.c │ │ │ ├── serverbrowsertab.c │ │ │ ├── serverbrowsertabconsole.c │ │ │ ├── serverbrowsertabconsolepages.c │ │ │ └── serverbrowsertabpc.c │ │ ├── tabberprefab │ │ │ └── tabberui.c │ │ └── videoplayer.c │ ├── notemenu.c │ ├── objectfollower.c │ ├── presetsmenu.c │ ├── profileoptionsui.c │ ├── projectedcrosshair.c │ ├── radialquickbarmenu.c │ ├── respawndialogue.c │ ├── sceneeditormenu.c │ ├── sceneeditormenu │ │ ├── uipopupscript.c │ │ ├── uipopupscript │ │ │ ├── uipopupscriptconfigs.c │ │ │ ├── uipopupscripteditorsettings.c │ │ │ ├── uipopupscriptinitscript.c │ │ │ ├── uipopupscriptnotify.c │ │ │ ├── uipopupscriptpositionmanager.c │ │ │ ├── uipopupscriptpresetnew.c │ │ │ ├── uipopupscriptpresetrename.c │ │ │ ├── uipopupscriptscenedelete.c │ │ │ ├── uipopupscriptscenemanager.c │ │ │ ├── uipopupscriptscenenew.c │ │ │ ├── uipopupscriptscenerename.c │ │ │ └── uipopupscriptscenesettings.c │ │ └── uipropertyattachment.c │ ├── scriptconsole.c │ ├── scriptconsole │ │ ├── scriptconsoleaddposition.c │ │ ├── scriptconsolenewpresetdialog.c │ │ ├── scriptconsolerenamepresetdialog.c │ │ └── scriptconsoleuniversalinfodialog.c │ ├── scriptconsolecameratab.c │ ├── scriptconsoleconfigtab.c │ ├── scriptconsoleenfscripttab.c │ ├── scriptconsolegeneraltab.c │ ├── scriptconsoleitemstab.c │ ├── scriptconsoleoutputtab.c │ ├── scriptconsolepresetslist.c │ ├── scriptconsoleselector.c │ ├── scriptconsolesoundstab.c │ ├── scriptconsoletabbase.c │ ├── scriptconsolevicinitytab.c │ ├── scriptconsoleweathertab.c │ ├── scriptedwindows │ │ └── missionloader.c │ ├── scriptshuddebug │ │ ├── huddebugwinbase.c │ │ ├── huddebugwincharagents.c │ │ ├── huddebugwinchardebug.c │ │ ├── huddebugwincharlevels.c │ │ ├── huddebugwincharmodifiers.c │ │ ├── huddebugwincharstats.c │ │ ├── huddebugwincharstomach.c │ │ ├── huddebugwinhealth.c │ │ ├── huddebugwinhorticulture.c │ │ ├── huddebugwintemperature.c │ │ └── huddebugwinversion.c │ ├── startupmenu.c │ ├── staticguiutils.c │ ├── titlescreenmenu.c │ ├── vehicles │ │ ├── boathud.c │ │ ├── carhud.c │ │ └── vehiclehudbase.c │ ├── watermark.c │ └── widgeteventhandler.c ├── mission │ ├── dispatchercaller.c │ ├── gameplayeffectwidgets │ │ ├── bleedingindicators │ │ │ ├── bleedingdrop.c │ │ │ └── bleedingindicator.c │ │ ├── gameplayeffectwidgets.c │ │ ├── gewidgetsmetadata.c │ │ └── gewidgetsmetadatableeding.c │ ├── missionbase.c │ ├── missionbenchmark.c │ ├── missiongameplay.c │ ├── missionmainmenu.c │ └── missionserver.c └── somemission.c ├── data ├── credits.json ├── dlcinfo.json ├── hints.json ├── internal │ └── script_console_hints.json ├── news_feed.txt ├── notifications.json └── pagedatatutorials.json ├── editor ├── plugins │ └── dayztools.c ├── projects │ ├── dayz.ssln │ ├── engine.sproj │ ├── game.sproj │ ├── gamelib.sproj │ ├── mission.sproj │ ├── workbench.sproj │ └── world.sproj ├── workbench-dark.qss ├── workbench-dark2.qss ├── workbench-dark3.qss └── workbench │ ├── blametool.c │ ├── checkloctool.c │ ├── difftool.c │ ├── opendir.c │ ├── resavetool.c │ └── showlog.c ├── profile_fixed.cfg └── staticdefinesdoc.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/README.md -------------------------------------------------------------------------------- /scripts.txt: -------------------------------------------------------------------------------- 1 | prefix=scripts\ 2 | product=dayz 3 | version=119356 4 | -------------------------------------------------------------------------------- /scripts/1_core/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/constants.c -------------------------------------------------------------------------------- /scripts/1_core/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/defines.c -------------------------------------------------------------------------------- /scripts/1_core/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/param.c -------------------------------------------------------------------------------- /scripts/1_core/proto/dbgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/dbgui.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enaudio.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enconvert.c -------------------------------------------------------------------------------- /scripts/1_core/proto/endebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/endebug.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enentity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enentity.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enmath.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enmath2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enmath2d.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enmath3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enmath3d.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enphysics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enphysics.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enprofiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enprofiler.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enscript.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enstring.c -------------------------------------------------------------------------------- /scripts/1_core/proto/ensystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/ensystem.c -------------------------------------------------------------------------------- /scripts/1_core/proto/envisual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/envisual.c -------------------------------------------------------------------------------- /scripts/1_core/proto/envrdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/envrdevice.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enwidgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enwidgets.c -------------------------------------------------------------------------------- /scripts/1_core/proto/enworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/enworld.c -------------------------------------------------------------------------------- /scripts/1_core/proto/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/proto.c -------------------------------------------------------------------------------- /scripts/1_core/proto/serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/proto/serializer.c -------------------------------------------------------------------------------- /scripts/1_core/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/script.c -------------------------------------------------------------------------------- /scripts/1_core/workbenchapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/1_core/workbenchapi.c -------------------------------------------------------------------------------- /scripts/2_gamelib/components/gamelibcomponents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/components/gamelibcomponents.c -------------------------------------------------------------------------------- /scripts/2_gamelib/entities/gamelibentities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/entities/gamelibentities.c -------------------------------------------------------------------------------- /scripts/2_gamelib/entities/rendertarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/entities/rendertarget.c -------------------------------------------------------------------------------- /scripts/2_gamelib/entities/scriptcamera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/entities/scriptcamera.c -------------------------------------------------------------------------------- /scripts/2_gamelib/entities/scriptlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/entities/scriptlight.c -------------------------------------------------------------------------------- /scripts/2_gamelib/entities/scriptmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/entities/scriptmodel.c -------------------------------------------------------------------------------- /scripts/2_gamelib/entities/worldsmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/entities/worldsmenu.c -------------------------------------------------------------------------------- /scripts/2_gamelib/gamelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/gamelib.c -------------------------------------------------------------------------------- /scripts/2_gamelib/inputmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/inputmanager.c -------------------------------------------------------------------------------- /scripts/2_gamelib/menumanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/menumanager.c -------------------------------------------------------------------------------- /scripts/2_gamelib/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/settings.c -------------------------------------------------------------------------------- /scripts/2_gamelib/tests/testingframework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/tests/testingframework.c -------------------------------------------------------------------------------- /scripts/2_gamelib/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/2_gamelib/tools.c -------------------------------------------------------------------------------- /scripts/3_game/ai/aiagent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ai/aiagent.c -------------------------------------------------------------------------------- /scripts/3_game/ai/aigroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ai/aigroup.c -------------------------------------------------------------------------------- /scripts/3_game/ai/aigroupbehaviour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ai/aigroupbehaviour.c -------------------------------------------------------------------------------- /scripts/3_game/ai/aiworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ai/aiworld.c -------------------------------------------------------------------------------- /scripts/3_game/aibehaviour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/aibehaviour.c -------------------------------------------------------------------------------- /scripts/3_game/ammocamparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ammocamparams.c -------------------------------------------------------------------------------- /scripts/3_game/ammoeffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ammoeffects.c -------------------------------------------------------------------------------- /scripts/3_game/analytics/analyticsmanagerclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/analytics/analyticsmanagerclient.c -------------------------------------------------------------------------------- /scripts/3_game/analytics/analyticsmanagerserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/analytics/analyticsmanagerserver.c -------------------------------------------------------------------------------- /scripts/3_game/analytics/scriptanalytics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/analytics/scriptanalytics.c -------------------------------------------------------------------------------- /scripts/3_game/anim/animcommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/anim/animcommand.c -------------------------------------------------------------------------------- /scripts/3_game/anim/animphysagent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/anim/animphysagent.c -------------------------------------------------------------------------------- /scripts/3_game/autotest/autotestconfighandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/autotest/autotestconfighandler.c -------------------------------------------------------------------------------- /scripts/3_game/autotest/autotestconfigjson.c: -------------------------------------------------------------------------------- 1 | class AutotestConfigJson 2 | { 3 | ref set TestSuites; 4 | } -------------------------------------------------------------------------------- /scripts/3_game/autotest/autotestfixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/autotest/autotestfixture.c -------------------------------------------------------------------------------- /scripts/3_game/autotest/autotestrunner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/autotest/autotestrunner.c -------------------------------------------------------------------------------- /scripts/3_game/billboardset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/billboardset.c -------------------------------------------------------------------------------- /scripts/3_game/bleedchancedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/bleedchancedata.c -------------------------------------------------------------------------------- /scripts/3_game/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/canvas.c -------------------------------------------------------------------------------- /scripts/3_game/ce/centraleconomy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ce/centraleconomy.c -------------------------------------------------------------------------------- /scripts/3_game/cfggameplaydatajson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/cfggameplaydatajson.c -------------------------------------------------------------------------------- /scripts/3_game/cfggameplayhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/cfggameplayhandler.c -------------------------------------------------------------------------------- /scripts/3_game/cfgplayerrestrictedareahandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/cfgplayerrestrictedareahandler.c -------------------------------------------------------------------------------- /scripts/3_game/cfgplayerrestrictedareajsondata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/cfgplayerrestrictedareajsondata.c -------------------------------------------------------------------------------- /scripts/3_game/client/clientdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/clientdata.c -------------------------------------------------------------------------------- /scripts/3_game/client/mods/modloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/mods/modloader.c -------------------------------------------------------------------------------- /scripts/3_game/client/mods/modstructure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/mods/modstructure.c -------------------------------------------------------------------------------- /scripts/3_game/client/onlineservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/onlineservices.c -------------------------------------------------------------------------------- /scripts/3_game/client/syncdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/syncdata.c -------------------------------------------------------------------------------- /scripts/3_game/client/syncentitykill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/syncentitykill.c -------------------------------------------------------------------------------- /scripts/3_game/client/syncplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/syncplayer.c -------------------------------------------------------------------------------- /scripts/3_game/client/syncplayerlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/client/syncplayerlist.c -------------------------------------------------------------------------------- /scripts/3_game/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/colors.c -------------------------------------------------------------------------------- /scripts/3_game/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/constants.c -------------------------------------------------------------------------------- /scripts/3_game/controlschememanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/controlschememanager.c -------------------------------------------------------------------------------- /scripts/3_game/damagesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/damagesystem.c -------------------------------------------------------------------------------- /scripts/3_game/dayzanimeventmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/dayzanimeventmaps.c -------------------------------------------------------------------------------- /scripts/3_game/dayzanimevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/dayzanimevents.c -------------------------------------------------------------------------------- /scripts/3_game/dayzcreature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/dayzcreature.c -------------------------------------------------------------------------------- /scripts/3_game/dayzcreatureai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/dayzcreatureai.c -------------------------------------------------------------------------------- /scripts/3_game/dayzgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/dayzgame.c -------------------------------------------------------------------------------- /scripts/3_game/dayzplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/dayzplayer.c -------------------------------------------------------------------------------- /scripts/3_game/debugweatherrpcdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/debugweatherrpcdata.c -------------------------------------------------------------------------------- /scripts/3_game/econtrolschemestate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/econtrolschemestate.c -------------------------------------------------------------------------------- /scripts/3_game/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effect.c -------------------------------------------------------------------------------- /scripts/3_game/effectmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effectmanager.c -------------------------------------------------------------------------------- /scripts/3_game/effects/backlit/backlit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effects/backlit/backlit.c -------------------------------------------------------------------------------- /scripts/3_game/effects/effectparticle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effects/effectparticle.c -------------------------------------------------------------------------------- /scripts/3_game/effects/effectparticle/vomit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effects/effectparticle/vomit.c -------------------------------------------------------------------------------- /scripts/3_game/effects/effectparticle/vomitblood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effects/effectparticle/vomitblood.c -------------------------------------------------------------------------------- /scripts/3_game/effects/effectsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/effects/effectsound.c -------------------------------------------------------------------------------- /scripts/3_game/efireignitetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/efireignitetype.c -------------------------------------------------------------------------------- /scripts/3_game/entities/building.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/building.c -------------------------------------------------------------------------------- /scripts/3_game/entities/bullettypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/bullettypes.c -------------------------------------------------------------------------------- /scripts/3_game/entities/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/camera.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzaihitcomponents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzaihitcomponents.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzanimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzanimal.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzanimalinputcontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzanimalinputcontroller.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzanimaltype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzanimaltype.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzcreatureaitype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzcreatureaitype.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzinfected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzinfected.c -------------------------------------------------------------------------------- /scripts/3_game/entities/dayzinfectedtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/dayzinfectedtype.c -------------------------------------------------------------------------------- /scripts/3_game/entities/entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/entity.c -------------------------------------------------------------------------------- /scripts/3_game/entities/entityai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/entityai.c -------------------------------------------------------------------------------- /scripts/3_game/entities/entitylightsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/entitylightsource.c -------------------------------------------------------------------------------- /scripts/3_game/entities/inventoryitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/inventoryitem.c -------------------------------------------------------------------------------- /scripts/3_game/entities/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/man.c -------------------------------------------------------------------------------- /scripts/3_game/entities/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/object.c -------------------------------------------------------------------------------- /scripts/3_game/entities/objecttyped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/objecttyped.c -------------------------------------------------------------------------------- /scripts/3_game/entities/pawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/pawn.c -------------------------------------------------------------------------------- /scripts/3_game/entities/scriptedentity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/scriptedentity.c -------------------------------------------------------------------------------- /scripts/3_game/entities/soundonvehicle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/entities/soundonvehicle.c -------------------------------------------------------------------------------- /scripts/3_game/enums/eactions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/eactions.c -------------------------------------------------------------------------------- /scripts/3_game/enums/eagents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/eagents.c -------------------------------------------------------------------------------- /scripts/3_game/enums/eanimsoundeventid.c: -------------------------------------------------------------------------------- 1 | enum EAnimSoundEventID 2 | { 3 | DROP = 898 4 | } -------------------------------------------------------------------------------- /scripts/3_game/enums/ebrokenlegs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ebrokenlegs.c -------------------------------------------------------------------------------- /scripts/3_game/enums/ebuildinglocktypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ebuildinglocktypes.c -------------------------------------------------------------------------------- /scripts/3_game/enums/ecamerazoomtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ecamerazoomtype.c -------------------------------------------------------------------------------- /scripts/3_game/enums/echargender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/echargender.c -------------------------------------------------------------------------------- /scripts/3_game/enums/econsumetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/econsumetype.c -------------------------------------------------------------------------------- /scripts/3_game/enums/econsumptionpenaltycontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/econsumptionpenaltycontext.c -------------------------------------------------------------------------------- /scripts/3_game/enums/econtaminationtypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/econtaminationtypes.c -------------------------------------------------------------------------------- /scripts/3_game/enums/ecrewmemberstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ecrewmemberstate.c -------------------------------------------------------------------------------- /scripts/3_game/enums/edayzprofilesoptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/edayzprofilesoptions.c -------------------------------------------------------------------------------- /scripts/3_game/enums/ediagmenuids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ediagmenuids.c -------------------------------------------------------------------------------- /scripts/3_game/enums/edryingincrementcategory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/edryingincrementcategory.c -------------------------------------------------------------------------------- /scripts/3_game/enums/edynamicmusicplayercategory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/edynamicmusicplayercategory.c -------------------------------------------------------------------------------- /scripts/3_game/enums/egamestateicons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/egamestateicons.c -------------------------------------------------------------------------------- /scripts/3_game/enums/emedicaldrugstype.c: -------------------------------------------------------------------------------- 1 | enum EMedicalDrugsType 2 | { 3 | NONE = 0, 4 | ANTIBIOTICS = 1, 5 | CHELATION = 2 6 | } -------------------------------------------------------------------------------- /scripts/3_game/enums/emeleetargettype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/emeleetargettype.c -------------------------------------------------------------------------------- /scripts/3_game/enums/emixedsoundstates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/emixedsoundstates.c -------------------------------------------------------------------------------- /scripts/3_game/enums/eplayerstates.c: -------------------------------------------------------------------------------- 1 | enum EPlayerStates 2 | { 3 | ALIVE, 4 | DEAD, 5 | } -------------------------------------------------------------------------------- /scripts/3_game/enums/epulsetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/epulsetype.c -------------------------------------------------------------------------------- /scripts/3_game/enums/erpcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/erpcs.c -------------------------------------------------------------------------------- /scripts/3_game/enums/estaminaconsumers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/estaminaconsumers.c -------------------------------------------------------------------------------- /scripts/3_game/enums/estaminamodifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/estaminamodifiers.c -------------------------------------------------------------------------------- /scripts/3_game/enums/estatlevels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/estatlevels.c -------------------------------------------------------------------------------- /scripts/3_game/enums/esyncevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/esyncevent.c -------------------------------------------------------------------------------- /scripts/3_game/enums/etimeofday.c: -------------------------------------------------------------------------------- 1 | enum ETimeOfDay 2 | { 3 | Day, 4 | Night, 5 | } -------------------------------------------------------------------------------- /scripts/3_game/enums/etransformationaxis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/etransformationaxis.c -------------------------------------------------------------------------------- /scripts/3_game/enums/ewaterlevels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ewaterlevels.c -------------------------------------------------------------------------------- /scripts/3_game/enums/ewatersourceobjecttype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/enums/ewatersourceobjecttype.c -------------------------------------------------------------------------------- /scripts/3_game/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/game.c -------------------------------------------------------------------------------- /scripts/3_game/gameplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gameplay.c -------------------------------------------------------------------------------- /scripts/3_game/gameplayeffectwidgets_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gameplayeffectwidgets_base.c -------------------------------------------------------------------------------- /scripts/3_game/global/ammotypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/global/ammotypes.c -------------------------------------------------------------------------------- /scripts/3_game/global/dayzphysics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/global/dayzphysics.c -------------------------------------------------------------------------------- /scripts/3_game/global/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/global/game.c -------------------------------------------------------------------------------- /scripts/3_game/global/pboapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/global/pboapi.c -------------------------------------------------------------------------------- /scripts/3_game/global/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/global/uuid.c -------------------------------------------------------------------------------- /scripts/3_game/global/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/global/world.c -------------------------------------------------------------------------------- /scripts/3_game/gui/containers/scrollbarcontainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/containers/scrollbarcontainer.c -------------------------------------------------------------------------------- /scripts/3_game/gui/containers/sizetochild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/containers/sizetochild.c -------------------------------------------------------------------------------- /scripts/3_game/gui/contextmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/contextmenu.c -------------------------------------------------------------------------------- /scripts/3_game/gui/credits/creditsloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/credits/creditsloader.c -------------------------------------------------------------------------------- /scripts/3_game/gui/credits/jsondatacredits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/credits/jsondatacredits.c -------------------------------------------------------------------------------- /scripts/3_game/gui/credits/jsondatacreditssection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/credits/jsondatacreditssection.c -------------------------------------------------------------------------------- /scripts/3_game/gui/dlcs/dlcdataloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/dlcs/dlcdataloader.c -------------------------------------------------------------------------------- /scripts/3_game/gui/dlcs/jsondatadlcinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/dlcs/jsondatadlcinfo.c -------------------------------------------------------------------------------- /scripts/3_game/gui/effects/bouncer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/effects/bouncer.c -------------------------------------------------------------------------------- /scripts/3_game/gui/effects/hovereffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/effects/hovereffect.c -------------------------------------------------------------------------------- /scripts/3_game/gui/effects/mainmenubuttoneffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/effects/mainmenubuttoneffect.c -------------------------------------------------------------------------------- /scripts/3_game/gui/effects/radialmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/effects/radialmenu.c -------------------------------------------------------------------------------- /scripts/3_game/gui/effects/radialprogressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/effects/radialprogressbar.c -------------------------------------------------------------------------------- /scripts/3_game/gui/effects/rotator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/effects/rotator.c -------------------------------------------------------------------------------- /scripts/3_game/gui/embeded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/embeded.c -------------------------------------------------------------------------------- /scripts/3_game/gui/hints/hintpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/hints/hintpage.c -------------------------------------------------------------------------------- /scripts/3_game/gui/hints/uihintpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/hints/uihintpanel.c -------------------------------------------------------------------------------- /scripts/3_game/gui/inventorygrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/inventorygrid.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/autoheightspacer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/autoheightspacer.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/horizontalspacer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/horizontalspacer.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/itemscounter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/itemscounter.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/noticespacer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/noticespacer.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/rightgap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/rightgap.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/spacerbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/spacerbase.c -------------------------------------------------------------------------------- /scripts/3_game/gui/spacers/verticalspacer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/spacers/verticalspacer.c -------------------------------------------------------------------------------- /scripts/3_game/gui/tabber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/tabber.c -------------------------------------------------------------------------------- /scripts/3_game/gui/widgetlayoutname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/gui/widgetlayoutname.c -------------------------------------------------------------------------------- /scripts/3_game/hiddenselectionsdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/hiddenselectionsdata.c -------------------------------------------------------------------------------- /scripts/3_game/hitinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/hitinfo.c -------------------------------------------------------------------------------- /scripts/3_game/hive/hive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/hive/hive.c -------------------------------------------------------------------------------- /scripts/3_game/http/backendapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/http/backendapi.c -------------------------------------------------------------------------------- /scripts/3_game/http/jsonapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/http/jsonapi.c -------------------------------------------------------------------------------- /scripts/3_game/http/jsonapistruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/http/jsonapistruct.c -------------------------------------------------------------------------------- /scripts/3_game/http/restapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/http/restapi.c -------------------------------------------------------------------------------- /scripts/3_game/human.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/human.c -------------------------------------------------------------------------------- /scripts/3_game/humanitems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/humanitems.c -------------------------------------------------------------------------------- /scripts/3_game/humanitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/humanitems.h -------------------------------------------------------------------------------- /scripts/3_game/humansettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/humansettings.c -------------------------------------------------------------------------------- /scripts/3_game/impacteffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/impacteffects.c -------------------------------------------------------------------------------- /scripts/3_game/inputapi/uainput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/inputapi/uainput.c -------------------------------------------------------------------------------- /scripts/3_game/inventoryitemtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/inventoryitemtype.c -------------------------------------------------------------------------------- /scripts/3_game/isboxcollidinggeometryproxyclasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/isboxcollidinggeometryproxyclasses.c -------------------------------------------------------------------------------- /scripts/3_game/killerdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/killerdata.c -------------------------------------------------------------------------------- /scripts/3_game/modinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/modinfo.c -------------------------------------------------------------------------------- /scripts/3_game/noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/noise.c -------------------------------------------------------------------------------- /scripts/3_game/objectspawner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/objectspawner.c -------------------------------------------------------------------------------- /scripts/3_game/particles/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/particles/particle.c -------------------------------------------------------------------------------- /scripts/3_game/particles/particlebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/particles/particlebase.c -------------------------------------------------------------------------------- /scripts/3_game/particles/particlelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/particles/particlelist.c -------------------------------------------------------------------------------- /scripts/3_game/particles/tests/pmtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/particles/tests/pmtf.c -------------------------------------------------------------------------------- /scripts/3_game/particles/tests/pmtplayback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/particles/tests/pmtplayback.c -------------------------------------------------------------------------------- /scripts/3_game/persistentflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/persistentflag.c -------------------------------------------------------------------------------- /scripts/3_game/playerconstants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/playerconstants.c -------------------------------------------------------------------------------- /scripts/3_game/ppeffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppeffects.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/ppeconstants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/ppeconstants.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/ppemanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/ppemanager.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/pperequestdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/pperequestdata.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/pperequesterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/pperequesterbank.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/ppercameranv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/ppercameranv.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/pperfever.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/pperfever.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/pperglasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/pperglasses.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/pperhmp_lvl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/pperhmp_lvl3.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/pperpain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/pperpain.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/ppershockhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/ppershockhit.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/pperspooky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/pperspooky.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/ppertunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/ppertunnel.c -------------------------------------------------------------------------------- /scripts/3_game/ppemanager/requesters/ppertutorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/ppemanager/requesters/ppertutorial.c -------------------------------------------------------------------------------- /scripts/3_game/progressasync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/progressasync.c -------------------------------------------------------------------------------- /scripts/3_game/remotelyactivateditembehaviour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/remotelyactivateditembehaviour.c -------------------------------------------------------------------------------- /scripts/3_game/services/achievementsxbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/achievementsxbox.c -------------------------------------------------------------------------------- /scripts/3_game/services/biosclientservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/biosclientservices.c -------------------------------------------------------------------------------- /scripts/3_game/services/bioslobbyservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/bioslobbyservice.c -------------------------------------------------------------------------------- /scripts/3_game/services/biospackageservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/biospackageservice.c -------------------------------------------------------------------------------- /scripts/3_game/services/biosprivacyservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/biosprivacyservice.c -------------------------------------------------------------------------------- /scripts/3_game/services/biossessionservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/biossessionservice.c -------------------------------------------------------------------------------- /scripts/3_game/services/biossocialservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/biossocialservice.c -------------------------------------------------------------------------------- /scripts/3_game/services/biosusermanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/biosusermanager.c -------------------------------------------------------------------------------- /scripts/3_game/services/contentdlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/contentdlc.c -------------------------------------------------------------------------------- /scripts/3_game/services/trialservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/services/trialservice.c -------------------------------------------------------------------------------- /scripts/3_game/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/sound.c -------------------------------------------------------------------------------- /scripts/3_game/static/easing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/static/easing.c -------------------------------------------------------------------------------- /scripts/3_game/static/timeaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/static/timeaccel.c -------------------------------------------------------------------------------- /scripts/3_game/surfaceinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/surfaceinfo.c -------------------------------------------------------------------------------- /scripts/3_game/syncevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/syncevents.c -------------------------------------------------------------------------------- /scripts/3_game/systems/actions/actionbase_basic.c: -------------------------------------------------------------------------------- 1 | class ActionBase_Basic 2 | { 3 | } 4 | 5 | -------------------------------------------------------------------------------- /scripts/3_game/systems/actions/actioninput_basic.c: -------------------------------------------------------------------------------- 1 | class ActionInput_Basic 2 | { 3 | } 4 | 5 | -------------------------------------------------------------------------------- /scripts/3_game/systems/ai/aitarget_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/ai/aitarget_callbacks.c -------------------------------------------------------------------------------- /scripts/3_game/systems/fsmbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/fsmbase.c -------------------------------------------------------------------------------- /scripts/3_game/systems/hfsmbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/hfsmbase.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/cargo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/cargo.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/debug.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/hand_actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/hand_actions.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/hand_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/hand_events.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/hand_guards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/hand_guards.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/hand_states.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/hand_states.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/handfsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/handfsm.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/handstablestate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/handstablestate.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/handstartaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/handstartaction.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/handstatebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/handstatebase.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/humaninventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/humaninventory.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/inventory.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/inventoryslots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/inventoryslots.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/junctures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/junctures.c -------------------------------------------------------------------------------- /scripts/3_game/systems/inventory/weaponinventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/inventory/weaponinventory.c -------------------------------------------------------------------------------- /scripts/3_game/systems/ofsmbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/ofsmbase.c -------------------------------------------------------------------------------- /scripts/3_game/systems/testframework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/testframework.c -------------------------------------------------------------------------------- /scripts/3_game/systems/tftests/enprofilertests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/tftests/enprofilertests.c -------------------------------------------------------------------------------- /scripts/3_game/systems/tftests/scriptinvokertests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/systems/tftests/scriptinvokertests.c -------------------------------------------------------------------------------- /scripts/3_game/tools/bitarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/bitarray.c -------------------------------------------------------------------------------- /scripts/3_game/tools/blend2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/blend2d.c -------------------------------------------------------------------------------- /scripts/3_game/tools/cameratools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/cameratools.c -------------------------------------------------------------------------------- /scripts/3_game/tools/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/component.c -------------------------------------------------------------------------------- /scripts/3_game/tools/component/_constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/component/_constants.c -------------------------------------------------------------------------------- /scripts/3_game/tools/component/bodystaging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/component/bodystaging.c -------------------------------------------------------------------------------- /scripts/3_game/tools/componentsbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/componentsbank.c -------------------------------------------------------------------------------- /scripts/3_game/tools/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/debug.c -------------------------------------------------------------------------------- /scripts/3_game/tools/debugprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/debugprint.c -------------------------------------------------------------------------------- /scripts/3_game/tools/dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/dispatcher.c -------------------------------------------------------------------------------- /scripts/3_game/tools/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/input.c -------------------------------------------------------------------------------- /scripts/3_game/tools/inpututils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/inpututils.c -------------------------------------------------------------------------------- /scripts/3_game/tools/jsonfileloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/jsonfileloader.c -------------------------------------------------------------------------------- /scripts/3_game/tools/jsonobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/jsonobject.c -------------------------------------------------------------------------------- /scripts/3_game/tools/keystouielements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/keystouielements.c -------------------------------------------------------------------------------- /scripts/3_game/tools/logtemplates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/logtemplates.c -------------------------------------------------------------------------------- /scripts/3_game/tools/simplecircularbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/simplecircularbuffer.c -------------------------------------------------------------------------------- /scripts/3_game/tools/simplemovingaverage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/simplemovingaverage.c -------------------------------------------------------------------------------- /scripts/3_game/tools/timeconversions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/timeconversions.c -------------------------------------------------------------------------------- /scripts/3_game/tools/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/tools.c -------------------------------------------------------------------------------- /scripts/3_game/tools/uimanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/uimanager.c -------------------------------------------------------------------------------- /scripts/3_game/tools/uiscriptedmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/uiscriptedmenu.c -------------------------------------------------------------------------------- /scripts/3_game/tools/uiscriptedwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/uiscriptedwindow.c -------------------------------------------------------------------------------- /scripts/3_game/tools/utilityclasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/utilityclasses.c -------------------------------------------------------------------------------- /scripts/3_game/tools/vector2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/tools/vector2.c -------------------------------------------------------------------------------- /scripts/3_game/triggercarrierbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/triggercarrierbase.c -------------------------------------------------------------------------------- /scripts/3_game/undergroundarealoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/undergroundarealoader.c -------------------------------------------------------------------------------- /scripts/3_game/vehicles/boat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/vehicles/boat.c -------------------------------------------------------------------------------- /scripts/3_game/vehicles/car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/vehicles/car.c -------------------------------------------------------------------------------- /scripts/3_game/vehicles/helicopter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/vehicles/helicopter.c -------------------------------------------------------------------------------- /scripts/3_game/vehicles/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/vehicles/transport.c -------------------------------------------------------------------------------- /scripts/3_game/vonmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/vonmanager.c -------------------------------------------------------------------------------- /scripts/3_game/weather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/weather.c -------------------------------------------------------------------------------- /scripts/3_game/worlddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/worlddata.c -------------------------------------------------------------------------------- /scripts/3_game/worldlighting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/worldlighting.c -------------------------------------------------------------------------------- /scripts/3_game/xboxdemogame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/3_game/xboxdemogame.c -------------------------------------------------------------------------------- /scripts/4_world/classes/areadamage/areadamage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/areadamage/areadamage.c -------------------------------------------------------------------------------- /scripts/4_world/classes/basebuilding/construction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/basebuilding/construction.c -------------------------------------------------------------------------------- /scripts/4_world/classes/bloodyhands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/bloodyhands.c -------------------------------------------------------------------------------- /scripts/4_world/classes/camerashake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/camerashake.c -------------------------------------------------------------------------------- /scripts/4_world/classes/confighandler/cfgparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/confighandler/cfgparam.c -------------------------------------------------------------------------------- /scripts/4_world/classes/confighandler/cfgparamint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/confighandler/cfgparamint.c -------------------------------------------------------------------------------- /scripts/4_world/classes/consumeconditiondata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/consumeconditiondata.c -------------------------------------------------------------------------------- /scripts/4_world/classes/contextmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/contextmenu.c -------------------------------------------------------------------------------- /scripts/4_world/classes/cooking/cooking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/cooking/cooking.c -------------------------------------------------------------------------------- /scripts/4_world/classes/cooking/fireconsumable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/cooking/fireconsumable.c -------------------------------------------------------------------------------- /scripts/4_world/classes/corpsedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/corpsedata.c -------------------------------------------------------------------------------- /scripts/4_world/classes/craftingmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/craftingmanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/debug/presethandlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/debug/presethandlers.c -------------------------------------------------------------------------------- /scripts/4_world/classes/debugmonitorvalues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/debugmonitorvalues.c -------------------------------------------------------------------------------- /scripts/4_world/classes/emoteclasses/emotebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/emoteclasses/emotebase.c -------------------------------------------------------------------------------- /scripts/4_world/classes/emoteclasses/emoteclasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/emoteclasses/emoteclasses.c -------------------------------------------------------------------------------- /scripts/4_world/classes/emoteconstructor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/emoteconstructor.c -------------------------------------------------------------------------------- /scripts/4_world/classes/emotemanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/emotemanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/environment/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/environment/environment.c -------------------------------------------------------------------------------- /scripts/4_world/classes/explosion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/explosion.c -------------------------------------------------------------------------------- /scripts/4_world/classes/foodstage/foodstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/foodstage/foodstage.c -------------------------------------------------------------------------------- /scripts/4_world/classes/heatcomfortanimhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/heatcomfortanimhandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/hologram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/hologram.c -------------------------------------------------------------------------------- /scripts/4_world/classes/injuryhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/injuryhandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/introscenecharacter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/introscenecharacter.c -------------------------------------------------------------------------------- /scripts/4_world/classes/inventoryactionhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/inventoryactionhandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/keybinding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/keybinding.c -------------------------------------------------------------------------------- /scripts/4_world/classes/kurushake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/kurushake.c -------------------------------------------------------------------------------- /scripts/4_world/classes/lifespanlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/lifespanlevel.c -------------------------------------------------------------------------------- /scripts/4_world/classes/meleetargeting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/meleetargeting.c -------------------------------------------------------------------------------- /scripts/4_world/classes/messagereceiverbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/messagereceiverbase.c -------------------------------------------------------------------------------- /scripts/4_world/classes/missionbaseworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/missionbaseworld.c -------------------------------------------------------------------------------- /scripts/4_world/classes/modules/plantmaterial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/modules/plantmaterial.c -------------------------------------------------------------------------------- /scripts/4_world/classes/modules/syncedvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/modules/syncedvalue.c -------------------------------------------------------------------------------- /scripts/4_world/classes/mousebinding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/mousebinding.c -------------------------------------------------------------------------------- /scripts/4_world/classes/mousebuttoninfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/mousebuttoninfo.c -------------------------------------------------------------------------------- /scripts/4_world/classes/nutritionalprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/nutritionalprofile.c -------------------------------------------------------------------------------- /scripts/4_world/classes/playergearspawn/cfgplayerspawndatainterpreted.c: -------------------------------------------------------------------------------- 1 | class PlayerSpawnDataInterpreted 2 | { 3 | 4 | } -------------------------------------------------------------------------------- /scripts/4_world/classes/playerlightmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/playerlightmanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/playerstats/playerstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/playerstats/playerstats.c -------------------------------------------------------------------------------- /scripts/4_world/classes/playerstomach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/playerstomach.c -------------------------------------------------------------------------------- /scripts/4_world/classes/playersymptoms/statebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/playersymptoms/statebase.c -------------------------------------------------------------------------------- /scripts/4_world/classes/playersymptoms/statecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/playersymptoms/statecb.c -------------------------------------------------------------------------------- /scripts/4_world/classes/propertymodifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/propertymodifiers.c -------------------------------------------------------------------------------- /scripts/4_world/classes/quickbarbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/quickbarbase.c -------------------------------------------------------------------------------- /scripts/4_world/classes/rainprocurementcomponent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/rainprocurementcomponent.c -------------------------------------------------------------------------------- /scripts/4_world/classes/rainprocurementhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/rainprocurementhandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/rainprocurementmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/rainprocurementmanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/cacheobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/cacheobject.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipebase.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/bloodtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/bloodtest.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/cleanrags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/cleanrags.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/craftbait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/craftbait.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/craftbolt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/craftbolt.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/craftbow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/craftbow.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/craftrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/craftrag.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/opencan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/opencan.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/paintak74.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/paintak74.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/paintb95.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/paintb95.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/paintm4a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/paintm4a1.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/paintsks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/paintsks.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/patchitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/patchitem.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/sawoffb95.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/sawoffb95.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recipes/recipes/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recipes/recipes/test.c -------------------------------------------------------------------------------- /scripts/4_world/classes/recoilbase/recoilbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/recoilbase/recoilbase.c -------------------------------------------------------------------------------- /scripts/4_world/classes/sceneeditor/scenedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/sceneeditor/scenedata.c -------------------------------------------------------------------------------- /scripts/4_world/classes/sceneeditor/sceneobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/sceneeditor/sceneobject.c -------------------------------------------------------------------------------- /scripts/4_world/classes/sceneeditor/sceneplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/sceneeditor/sceneplayer.c -------------------------------------------------------------------------------- /scripts/4_world/classes/shockhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/shockhandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/softskillsmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/softskillsmanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/soundevents/soundevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/soundevents/soundevents.c -------------------------------------------------------------------------------- /scripts/4_world/classes/sqfdebugwatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/sqfdebugwatcher.c -------------------------------------------------------------------------------- /scripts/4_world/classes/staminahandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/staminahandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/staminamodifierdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/staminamodifierdata.c -------------------------------------------------------------------------------- /scripts/4_world/classes/staminasoundhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/staminasoundhandler.c -------------------------------------------------------------------------------- /scripts/4_world/classes/stanceindicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/stanceindicator.c -------------------------------------------------------------------------------- /scripts/4_world/classes/toggleselections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/toggleselections.c -------------------------------------------------------------------------------- /scripts/4_world/classes/transfervalues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/transfervalues.c -------------------------------------------------------------------------------- /scripts/4_world/classes/undergroundhandlerclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/undergroundhandlerclient.c -------------------------------------------------------------------------------- /scripts/4_world/classes/vehiclemanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/vehiclemanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/virtualhud/_constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/virtualhud/_constants.c -------------------------------------------------------------------------------- /scripts/4_world/classes/virtualhud/displaystatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/virtualhud/displaystatus.c -------------------------------------------------------------------------------- /scripts/4_world/classes/weapondebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/weapondebug.c -------------------------------------------------------------------------------- /scripts/4_world/classes/weapons/weaponmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/weapons/weaponmanager.c -------------------------------------------------------------------------------- /scripts/4_world/classes/worlds/chernarusplus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/worlds/chernarusplus.c -------------------------------------------------------------------------------- /scripts/4_world/classes/worlds/enoch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/worlds/enoch.c -------------------------------------------------------------------------------- /scripts/4_world/classes/worlds/mainmenuworlddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/worlds/mainmenuworlddata.c -------------------------------------------------------------------------------- /scripts/4_world/classes/worlds/sakhal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/worlds/sakhal.c -------------------------------------------------------------------------------- /scripts/4_world/classes/writtennotedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/classes/writtennotedata.c -------------------------------------------------------------------------------- /scripts/4_world/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities.c -------------------------------------------------------------------------------- /scripts/4_world/entities/advancedcommunication/land_lamp_city1_amp.c: -------------------------------------------------------------------------------- 1 | class Land_Lamp_City1_amp extends PASReceiver 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/advancedcommunication/land_power_pole_conc1_amp.c: -------------------------------------------------------------------------------- 1 | class Land_Power_Pole_Conc1_Amp extends PASReceiver 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /scripts/4_world/entities/advancedcommunication/land_power_pole_conc4_lamp_amp.c: -------------------------------------------------------------------------------- 1 | class Land_Power_Pole_Conc4_Lamp_Amp extends PASReceiver 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/advancedcommunication/land_power_pole_wood1_amp.c: -------------------------------------------------------------------------------- 1 | class Land_Power_Pole_Wood1_Amp extends PASReceiver 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /scripts/4_world/entities/advancedcommunication/land_power_pole_wood1_lamp_amp.c: -------------------------------------------------------------------------------- 1 | class Land_Power_Pole_Wood1_Lamp_Amp extends PASReceiver 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/crashbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/building/crashbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/building/fuelstation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/building/fuelstation.c -------------------------------------------------------------------------------- /scripts/4_world/entities/building/military/houses/mil_barracks1.c: -------------------------------------------------------------------------------- 1 | class Land_Mil_Barracks1 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/military/houses/mil_barracks3.c: -------------------------------------------------------------------------------- 1 | class Land_Mil_Barracks3 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/military/houses/mil_barracks4.c: -------------------------------------------------------------------------------- 1 | class Land_Mil_Barracks4 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_1f1.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_1F1 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_1f3.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_1F3 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_1f4.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_1F4 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_2f1.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_2F1 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_2f8.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_2F8 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_2f9.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_2F9 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_3f2.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_3F2 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houseblocks/houseblock_5f.c: -------------------------------------------------------------------------------- 1 | class Land_HouseBlock_5F extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_airfield_small_control.c: -------------------------------------------------------------------------------- 1 | class Land_Airfield_Small_Control extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1b01_pub.c: -------------------------------------------------------------------------------- 1 | class Land_House_1B01_Pub extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w01.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W01 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w02.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W02 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w03.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W03 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w04.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W04 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w05.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W05 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w06.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W06 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w08.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W08 extends BuildingWithFireplace 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w09.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W09 extends BuildingWithFireplace 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w10.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W10 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w11.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W11 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_1w12.c: -------------------------------------------------------------------------------- 1 | class Land_House_1W12 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_2b01.c: -------------------------------------------------------------------------------- 1 | class Land_House_2B01 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_2w01.c: -------------------------------------------------------------------------------- 1 | class Land_House_2W01 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_house_2w02.c: -------------------------------------------------------------------------------- 1 | class Land_House_2W02 extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/houses/land_village_pub.c: -------------------------------------------------------------------------------- 1 | class Land_Village_Pub extends BuildingWithFireplace 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/residential/misc/land_misc_well_pump_blue.c: -------------------------------------------------------------------------------- 1 | class Land_Misc_Well_Pump_Blue extends Well 2 | { 3 | 4 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/signs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/building/signs.c -------------------------------------------------------------------------------- /scripts/4_world/entities/building/specific/hotspring.c: -------------------------------------------------------------------------------- 1 | class Land_HotSpring: House 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/specific/land_waterspring_sakhal.c: -------------------------------------------------------------------------------- 1 | class Land_WaterSpring_Sakhal : BuildingSuper 2 | { 3 | 4 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/building/well.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/building/well.c -------------------------------------------------------------------------------- /scripts/4_world/entities/cluttercutter2x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/cluttercutter2x2.c -------------------------------------------------------------------------------- /scripts/4_world/entities/cluttercutter6x6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/cluttercutter6x6.c -------------------------------------------------------------------------------- /scripts/4_world/entities/cluttercutterfireplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/cluttercutterfireplace.c -------------------------------------------------------------------------------- /scripts/4_world/entities/core/inherited/building.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/core/inherited/building.c -------------------------------------------------------------------------------- /scripts/4_world/entities/core/inherited/entityai.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/4_world/entities/core/inherited/lightai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/core/inherited/lightai.c -------------------------------------------------------------------------------- /scripts/4_world/entities/core/inherited/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/core/inherited/man.c -------------------------------------------------------------------------------- /scripts/4_world/entities/core/inherited/plant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/core/inherited/plant.c -------------------------------------------------------------------------------- /scripts/4_world/entities/core/inherited/weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/core/inherited/weapon.c -------------------------------------------------------------------------------- /scripts/4_world/entities/dayzanimalimplement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/dayzanimalimplement.c -------------------------------------------------------------------------------- /scripts/4_world/entities/dayzinfectedimplement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/dayzinfectedimplement.c -------------------------------------------------------------------------------- /scripts/4_world/entities/dayzplayerimplement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/dayzplayerimplement.c -------------------------------------------------------------------------------- /scripts/4_world/entities/dayzplayersyncjunctures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/dayzplayersyncjunctures.c -------------------------------------------------------------------------------- /scripts/4_world/entities/dayzplayerutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/dayzplayerutils.c -------------------------------------------------------------------------------- /scripts/4_world/entities/dayzspectator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/dayzspectator.c -------------------------------------------------------------------------------- /scripts/4_world/entities/effects/boatwatereffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/effects/boatwatereffects.c -------------------------------------------------------------------------------- /scripts/4_world/entities/effects/wheelsmoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/effects/wheelsmoke.c -------------------------------------------------------------------------------- /scripts/4_world/entities/explosivesbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/explosivesbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/automaticrifle/ots14.c: -------------------------------------------------------------------------------- 1 | class OTS14 : Rifle_Base 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/boltrifle_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/boltrifle_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/debug.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/flaresimulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/flaresimulation.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/fsm/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/fsm/actions.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/fsm/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/fsm/events.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/fsm/guards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/fsm/guards.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/launcher/m79.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/launcher/m79.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/machinegun/m249.c: -------------------------------------------------------------------------------- 1 | class M249 : Weapon_Base 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/openbolt_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/openbolt_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/1911.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/1911.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/cz75.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/cz75.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/de.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/flaregun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/flaregun.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/fnx45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/fnx45.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/glock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/glock.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/longhorn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/longhorn.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/magnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/magnum.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/makarov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/makarov.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/mkii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/mkii.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/p1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol/p1.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/pmm.c: -------------------------------------------------------------------------------- 1 | class PMM : Pistol_Base 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol/red9.c: -------------------------------------------------------------------------------- 1 | class Red9 : Pistol_Base 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistol_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistol_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/pistolalt_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/pistolalt_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/b95.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/b95.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/cz527.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/cz527.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/cz550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/cz550.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/izh18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/izh18.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/mosin9130.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/mosin9130.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/repeater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/repeater.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/ruger1022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/ruger1022.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/scout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/scout.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/ssg82.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/ssg82.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/sv98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/sv98.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/svd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle/svd.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle/trumpet.c: -------------------------------------------------------------------------------- 1 | class Trumpet : Rifle_Base 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/rifle_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/rifle_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/shotgun/izh43.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/shotgun/izh43.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/shotgun/mp133.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/shotgun/mp133.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/shotgun/saiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/shotgun/saiga.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smg/cz61.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smg/cz61.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smg/mp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smg/mp5.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smg/pm73rak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smg/pm73rak.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smg/pp19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smg/pp19.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smg/ump45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smg/ump45.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smg/vss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smg/vss.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/smokesimulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/smokesimulation.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/weapon_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/weapon_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/firearms/weaponfsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/firearms/weaponfsm.c -------------------------------------------------------------------------------- /scripts/4_world/entities/game/super/building.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/game/super/building.c -------------------------------------------------------------------------------- /scripts/4_world/entities/game/super/inventoryitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/game/super/inventoryitem.c -------------------------------------------------------------------------------- /scripts/4_world/entities/game/super/lightai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/game/super/lightai.c -------------------------------------------------------------------------------- /scripts/4_world/entities/game/super/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/game/super/man.c -------------------------------------------------------------------------------- /scripts/4_world/entities/game/super/plant.c: -------------------------------------------------------------------------------- 1 | typedef WoodBase PlantSuper; -------------------------------------------------------------------------------- /scripts/4_world/entities/gardenbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/gardenbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/gardenbase/gardenplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/gardenbase/gardenplot.c -------------------------------------------------------------------------------- /scripts/4_world/entities/gardenbase/plantbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/gardenbase/plantbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/gardenbase/slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/gardenbase/slot.c -------------------------------------------------------------------------------- /scripts/4_world/entities/grenade_base/m67grenade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/grenade_base/m67grenade.c -------------------------------------------------------------------------------- /scripts/4_world/entities/grenade_base/rgd5grenade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/grenade_base/rgd5grenade.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/ammoboxes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/ammoboxes.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/bandagedressing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/bandagedressing.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/barbedbaseballbat.c: -------------------------------------------------------------------------------- 1 | class BarbedBaseballBat extends Inventory_Base 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/barbedwire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/barbedwire.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/bark_colorbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/bark_colorbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/baseballbat.c: -------------------------------------------------------------------------------- 1 | class BaseballBat extends Inventory_Base 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/battery9v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/battery9v.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/batterycharger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/batterycharger.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/binocularsbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/binocularsbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/blowtorch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/blowtorch.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/boneknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/boneknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/cablereel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/cablereel.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/camonet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/camonet.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/cattleprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/cattleprod.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/chemlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/chemlight.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/cleaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/cleaver.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clockbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/clockbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/chainmail.c: -------------------------------------------------------------------------------- 1 | class Chainmail extends Top_Base {}; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/chainmail_leggings.c: -------------------------------------------------------------------------------- 1 | class Chainmail_Leggings extends Pants_Base {}; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/chestholster.c: -------------------------------------------------------------------------------- 1 | class ChestHolster extends Vest_Base {}; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/chestplate.c: -------------------------------------------------------------------------------- 1 | class Chestplate extends Vest_Base {}; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/courierbag.c: -------------------------------------------------------------------------------- 1 | class CourierBag : Backpack_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/furcourierbag.c: -------------------------------------------------------------------------------- 1 | class FurCourierBag : Backpack_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/furimprovisedbag.c: -------------------------------------------------------------------------------- 1 | class FurImprovisedBag : Backpack_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/improvisedbag.c: -------------------------------------------------------------------------------- 1 | class ImprovisedBag : Backpack_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/knifeholster.c: -------------------------------------------------------------------------------- 1 | class KnifeHolster: Clothing {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/leatherjacket_natural.c: -------------------------------------------------------------------------------- 1 | /* 2 | class LeatherJacket_Natural extends Clothing 3 | { 4 | } 5 | */ -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/medievalboots.c: -------------------------------------------------------------------------------- 1 | class MedievalBoots extends Shoes_Base 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/officerhat.c: -------------------------------------------------------------------------------- 1 | class OfficerHat extends HeadGear_Base 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/policecap.c: -------------------------------------------------------------------------------- 1 | class PoliceCap extends HeadGear_Base 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/smershbag.c: -------------------------------------------------------------------------------- 1 | class SmershBag extends Backpack_Base {}; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing/ttskoboots.c: -------------------------------------------------------------------------------- 1 | class TTSKOBoots extends Shoes_Base {}; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/clothing_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/clothing_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/combatknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/combatknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/combinationlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/combinationlock.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/compass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/compass.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/container_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/container_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/containerlocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/containerlocked.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/cookingstand.c: -------------------------------------------------------------------------------- 1 | class CookingStand extends TripodBase 2 | { 3 | 4 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/crudemachete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/crudemachete.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/defibrillator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/defibrillator.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/edible_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/edible_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/edible_base/fox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/edible_base/fox.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/fangeknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/fangeknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/fencekit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/fencekit.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/fieldshovel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/fieldshovel.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/firefighteraxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/firefighteraxe.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/firewood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/firewood.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/flag_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/flag_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/flashlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/flashlight.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/medical/clearsyringe.c: -------------------------------------------------------------------------------- 1 | class ClearSyringe: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/medical/injectionvial.c: -------------------------------------------------------------------------------- 1 | class InjectionVial: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/medical/salinebag.c: -------------------------------------------------------------------------------- 1 | class SalineBag: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/medical/startkitiv.c: -------------------------------------------------------------------------------- 1 | class StartKitIV: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/canopener.c: -------------------------------------------------------------------------------- 1 | class CanOpener: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/cassette.c: -------------------------------------------------------------------------------- 1 | class Cassette : Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/doortestcamera.c: -------------------------------------------------------------------------------- 1 | class DoorTestCamera: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/electronicrepairkit.c: -------------------------------------------------------------------------------- 1 | class ElectronicRepairKit: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/messtin.c: -------------------------------------------------------------------------------- 1 | class MessTin: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/pen_black.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/pen_blue.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/pen_green.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/pen_red.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/weaponcleaningkit.c: -------------------------------------------------------------------------------- 1 | class WeaponCleaningKit: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/gear/tools/whetstone.c: -------------------------------------------------------------------------------- 1 | class Whetstone: Inventory_Base {}; 2 | -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/giftbox_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/giftbox_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/grenade_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/grenade_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/hacksaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/hacksaw.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/hammer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/hammer.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/handdrillkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/handdrillkit.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/hatchet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/hatchet.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/head.c: -------------------------------------------------------------------------------- 1 | class Head : ItemBase 2 | { 3 | }; -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/heatpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/heatpack.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/hescobox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/hescobox.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/huntingknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/huntingknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/itembook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/itembook.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/kitbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/kitbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/kitchenknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/kitchenknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/kukriknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/kukriknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/longtorch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/longtorch.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/machete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/machete.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/matchbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/matchbox.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/megaphone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/megaphone.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/metalplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/metalplate.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/metalwire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/metalwire.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/nail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/nail.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/nailedbaseballbat.c: -------------------------------------------------------------------------------- 1 | class NailedBaseballBat extends Inventory_Base 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/nvgoggles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/nvgoggles.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/paper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/paper.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/particletest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/particletest.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/pelt_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/pelt_base.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/pickaxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/pickaxe.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/pipe.c: -------------------------------------------------------------------------------- 1 | class Pipe extends Inventory_Base 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/pipewrench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/pipewrench.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/pitchfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/pitchfork.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/pliers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/pliers.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/punchedcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/punchedcard.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/radio.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/rag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/rag.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/rangefinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/rangefinder.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/raycaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/raycaster.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/roadflare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/roadflare.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/screwdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/screwdriver.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/seedpackbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/seedpackbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/shelterkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/shelterkit.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/shovel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/shovel.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/sickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/sickle.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/sledgehammer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/sledgehammer.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/sodacan_empty.c: -------------------------------------------------------------------------------- 1 | class SodaCan_Empty extends ItemBase {} -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/spotlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/spotlight.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/steakknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/steakknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/stone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/stone.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/stoneknife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/stoneknife.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/stunbaton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/stunbaton.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/suppressorbase.c: -------------------------------------------------------------------------------- 1 | class SuppresorBase extends ItemBase 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/sword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/sword.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/tentbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/tentbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/thermometer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/thermometer.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/toolbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/toolbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/torch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/torch.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/torch_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/torch_video.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/totemkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/totemkit.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/trapbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/trapbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/tripod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/tripod.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/woodaxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/woodaxe.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/woodenlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/woodenlog.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/woodenplank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/woodenplank.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/woodenstick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/woodenstick.c -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/worldcontainer_base.c: -------------------------------------------------------------------------------- 1 | class WorldContainer_Base extends ItemBase 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/xmasbaseballbat.c: -------------------------------------------------------------------------------- 1 | class XmasBaseballBat extends Inventory_Base 2 | { 3 | } -------------------------------------------------------------------------------- /scripts/4_world/entities/itembase/xmaslights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/itembase/xmaslights.c -------------------------------------------------------------------------------- /scripts/4_world/entities/manbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/manbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/manbase/lightaibase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/manbase/lightaibase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/manbase/playerbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/manbase/playerbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/rockbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/rockbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/scriptedlightbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/scriptedlightbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/synchitinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/synchitinfo.c -------------------------------------------------------------------------------- /scripts/4_world/entities/undergroundstash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/undergroundstash.c -------------------------------------------------------------------------------- /scripts/4_world/entities/vehicles/boatscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/vehicles/boatscript.c -------------------------------------------------------------------------------- /scripts/4_world/entities/vehicles/carscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/vehicles/carscript.c -------------------------------------------------------------------------------- /scripts/4_world/entities/weaponparticles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/weaponparticles.c -------------------------------------------------------------------------------- /scripts/4_world/entities/woodbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/woodbase.c -------------------------------------------------------------------------------- /scripts/4_world/entities/woodbase/bushes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/woodbase/bushes.c -------------------------------------------------------------------------------- /scripts/4_world/entities/woodbase/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/entities/woodbase/trees.c -------------------------------------------------------------------------------- /scripts/4_world/plugins/pluginbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/plugins/pluginbase.c -------------------------------------------------------------------------------- /scripts/4_world/plugins/pluginmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/plugins/pluginmanager.c -------------------------------------------------------------------------------- /scripts/4_world/static/betasound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/betasound.c -------------------------------------------------------------------------------- /scripts/4_world/static/bloodtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/bloodtype.c -------------------------------------------------------------------------------- /scripts/4_world/static/liquid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/liquid.c -------------------------------------------------------------------------------- /scripts/4_world/static/misceffects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/misceffects.c -------------------------------------------------------------------------------- /scripts/4_world/static/miscgameplayfunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/miscgameplayfunctions.c -------------------------------------------------------------------------------- /scripts/4_world/static/openitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/openitem.c -------------------------------------------------------------------------------- /scripts/4_world/static/paintitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/paintitem.c -------------------------------------------------------------------------------- /scripts/4_world/static/quantityconversions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/quantityconversions.c -------------------------------------------------------------------------------- /scripts/4_world/static/sensesaievaluate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/sensesaievaluate.c -------------------------------------------------------------------------------- /scripts/4_world/static/soundsetmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/soundsetmap.c -------------------------------------------------------------------------------- /scripts/4_world/static/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/static/surface.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/bot.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/bot_hunt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/bot_hunt.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/bot_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/bot_tests.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/bot_timedwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/bot_timedwait.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/botactions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/botactions.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/botevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/botevents.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/botfsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/botfsm.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/botguards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/botguards.c -------------------------------------------------------------------------------- /scripts/4_world/systems/bot/botstates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/4_world/systems/bot/botstates.c -------------------------------------------------------------------------------- /scripts/5_mission/dayzintroscene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/dayzintroscene.c -------------------------------------------------------------------------------- /scripts/5_mission/dayzintroscenepc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/dayzintroscenepc.c -------------------------------------------------------------------------------- /scripts/5_mission/dayzintroscenexbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/dayzintroscenexbox.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/actionmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/actionmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/actiontargetscursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/actiontargetscursor.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/bookmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/bookmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/cameratools/ctactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/cameratools/ctactor.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/cameratools/ctevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/cameratools/ctevent.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/cameratools/ctkeyframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/cameratools/ctkeyframe.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/chat/chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/chat/chat.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/chat/chatinputmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/chat/chatinputmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/chat/chatline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/chat/chatline.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/connectiondialogue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/connectiondialogue.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/contextmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/contextmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/continuousactionprogress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/continuousactionprogress.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/controlsxbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/controlsxbox.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/controlsxboxnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/controlsxboxnew.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/crosshairselector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/crosshairselector.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/dayzplayerdebug/dayzplayerdebug.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/5_mission/gui/debugmonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/debugmonitor.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/earlyaccessmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/earlyaccessmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/gesturesmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/gesturesmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/helpscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/helpscreen.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/huddebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/huddebug.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/ingamehud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/ingamehud.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/ingamehudheatbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/ingamehudheatbuffer.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/ingamehudvisibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/ingamehudvisibility.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/ingamemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/ingamemenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/ingamemenuxbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/ingamemenuxbox.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/inspectmenunew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/inspectmenunew.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/inventorymenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/inventorymenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/inventorynew/attachments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/inventorynew/attachments.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/inventorynew/inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/inventorynew/inventory.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/inventorynew/itemmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/inventorynew/itemmanager.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/invitemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/invitemenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/itemactionswidget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/itemactionswidget.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/itemdropwarningmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/itemdropwarningmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/loadingmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/loadingmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/logoutmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/logoutmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/maphandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/maphandler.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/mapmarkersinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/mapmarkersinfo.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/mapmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/mapmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/hints/hintpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/newui/hints/hintpage.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/hints/uihintpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/newui/hints/uihintpanel.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/keybindings/keybindingsentrywindow.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/mainmenu/mainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/newui/mainmenu/mainmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/options/dependentoptions.c: -------------------------------------------------------------------------------- 1 | enum EDependentOptions 2 | { 3 | MOUSEANDKEYBOARD_QUICKBAR, 4 | } -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/optionselector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/newui/optionselector.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/optionselectorbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/newui/optionselectorbase.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/newui/videoplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/newui/videoplayer.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/notemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/notemenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/objectfollower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/objectfollower.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/presetsmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/presetsmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/profileoptionsui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/profileoptionsui.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/projectedcrosshair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/projectedcrosshair.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/radialquickbarmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/radialquickbarmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/respawndialogue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/respawndialogue.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/sceneeditormenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/sceneeditormenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsole.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsolecameratab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsolecameratab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsoleconfigtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsoleconfigtab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsolegeneraltab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsolegeneraltab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsoleitemstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsoleitemstab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsoleoutputtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsoleoutputtab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsolepresetslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsolepresetslist.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsoleselector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsoleselector.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsolesoundstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsolesoundstab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsoletabbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsoletabbase.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsolevicinitytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsolevicinitytab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/scriptconsoleweathertab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/scriptconsoleweathertab.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/startupmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/startupmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/staticguiutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/staticguiutils.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/titlescreenmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/titlescreenmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/vehicles/boathud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/vehicles/boathud.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/vehicles/carhud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/vehicles/carhud.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/vehicles/vehiclehudbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/vehicles/vehiclehudbase.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/watermark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/watermark.c -------------------------------------------------------------------------------- /scripts/5_mission/gui/widgeteventhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/gui/widgeteventhandler.c -------------------------------------------------------------------------------- /scripts/5_mission/mission/dispatchercaller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/mission/dispatchercaller.c -------------------------------------------------------------------------------- /scripts/5_mission/mission/missionbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/mission/missionbase.c -------------------------------------------------------------------------------- /scripts/5_mission/mission/missionbenchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/mission/missionbenchmark.c -------------------------------------------------------------------------------- /scripts/5_mission/mission/missiongameplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/mission/missiongameplay.c -------------------------------------------------------------------------------- /scripts/5_mission/mission/missionmainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/mission/missionmainmenu.c -------------------------------------------------------------------------------- /scripts/5_mission/mission/missionserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/mission/missionserver.c -------------------------------------------------------------------------------- /scripts/5_mission/somemission.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/5_mission/somemission.c -------------------------------------------------------------------------------- /scripts/data/credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/credits.json -------------------------------------------------------------------------------- /scripts/data/dlcinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/dlcinfo.json -------------------------------------------------------------------------------- /scripts/data/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/hints.json -------------------------------------------------------------------------------- /scripts/data/internal/script_console_hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/internal/script_console_hints.json -------------------------------------------------------------------------------- /scripts/data/news_feed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/news_feed.txt -------------------------------------------------------------------------------- /scripts/data/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/notifications.json -------------------------------------------------------------------------------- /scripts/data/pagedatatutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/data/pagedatatutorials.json -------------------------------------------------------------------------------- /scripts/editor/plugins/dayztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/plugins/dayztools.c -------------------------------------------------------------------------------- /scripts/editor/projects/dayz.ssln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/projects/dayz.ssln -------------------------------------------------------------------------------- /scripts/editor/projects/engine.sproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/editor/projects/game.sproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/editor/projects/gamelib.sproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/editor/projects/mission.sproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/editor/projects/workbench.sproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/editor/projects/world.sproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/editor/workbench-dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench-dark.qss -------------------------------------------------------------------------------- /scripts/editor/workbench-dark2.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench-dark2.qss -------------------------------------------------------------------------------- /scripts/editor/workbench-dark3.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench-dark3.qss -------------------------------------------------------------------------------- /scripts/editor/workbench/blametool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench/blametool.c -------------------------------------------------------------------------------- /scripts/editor/workbench/checkloctool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench/checkloctool.c -------------------------------------------------------------------------------- /scripts/editor/workbench/difftool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench/difftool.c -------------------------------------------------------------------------------- /scripts/editor/workbench/opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench/opendir.c -------------------------------------------------------------------------------- /scripts/editor/workbench/resavetool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench/resavetool.c -------------------------------------------------------------------------------- /scripts/editor/workbench/showlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/editor/workbench/showlog.c -------------------------------------------------------------------------------- /scripts/profile_fixed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/profile_fixed.cfg -------------------------------------------------------------------------------- /scripts/staticdefinesdoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohemiaInteractive/DayZ-Script-Diff/HEAD/scripts/staticdefinesdoc.c --------------------------------------------------------------------------------