├── Math ├── BitCorrection.c ├── ConeVicinity.c ├── Inventory sorting │ └── first fit.c ├── Sorting Algorithms │ ├── Bubble.c │ ├── Heap.c │ ├── Insertion.c │ ├── Quick.c │ ├── Selection.c │ ├── bogoSort.c │ └── merge.c ├── integer.c └── vector.c ├── bat files ├── load_from_paramsfile.bat ├── params.txt ├── realtime.bat └── standard.bat ├── init.c files ├── AmmoTrajectories.c ├── Expansion-Loadout-Generation_init.c ├── ExportVectorList.c ├── Init C Trader Teleport using Quests.c ├── Random-BS-Init.c ├── Reputation-editing.c ├── Timed-Reputation-Removal-Expansion.c ├── Timed-money-Expansion.c ├── add-gear-on-first-connect.c ├── chat-msg-on-con-discon.c ├── classname-pull-init.c ├── factions-per-player.c ├── searchdirectoryforjson.c ├── sink_map.c ├── teleport-locations-template.c ├── test-cases.c └── wall_map.c ├── old eai_inits ├── eai-updated.c ├── expansion-intermediatary.c └── og reference.c ├── other ├── Clothing.c ├── ExpMarketEventExample │ ├── 4_World │ │ ├── Action.c │ │ └── ExpansionTraderObjectBase.c │ ├── 5_Mission │ │ └── Missionserver.c │ └── Readme.txt ├── JacketManager.c ├── Map Marker.c ├── Map height.c ├── Raider_On_PlayerKill.c ├── Restock.c ├── StringDisplay.c ├── Weather-class-export.c ├── class-nearby.c ├── generator_isInVicinity.c ├── limit-recruit-ai.c ├── neg-rep-on-suicide.c ├── reqaddons.c ├── test-profiler.c ├── thing.c └── trigger example │ ├── 4_world │ └── basic_trigger.c │ └── 5_mission │ └── MissionServer.c └── python scripts ├── flags.map ├── current.py ├── layer_info.json └── readme.txt ├── hightmap plot ├── init.c ├── plot.py └── readme.txt └── randoms ├── difference.py └── searchfbx.py /Math/BitCorrection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/BitCorrection.c -------------------------------------------------------------------------------- /Math/ConeVicinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/ConeVicinity.c -------------------------------------------------------------------------------- /Math/Inventory sorting/first fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Inventory sorting/first fit.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/Bubble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/Bubble.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/Heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/Heap.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/Insertion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/Insertion.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/Quick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/Quick.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/Selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/Selection.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/bogoSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/bogoSort.c -------------------------------------------------------------------------------- /Math/Sorting Algorithms/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/Sorting Algorithms/merge.c -------------------------------------------------------------------------------- /Math/integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/integer.c -------------------------------------------------------------------------------- /Math/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/Math/vector.c -------------------------------------------------------------------------------- /bat files/load_from_paramsfile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/bat files/load_from_paramsfile.bat -------------------------------------------------------------------------------- /bat files/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/bat files/params.txt -------------------------------------------------------------------------------- /bat files/realtime.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/bat files/realtime.bat -------------------------------------------------------------------------------- /bat files/standard.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/bat files/standard.bat -------------------------------------------------------------------------------- /init.c files/AmmoTrajectories.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/AmmoTrajectories.c -------------------------------------------------------------------------------- /init.c files/Expansion-Loadout-Generation_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/Expansion-Loadout-Generation_init.c -------------------------------------------------------------------------------- /init.c files/ExportVectorList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/ExportVectorList.c -------------------------------------------------------------------------------- /init.c files/Init C Trader Teleport using Quests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/Init C Trader Teleport using Quests.c -------------------------------------------------------------------------------- /init.c files/Random-BS-Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/Random-BS-Init.c -------------------------------------------------------------------------------- /init.c files/Reputation-editing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/Reputation-editing.c -------------------------------------------------------------------------------- /init.c files/Timed-Reputation-Removal-Expansion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/Timed-Reputation-Removal-Expansion.c -------------------------------------------------------------------------------- /init.c files/Timed-money-Expansion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/Timed-money-Expansion.c -------------------------------------------------------------------------------- /init.c files/add-gear-on-first-connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/add-gear-on-first-connect.c -------------------------------------------------------------------------------- /init.c files/chat-msg-on-con-discon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/chat-msg-on-con-discon.c -------------------------------------------------------------------------------- /init.c files/classname-pull-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/classname-pull-init.c -------------------------------------------------------------------------------- /init.c files/factions-per-player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/factions-per-player.c -------------------------------------------------------------------------------- /init.c files/searchdirectoryforjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/searchdirectoryforjson.c -------------------------------------------------------------------------------- /init.c files/sink_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/sink_map.c -------------------------------------------------------------------------------- /init.c files/teleport-locations-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/teleport-locations-template.c -------------------------------------------------------------------------------- /init.c files/test-cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/test-cases.c -------------------------------------------------------------------------------- /init.c files/wall_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/init.c files/wall_map.c -------------------------------------------------------------------------------- /old eai_inits/eai-updated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/old eai_inits/eai-updated.c -------------------------------------------------------------------------------- /old eai_inits/expansion-intermediatary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/old eai_inits/expansion-intermediatary.c -------------------------------------------------------------------------------- /old eai_inits/og reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/old eai_inits/og reference.c -------------------------------------------------------------------------------- /other/Clothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/Clothing.c -------------------------------------------------------------------------------- /other/ExpMarketEventExample/4_World/Action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/ExpMarketEventExample/4_World/Action.c -------------------------------------------------------------------------------- /other/ExpMarketEventExample/4_World/ExpansionTraderObjectBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/ExpMarketEventExample/4_World/ExpansionTraderObjectBase.c -------------------------------------------------------------------------------- /other/ExpMarketEventExample/5_Mission/Missionserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/ExpMarketEventExample/5_Mission/Missionserver.c -------------------------------------------------------------------------------- /other/ExpMarketEventExample/Readme.txt: -------------------------------------------------------------------------------- 1 | "DayZExpansion_Market_Scripts" -------------------------------------------------------------------------------- /other/JacketManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/JacketManager.c -------------------------------------------------------------------------------- /other/Map Marker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/Map Marker.c -------------------------------------------------------------------------------- /other/Map height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/Map height.c -------------------------------------------------------------------------------- /other/Raider_On_PlayerKill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/Raider_On_PlayerKill.c -------------------------------------------------------------------------------- /other/Restock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/Restock.c -------------------------------------------------------------------------------- /other/StringDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/StringDisplay.c -------------------------------------------------------------------------------- /other/Weather-class-export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/Weather-class-export.c -------------------------------------------------------------------------------- /other/class-nearby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/class-nearby.c -------------------------------------------------------------------------------- /other/generator_isInVicinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/generator_isInVicinity.c -------------------------------------------------------------------------------- /other/limit-recruit-ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/limit-recruit-ai.c -------------------------------------------------------------------------------- /other/neg-rep-on-suicide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/neg-rep-on-suicide.c -------------------------------------------------------------------------------- /other/reqaddons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/reqaddons.c -------------------------------------------------------------------------------- /other/test-profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/test-profiler.c -------------------------------------------------------------------------------- /other/thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/thing.c -------------------------------------------------------------------------------- /other/trigger example/4_world/basic_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/trigger example/4_world/basic_trigger.c -------------------------------------------------------------------------------- /other/trigger example/5_mission/MissionServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/other/trigger example/5_mission/MissionServer.c -------------------------------------------------------------------------------- /python scripts/flags.map/current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/flags.map/current.py -------------------------------------------------------------------------------- /python scripts/flags.map/layer_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/flags.map/layer_info.json -------------------------------------------------------------------------------- /python scripts/flags.map/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/flags.map/readme.txt -------------------------------------------------------------------------------- /python scripts/hightmap plot/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/hightmap plot/init.c -------------------------------------------------------------------------------- /python scripts/hightmap plot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/hightmap plot/plot.py -------------------------------------------------------------------------------- /python scripts/hightmap plot/readme.txt: -------------------------------------------------------------------------------- 1 | isn't quite right, but it's close enough -------------------------------------------------------------------------------- /python scripts/randoms/difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/randoms/difference.py -------------------------------------------------------------------------------- /python scripts/randoms/searchfbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueDolphin/references/HEAD/python scripts/randoms/searchfbx.py --------------------------------------------------------------------------------