diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f37f525501d5..53e5a687148e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,10 +32,13 @@ jobs: - run: npm test - name: verify trace command - run: node ./bin.js trace test + run: npm run test-bin-trace - name: verify the spell checker runs - run: node ./bin.js -c cspellrc.json + run: npm run test-bin-spell + + - name: verify the check command + run: npm run test-bin-check # Ensure the repository is clean after build & test - run: git --no-pager diff --compact-summary --exit-code @@ -67,10 +70,13 @@ jobs: - run: npm test - name: verify trace command - run: node ./bin.js trace test + run: npm run test-bin-trace - name: verify the spell checker runs - run: node ./bin.js -c cspellrc.json + run: npm run test-bin-spell + + - name: verify the check command + run: npm run test-bin-check # Ensure the repository is clean after build & test - run: git --no-pager diff --compact-summary --exit-code diff --git a/cspell.schema.json b/cspell.schema.json index ee26de620b5e..58aad2d72078 100644 --- a/cspell.schema.json +++ b/cspell.schema.json @@ -490,9 +490,11 @@ "enum": [ "Base64", "CStyleComment", + "CStyleHexValue", + "CSSHexValue", + "CommitHash", "Email", "EscapeCharacters", - "HexDigits", "HexValues", "href", "PhpHereDoc", @@ -505,7 +507,9 @@ "SpellCheckerDisableNext", "SpellCheckerIgnoreInDocSetting", "string", + "UnicodeRef", "Urls", + "UUID", "Everything" ], "type": "string" @@ -748,7 +752,7 @@ "type": "number" }, "userWords": { - "description": "Words to add to dictionary -- should only be in the user config file.", + "description": "Words to add to global dictionary -- should only be in the user config file.", "items": { "type": "string" }, @@ -756,7 +760,7 @@ }, "version": { "default": "0.2", - "description": "Configuration format version of the setting file.", + "description": "Configuration format version of the settings file.", "enum": [ "0.2", "0.1" diff --git a/integration-tests/config/config.json b/integration-tests/config/config.json index d9f4195049ec..2e11d1c775da 100644 --- a/integration-tests/config/config.json +++ b/integration-tests/config/config.json @@ -3,7 +3,7 @@ { "path": "php/php-src", "url": "https://github.com/php/php-src.git", - "commit": "010d6a491cf1ffcaefe42904d78c53918df5970a", + "commit": "6e477d205ee2108f7f53fee84a996c4771e041ee", "args": [ "--config=${repoConfig}/cspell.json", "**/*.{md,c,h,php}" @@ -79,7 +79,7 @@ { "path": "aws-amplify/docs", "url": "https://github.com/aws-amplify/docs.git", - "commit": "c4f631c8f7aafc7e5407d5b81a46dac88382f913", + "commit": "362fbabe952b9ff9ee5f78ff7562c6c00127fae7", "args": [ "docs/**/*.md" ] @@ -97,7 +97,7 @@ { "path": "prettier/prettier", "url": "https://github.com/prettier/prettier.git", - "commit": "81a1c463116f9dc8ec5e8059d70a9254675847e6", + "commit": "9d53f64d851839f542ee2a876c6197b336a239b0", "args": [ ".github/**/*", "**/*.*" @@ -106,7 +106,7 @@ { "path": "webpack/webpack", "url": "https://github.com/webpack/webpack.git", - "commit": "daa0f1ed1cebc28c8cc9034f95f3b56e9253ec5e", + "commit": "487665cb69f7b1f1aac44097124ef8f33cfe247b", "args": [ "{.github,benchmark,bin,examples,hot,lib,schemas,setup,tooling}/**/*.{md,yml,yaml,js,json}", "*.md" @@ -141,7 +141,7 @@ { "path": "graphql/graphql-js", "url": "https://github.com/graphql/graphql-js.git", - "commit": "c589c3d285cb1ec44b09bf0b50ec041ec083760c", + "commit": "bf26a52257cc47513d8a0bd8219c57c8fd279d4a", "args": [ "**/*.*" ] @@ -149,7 +149,7 @@ { "path": "microsoft/TypeScript-Website", "url": "https://github.com/microsoft/TypeScript-Website.git", - "commit": "037045497bffa9be7cb7cb9810922041adc72a28", + "commit": "b85eca4411be549c043b3af8fdc0aa6f5ee459fc", "args": [ "--config=${repoConfig}/cspell.json", "**/*.*" @@ -162,7 +162,7 @@ "--config=cSpell.json", "**/*.{md,ts,js}" ], - "commit": "9875f8eebd8c1392a83c052bc50a79c8251b1174" + "commit": "98786a35a3d940e5e5082e66de6835d2e8f650f3" }, { "path": "pycontribs/jira", @@ -191,7 +191,7 @@ { "path": "django/django", "url": "https://github.com/django/django.git", - "commit": "02c59b7a4355fda8c99224b5de9c0a3929bffe22", + "commit": "22da686ca93e99f8091334f66d7199bc29b85c83", "args": [ "**/*.{md,py}" ] @@ -257,7 +257,7 @@ "-e", "{*.BUILD,BUILD,CHANGELOG.md,*.sh,*.cfg,*.ps1,Dockerfile.*,*.Dockerfile,*.{yaml,xml,json,cmake}}" ], - "commit": "2424ec1c03d1dc03bc689846a47ca655fc7b3e10" + "commit": "63fa939ec1b1408385d48e5dea8d8de5f0fbc480" } ] } diff --git a/integration-tests/package.json b/integration-tests/package.json index 8797fc169d4f..e6af04fa7583 100644 --- a/integration-tests/package.json +++ b/integration-tests/package.json @@ -11,7 +11,7 @@ }, "scripts": { "build": "tsc -p .", - "clean": "rimraf dist temp repositories/temp", + "clean": "rimraf repositories/temp dist temp", "postinstall": "npm run build", "integration-tests": "node tester.js check -f", "test-jest": "jest", diff --git a/integration-tests/repositories/cspell.yaml b/integration-tests/repositories/cspell.yaml index 68416471030e..4e4f8f739f7e 100644 --- a/integration-tests/repositories/cspell.yaml +++ b/integration-tests/repositories/cspell.yaml @@ -6,6 +6,8 @@ words: ignorePaths: - "*.ktx" + - "*.idmap" # DOOM, cspell:ignore idmap + - "*.ogex" # DOOM, cspell:ignore ogex import: - "./cspell-latex.json" diff --git a/integration-tests/snapshots/AdaDoom3/AdaDoom3/snapshot.txt b/integration-tests/snapshots/AdaDoom3/AdaDoom3/snapshot.txt index f87c1e5b2c9f..e220d8e3b91b 100644 --- a/integration-tests/snapshots/AdaDoom3/AdaDoom3/snapshot.txt +++ b/integration-tests/snapshots/AdaDoom3/AdaDoom3/snapshot.txt @@ -3,7 +3,7 @@ Repository: AdaDoom3/AdaDoom3 Url: "https://github.com/AdaDoom3/AdaDoom3.git" Args: ["**/*.*"] Lines: - CSpell: Files checked: 194, Issues found: 10889 in 173 files + CSpell: Files checked: 117, Issues found: 3291 in 101 files exit code: 1 ./Engine/Assembly/PPC/neo-engine-cpu.adb:5:78 - Unknown word (Squirek) -- Copyright (C) 2016 Justin Squirek ./Engine/Assembly/x86-64/neo-engine-cpu.adb:101:111 - Unknown word (OSXSAVE) -- ECX_Register, 27); -- OSXSAVE @@ -238,6 +238,7 @@ Lines: ./Engine/neo-api-physx.ads:1035:20 - Unknown word (Preprocess) -- -- Params.meshPreprocessParams = mParams.mPrecomputeAc ./Engine/neo-api-physx.ads:1035:48 - Unknown word (Precompute) -- shPreprocessParams = mParams.mPrecomputeActiveEdges ? PxMeshPreprocess ./Engine/neo-api-physx.ads:128:100 - Unknown word (pxmath) -- physx\include\foundation\pxmath.h:58 +./Engine/neo-api-physx.ads:174:45 - Unknown word (Efff) -- "_ZN5physx8PxEqualsEfff"; ./Engine/neo-api-physx.ads:181:24 - Unknown word (stdint) -- function PxAbs (a : stdint_h.int32_t) return stdint ./Engine/neo-api-physx.ads:196:15 - Unknown word (Recip) -- function PxRecipSqrt (a : float) return ./Engine/neo-api-physx.ads:22:32 - Unknown word (pxsimpletypes) -- PxDominanceGroup is pxsimpletypes_h.PxU8; -- C:\Users @@ -255,6 +256,7 @@ Lines: ./Engine/neo-api-physx.ads:366:53 - Unknown word (LERS) -- ZN5physx11PxTransformmLERS0_"; ./Engine/neo-api-physx.ads:40:31 - Unknown word (physxan) -- External_Name => "_ZN5physxanENS_11PxActorFlag4EnumES ./Engine/neo-api-physx.ads:418:87 - Unknown word (pxplane) -- plane : access constant pxplane_h.Class_PxPlane.PxPlane +./Engine/neo-api-physx.ads:455:64 - Unknown word (Effff) -- "_ZN5physx7PxPlaneC1Effff"); ./Engine/neo-api-physx.ads:45:31 - Unknown word (physxco) -- External_Name => "_ZN5physxcoENS_11PxActorFlag4EnumE ./Engine/neo-api-physx.ads:472:43 - Unknown word (Planeeq) -- Name => "_ZNK5physx7PxPlaneeqERKS0_"; ./Engine/neo-api-physx.ads:504:54 - Unknown word (struct) -- record; -- incomplete struct @@ -314,6 +316,8 @@ Lines: ./Engine/neo-api-vulkan.ads:2573:8 - Unknown word (Subpasses) -- pSubpasses : Ptr_VkSubpassDescripti ./Engine/neo-api-vulkan.ads:259:20 - Unknown word (AABBS) -- VK_GEOMETRY_TYPE_AABBS_NV : constant Int ./Engine/neo-api-vulkan.ads:2781:18 - Unknown word (AABBNV) -- type VkGeometryAABBNV; +./Engine/neo-api-vulkan.ads:2786:7 - Unknown word (aabb) -- aabbData : Ptr +./Engine/neo-api-vulkan.ads:2787:10 - Unknown word (AABBs) -- numAABBs : Int_Unsigned_C ./Engine/neo-api-vulkan.ads:2820:7 - Unknown word (aabbs) -- aabbs : VkGeometryAABBNV ./Engine/neo-api-vulkan.ads:3115:11 - Unknown word (Palletized) -- -- Palletized ./Engine/neo-api-vulkan.ads:3233:50 - Unknown word (raygen) -- raygenShaderBindingTableBuffer @@ -326,11 +330,17 @@ Lines: ./Engine/neo-api-vulkan.ads:462:19 - Unknown word (PREINITIALIZED) -- VK_IMAGE_LAYOUT_PREINITIALIZED : ./Engine/neo-api-vulkan.ads:560:21 - Unknown word (BLIT) -- VK_FORMAT_FEATURE_BLIT_SRC_BIT ./Engine/neo-api-vulkan.ads:579:15 - Unknown word (NAND) -- VK_LOGIC_OP_NAND : constant +./Engine/neo-api-vulkan.ads:641:74 - Unknown word (FFFE) -- Unsigned_C := 16#FFFF_FFFE#; -- To_Int_32_Unsigned +./Engine/neo-api-vulkan.ads:642:74 - Unknown word (FFFD) -- Unsigned_C := 16#FFFF_FFFD#; -- To_Int_32_Unsigned +./Engine/neo-api-vulkan.ads:643:74 - Unknown word (FFFC) -- Unsigned_C := 16#FFFF_FFFC#; -- To_Int_32_Unsigned +./Engine/neo-api-vulkan.ads:644:74 - Unknown word (FFFB) -- Unsigned_C := 16#FFFF_FFFB#; -- To_Int_32_Unsigned +./Engine/neo-api-vulkan.ads:645:74 - Unknown word (FFFA) -- Unsigned_C := 16#FFFF_FFFA#; -- To_Int_32_Unsigned ./Engine/neo-api-vulkan.ads:65:8 - Unknown word (Subpass) -- -- VkSubpassContents ./Engine/neo-api-vulkan.ads:677:30 - Unknown word (RASTERIZATION) -- STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO ./Engine/neo-api-vulkan.ads:678:30 - Unknown word (MULTISAMPLE) -- STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO ./Engine/neo-api-vulkan.ads:691:21 - Unknown word (FRAMEBUFFER) -- VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO ./Engine/neo-api-vulkan.ads:708:21 - Unknown word (XLIB) -- VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO +./Engine/neo-api-vulkan.ads:715:30 - Unknown word (AABB) -- STRUCTURE_TYPE_GEOMETRY_AABB_NV ./Engine/neo-api-vulkan.ads:726:18 - Unknown word (UNORM) -- VK_FORMAT_R4G4_UNORM_PACK8 ./Engine/neo-api-vulkan.ads:735:16 - Unknown word (SNORM) -- VK_FORMAT_R8_SNORM ./Engine/neo-api-vulkan.ads:736:16 - Unknown word (USCALED) -- VK_FORMAT_R8_USCALED @@ -717,6 +727,7 @@ Lines: ./Engine/neo-world-graphics-renderer.adb:318:16 - Unknown word (Additve) -- -- -- Additve lights with no stage ./Engine/neo-world-graphics-renderer.adb:320:15 - Unknown word (Outter) -- -- Outter: for Stage of Light ./Engine/neo-world-graphics-renderer.adb:335:11 - Unknown word (didn) -- -- -- We didn't find any addition +./Engine/neo-world-graphics-renderer.adb:359:56 - Unknown word (edef) -- entityInteractionState[ edef.index ] /= viewLight ./Engine/neo-world-graphics-renderer.adb:367:27 - Unknown word (parms) -- light.parms.allowLightInViewID ./Engine/neo-world-graphics-renderer.adb:367:83 - Unknown word (Parms) -- parms.pointLight && !eParms.weaponDepthHack or else ./Engine/neo-world-graphics-renderer.adb:517:48 - Unknown word (culliong) -- matricies for faster culliong @@ -876,1594 +887,6 @@ Lines: ./Engine/neo.adb:49:32 - Unknown word (Traceback) -- for Item of Symbolic_Traceback (Traces) loop ./Engine/neo.ads:391:8 - Unknown word (mutex) -- -- A mutex or task-safe flag, however ./Engine/neo.ads:41:18 - Unknown word (Superbounded) -- with Ada.Strings.Superbounded; use Ada.Strings -./Games/DOOM/Assets/Maps/testmap.idmap:10168:50 - Unknown word (sflgrate) -- textures_base_floor_sflgrate5"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10199:45 - Unknown word (mcityc) -- string {"textures_mcity_mcityc13a"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10254:49 - Unknown word (minwall) -- "textures_base_wall_minwall3cyel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10254:57 - Unknown word (cyel) -- textures_base_wall_minwall3cyel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10317:49 - Unknown word (stelabwafer) -- "textures_base_wall_stelabwafer2"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10463:49 - Unknown word (skpanel) -- "textures_base_wall_skpanel1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10482:49 - Unknown word (sopanel) -- "textures_base_wall_sopanel30"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10501:50 - Unknown word (sflframetrim) -- textures_base_floor_sflframetrim1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10541:46 - Unknown word (conpanel) -- string {"textures_object_conpanel6tec"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10561:50 - Unknown word (ghotile) -- textures_base_floor_ghotile3"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10588:49 - Unknown word (strim) -- "textures_base_trim_strim"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10691:49 - Unknown word (gotsilvercol) -- "textures_base_trim_gotsilvercol1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10911:50 - Unknown word (floorvent) -- textures_base_floor_floorvent02"}} -./Games/DOOM/Assets/Maps/testmap.idmap:10:26 - Unknown word (noflood) -- Uknown attribute: "noflood" "1" -./Games/DOOM/Assets/Maps/testmap.idmap:1175:39 - Unknown word (mkeyboard) -- attribute: "skin" "skins/mkeyboard2" -./Games/DOOM/Assets/Maps/testmap.idmap:1200:30 - Unknown word (noninteractive) -- Uknown attribute: "gui_noninteractive" "1" -./Games/DOOM/Assets/Maps/testmap.idmap:12143:50 - Unknown word (tecstairstepdirt) -- textures_base_floor_tecstairstepdirt"}} -./Games/DOOM/Assets/Maps/testmap.idmap:12179:49 - Unknown word (superpipes) -- "textures_base_wall_superpipes"}} -./Games/DOOM/Assets/Maps/testmap.idmap:125:66 - Unknown word (suckin) -- LEVELS/delta4/teleport_suckin.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:12639:49 - Unknown word (snpanel) -- "textures_base_wall_snpanel12"}} -./Games/DOOM/Assets/Maps/testmap.idmap:12:42 - Unknown word (removeweapons) -- attribute: "target" "target_removeweapons_1" -./Games/DOOM/Assets/Maps/testmap.idmap:131:28 - Unknown word (mindistance) -- Uknown attribute: "s_mindistance" "1.000000" -./Games/DOOM/Assets/Maps/testmap.idmap:1321:27 - Unknown word (chaingun) -- Class {string {"weapon_chaingun"}} -./Games/DOOM/Assets/Maps/testmap.idmap:132:28 - Unknown word (maxdistance) -- Uknown attribute: "s_maxdistance" "10.000000" -./Games/DOOM/Assets/Maps/testmap.idmap:1334:27 - Unknown word (rocketlauncher) -- Class {string {"weapon_rocketlauncher"}} -./Games/DOOM/Assets/Maps/testmap.idmap:133:28 - Unknown word (omni) -- Uknown attribute: "s_omni" "0" -./Games/DOOM/Assets/Maps/testmap.idmap:1340:27 - Unknown word (handgrenade) -- Class {string {"weapon_handgrenade"}} -./Games/DOOM/Assets/Maps/testmap.idmap:135:26 - Unknown word (soundgroup) -- Uknown attribute: "soundgroup" "" -./Games/DOOM/Assets/Maps/testmap.idmap:1365:27 - Unknown word (plasmagun) -- Class {string {"weapon_plasmagun"}} -./Games/DOOM/Assets/Maps/testmap.idmap:136:28 - Unknown word (leadthrough) -- Uknown attribute: "s_leadthrough" "0.100000" -./Games/DOOM/Assets/Maps/testmap.idmap:1371:27 - Unknown word (machinegun) -- Class {string {"weapon_machinegun"}} -./Games/DOOM/Assets/Maps/testmap.idmap:13795:46 - Unknown word (tecserver) -- string {"textures_object_tecserver3"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14134:49 - Unknown word (skpanelt) -- "textures_base_wall_skpanelt"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14154:49 - Unknown word (stedoorframe) -- "textures_base_door_stedoorframe2_trim"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14238:49 - Unknown word (gotcgate) -- "textures_base_wall_gotcgate"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14495:48 - Unknown word (conmonitorbackblk) -- {"textures_object_a_conmonitorbackblk"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14515:46 - Unknown word (conmonitorxl) -- string {"textures_object_conmonitorxl1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14674:46 - Unknown word (hoser) -- string {"textures_object_hoser5"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14705:46 - Unknown word (gotcablecage) -- string {"textures_object_gotcablecage"}} -./Games/DOOM/Assets/Maps/testmap.idmap:14725:55 - Unknown word (atec) -- textures_object_conpanel7atec"}} -./Games/DOOM/Assets/Maps/testmap.idmap:149:48 - Unknown word (fadein) -- target" "target_light_fadein_1" -./Games/DOOM/Assets/Maps/testmap.idmap:15148:46 - Unknown word (hangingwires) -- string {"textures_decals_hangingwires_shadow"}} -./Games/DOOM/Assets/Maps/testmap.idmap:15291:46 - Unknown word (cpupanels) -- string {"textures_object_cpupanels1a"}} -./Games/DOOM/Assets/Maps/testmap.idmap:15333:46 - Unknown word (topbox) -- string {"textures_object_topbox"}} -./Games/DOOM/Assets/Maps/testmap.idmap:15738:49 - Unknown word (stemettrim) -- "textures_base_trim_stemettrim"}} -./Games/DOOM/Assets/Maps/testmap.idmap:15766:49 - Unknown word (steslashtrim) -- "textures_base_trim_steslashtrim"}} -./Games/DOOM/Assets/Maps/testmap.idmap:1591:48 - Unknown word (withhealth) -- shader" "light_neon_withhealth" -./Games/DOOM/Assets/Maps/testmap.idmap:16002:49 - Unknown word (gotgimwall) -- "textures_base_wall_gotgimwall2mini"}} -./Games/DOOM/Assets/Maps/testmap.idmap:16486:49 - Unknown word (stecolumn) -- "textures_base_wall_stecolumn2yel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:16531:50 - Unknown word (squaretile) -- textures_base_floor_squaretile"}} -./Games/DOOM/Assets/Maps/testmap.idmap:1683:53 - Unknown word (neonbuzz) -- shader" "breakable_light_neonbuzz" -./Games/DOOM/Assets/Maps/testmap.idmap:16845:50 - Unknown word (reactorwalk) -- textures_base_floor_reactorwalk1a"}} -./Games/DOOM/Assets/Maps/testmap.idmap:16903:57 - Unknown word (ayel) -- textures_base_wall_minwall3ayel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:169:26 - Unknown word (nospecular) -- Uknown attribute: "nospecular" "0" -./Games/DOOM/Assets/Maps/testmap.idmap:170:26 - Unknown word (nodiffuse) -- Uknown attribute: "nodiffuse" "0" -./Games/DOOM/Assets/Maps/testmap.idmap:172:43 - Unknown word (blamplight) -- attribute: "texture" "lights/blamplight_cv" -./Games/DOOM/Assets/Maps/testmap.idmap:18604:46 - Unknown word (fgrill) -- string {"textures_decals_fgrill"}} -./Games/DOOM/Assets/Maps/testmap.idmap:1904:43 - Unknown word (skmachines) -- {"models/mapobjects/skmachines/skcube.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:1904:54 - Unknown word (skcube) -- mapobjects/skmachines/skcube.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:1905:39 - Unknown word (skcubered) -- attribute: "skin" "skins/skcubered" -./Games/DOOM/Assets/Maps/testmap.idmap:19501:57 - Unknown word (bhaz) -- textures_base_wall_stewall3bhaz_yel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:1964:43 - Unknown word (newalphagrate) -- attribute: "texture" "lights/newalphagrate5" -./Games/DOOM/Assets/Maps/testmap.idmap:19974:49 - Unknown word (steribwall) -- "textures_base_wall_steribwall1yel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:20028:49 - Unknown word (minpanel) -- "textures_base_wall_minpanel1cutyel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:20028:58 - Unknown word (cutyel) -- textures_base_wall_minpanel1cutyel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:21238:46 - Unknown word (boothspeaker) -- string {"textures_decals_boothspeaker"}} -./Games/DOOM/Assets/Maps/testmap.idmap:2180:29 - Unknown word (tablecart) -- Class {string {"moveable_tablecart2"}} -./Games/DOOM/Assets/Maps/testmap.idmap:2191:47 - Unknown word (compcart) -- models/mapobjects/lab/compcart/compcart.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:2230:47 - Unknown word (pullhandle) -- models/mapobjects/cpu/pullhandle.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:2303:55 - Unknown word (hugedoor) -- "sound/doors/large/hugedoor_01_open.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:2317:46 - Unknown word (outerdoor) -- gui" "guis/transfer/outerdoor_open_noclick.gui" -./Games/DOOM/Assets/Maps/testmap.idmap:2317:61 - Unknown word (noclick) -- transfer/outerdoor_open_noclick.gui" -./Games/DOOM/Assets/Maps/testmap.idmap:23446:50 - Unknown word (stetile) -- textures_base_floor_stetile4"}} -./Games/DOOM/Assets/Maps/testmap.idmap:23788:46 - Unknown word (desknurnies) -- string {"textures_object_desknurnies1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:2405:40 - Unknown word (airlockdoor) -- attribute: "target2" "env_airlockdoor_1" -./Games/DOOM/Assets/Maps/testmap.idmap:2452:31 - Unknown word (teleporter) -- string {"delta4_cin_teleporter"}} -./Games/DOOM/Assets/Maps/testmap.idmap:259:25 - Unknown word (locationseparator) -- Class {string {"info_locationseparator"}} -./Games/DOOM/Assets/Maps/testmap.idmap:2600:33 - Unknown word (hkthrow) -- Uknown attribute: "anim" "hkthrow" -./Games/DOOM/Assets/Maps/testmap.idmap:2631:33 - Unknown word (hkend) -- Uknown attribute: "anim" "hkend" -./Games/DOOM/Assets/Maps/testmap.idmap:2655:63 - Unknown word (demoic) -- xian/foley/ambience/demoic_airy_breathing_06.wav -./Games/DOOM/Assets/Maps/testmap.idmap:2720:48 - Unknown word (roomtones) -- shader" "sound/xian/roomtones2/deepvoq_01.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:2720:59 - Unknown word (deepvoq) -- sound/xian/roomtones2/deepvoq_01.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:2764:59 - Unknown word (seventhday) -- sound/xian/unsettling/seventhday_06.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:2850:49 - Unknown word (wavs) -- shader" "sound/chris/wavs/Chris_beds_1/computer -./Games/DOOM/Assets/Maps/testmap.idmap:285:44 - Unknown word (betruger) -- "s_shader" "delta4_betruger_hell" -./Games/DOOM/Assets/Maps/testmap.idmap:2915:59 - Unknown word (badtrip) -- sound/xian/unsettling/badtrip_02.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:29281:50 - Unknown word (blinkydec) -- textures_base_light_blinkydec1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:3390:57 - Unknown word (skragdoll) -- skins/monsters/skeleton/skragdoll2" -./Games/DOOM/Assets/Maps/testmap.idmap:352:49 - Unknown word (hellknight) -- target" "monster_demon_hellknight_3" -./Games/DOOM/Assets/Maps/testmap.idmap:3564:44 - Unknown word (cabinetcode) -- "gui" "guis/delta4/cabinetcode.gui" -./Games/DOOM/Assets/Maps/testmap.idmap:394:19 - Unknown word (officelights) -- Name {string {"officelights"}} -./Games/DOOM/Assets/Maps/testmap.idmap:3:20 - Unknown word (worldspawn) -- Class {string {"worldspawn"}} -./Games/DOOM/Assets/Maps/testmap.idmap:409:25 - Unknown word (lookat) -- Class {string {"path_lookat"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4162:39 - Unknown word (compcartblood) -- attribute: "skin" "skins/compcartblood" -./Games/DOOM/Assets/Maps/testmap.idmap:4188:24 - Unknown word (storagecabinet) -- Class {string {"env_storagecabinet"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4194:39 - Unknown word (storagecabblood) -- attribute: "skin" "skins/storagecabblood" -./Games/DOOM/Assets/Maps/testmap.idmap:4202:37 - Unknown word (controlpanels) -- attribute: "gui" "guis/controlpanels/cabinet.gui" -./Games/DOOM/Assets/Maps/testmap.idmap:4203:37 - Unknown word (guisounds) -- attribute: "s_shader" "guisounds" -./Games/DOOM/Assets/Maps/testmap.idmap:4387:25 - Unknown word (alphalabs) -- /MeshName {string {"alphalabs1_hall_smk_cone.prt" -./Games/DOOM/Assets/Maps/testmap.idmap:4395:25 - Unknown word (flamejetsmoke) -- /MeshName {string {"flamejetsmoke.prt"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4400:19 - Unknown word (betanim) -- Name {string {"betanim"}} -./Games/DOOM/Assets/Maps/testmap.idmap:440:26 - Unknown word (triggersize) -- Uknown attribute: "triggersize" "32" -./Games/DOOM/Assets/Maps/testmap.idmap:4413:35 - Unknown word (betwait) -- attribute: "target" "betwait" -./Games/DOOM/Assets/Maps/testmap.idmap:4422:19 - Unknown word (wallsplat) -- Name {string {"wallsplat"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4424:54 - Unknown word (dsplat) -- splat" "textures/decals/dsplat11" -./Games/DOOM/Assets/Maps/testmap.idmap:4431:25 - Unknown word (bloodsplat) -- /MeshName {string {"bloodsplat.prt"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4434:38 - Unknown word (bloodspurt) -- attribute: "snd_spurt" "bloodspurt" -./Games/DOOM/Assets/Maps/testmap.idmap:4467:60 - Unknown word (devilbaby) -- sound/xian/babies/loop_devilbaby_02.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:4574:43 - Unknown word (healthgui) -- {"models/mapobjects/healthgui/healthgui.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4577:51 - Unknown word (healthstation) -- "guis/controlpanels/healthstation.gui" -./Games/DOOM/Assets/Maps/testmap.idmap:4607:73 - Unknown word (drumloop) -- wavs/Chris_Beds_3/clank_drumloop.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:4632:39 - Unknown word (diamondbox) -- attribute: "skin" "skins/diamondbox_green" -./Games/DOOM/Assets/Maps/testmap.idmap:4669:54 - Unknown word (telecolon) -- mapobjects/teleporter/telecolon.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4672:26 - Unknown word (nopush) -- Uknown attribute: "nopush" "1" -./Games/DOOM/Assets/Maps/testmap.idmap:4677:25 - Unknown word (cameraview) -- Class {string {"func_cameraview"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4741:34 - Unknown word (telporter) -- MeshName {string {"delta4_5_telporter.prt"}} -./Games/DOOM/Assets/Maps/testmap.idmap:4752:34 - Unknown word (teleporterengulf) -- MeshName {string {"delta4_5_teleporterengulf.prt"}} -./Games/DOOM/Assets/Maps/testmap.idmap:476:43 - Unknown word (squareishlight) -- attribute: "texture" "lights/squareishlight" -./Games/DOOM/Assets/Maps/testmap.idmap:4872:53 - Unknown word (deepdrone) -- shader" "sound/ed/delta4/deepdrone.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:5035:43 - Unknown word (thundersting) -- attribute: "target" "speaker_thundersting" -./Games/DOOM/Assets/Maps/testmap.idmap:5088:19 - Unknown word (kcin) -- Name {string {"kcin_strobe1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:5348:49 - Unknown word (lfwall) -- "textures_base_wall_lfwall5_red"}} -./Games/DOOM/Assets/Maps/testmap.idmap:5448:50 - Unknown word (stehalllight) -- textures_base_light_stehalllight"}} -./Games/DOOM/Assets/Maps/testmap.idmap:548:23 - Unknown word (lostcombat) -- Class {string {"ai_lostcombat"}} -./Games/DOOM/Assets/Maps/testmap.idmap:5560:50 - Unknown word (coldstairstrim) -- textures_base_floor_coldstairstrim"}} -./Games/DOOM/Assets/Maps/testmap.idmap:5584:50 - Unknown word (sflpanel) -- textures_base_floor_sflpanel5"}} -./Games/DOOM/Assets/Maps/testmap.idmap:559:26 - Unknown word (bindto) -- Uknown attribute: "bindtoJoint" "head" -./Games/DOOM/Assets/Maps/testmap.idmap:5607:46 - Unknown word (entitygui) -- string {"textures_common_entitygui"}} -./Games/DOOM/Assets/Maps/testmap.idmap:5629:50 - Unknown word (striplight) -- textures_base_light_striplight3"}} -./Games/DOOM/Assets/Maps/testmap.idmap:59:24 - Unknown word (ragdoll) -- Class {string {"env_ragdoll_hazmat"}} -./Games/DOOM/Assets/Maps/testmap.idmap:616:29 - Unknown word (rtuplegstump) -- Class {string {"env_gibs_rtuplegstump"}} -./Games/DOOM/Assets/Maps/testmap.idmap:62:50 - Unknown word (npcs) -- skin" "skins/characters/npcs/d4bloodyhazmat" -./Games/DOOM/Assets/Maps/testmap.idmap:62:57 - Unknown word (bloodyhazmat) -- skins/characters/npcs/d4bloodyhazmat" -./Games/DOOM/Assets/Maps/testmap.idmap:630:31 - Unknown word (shldrs) -- Uknown attribute: "body shldrs" "1387.13208008, 13 -./Games/DOOM/Assets/Maps/testmap.idmap:634:29 - Unknown word (rtlolegstump) -- Class {string {"env_gibs_rtlolegstump"}} -./Games/DOOM/Assets/Maps/testmap.idmap:643:29 - Unknown word (leftleg) -- Class {string {"env_gibs_leftleg"}} -./Games/DOOM/Assets/Maps/testmap.idmap:648:31 - Unknown word (lankle) -- Uknown attribute: "body lankle" "1112.90234375, 14 -./Games/DOOM/Assets/Maps/testmap.idmap:652:29 - Unknown word (leftarm) -- Class {string {"env_gibs_leftarm"}} -./Games/DOOM/Assets/Maps/testmap.idmap:657:31 - Unknown word (lwrist) -- Uknown attribute: "body lwrist" "1139.46948242, 14 -./Games/DOOM/Assets/Maps/testmap.idmap:661:29 - Unknown word (ruparmstub) -- Class {string {"env_gibs_ruparmstub"}} -./Games/DOOM/Assets/Maps/testmap.idmap:66:31 - Unknown word (ruparm) -- Uknown attribute: "body ruparm" "1739.53430176, 17 -./Games/DOOM/Assets/Maps/testmap.idmap:6770:49 - Unknown word (stesilverswatch) -- "textures_base_trim_stesilverswatch"}} -./Games/DOOM/Assets/Maps/testmap.idmap:67:31 - Unknown word (rloarm) -- Uknown attribute: "body rloarm" "1733.25402832, 17 -./Games/DOOM/Assets/Maps/testmap.idmap:6817:46 - Unknown word (tecpipebraid) -- string {"textures_object_tecpipebraid4blk"}} -./Games/DOOM/Assets/Maps/testmap.idmap:6839:46 - Unknown word (pipecap) -- string {"textures_decals_pipecap2a"}} -./Games/DOOM/Assets/Maps/testmap.idmap:68:31 - Unknown word (luparm) -- Uknown attribute: "body luparm" "1742.5645752, 170 -./Games/DOOM/Assets/Maps/testmap.idmap:69:31 - Unknown word (lloarm) -- Uknown attribute: "body lloarm" "1732.90026855, 16 -./Games/DOOM/Assets/Maps/testmap.idmap:7087:50 - Unknown word (sterlightdecal) -- textures_base_light_sterlightdecal"}} -./Games/DOOM/Assets/Maps/testmap.idmap:70:31 - Unknown word (rupleg) -- Uknown attribute: "body rupleg" "1716.3190918, 171 -./Games/DOOM/Assets/Maps/testmap.idmap:71:31 - Unknown word (rloleg) -- Uknown attribute: "body rloleg" "1708.77429199, 17 -./Games/DOOM/Assets/Maps/testmap.idmap:7282:43 - Unknown word (flaresizeable) -- string {"textures_sfx_flaresizeable"}} -./Games/DOOM/Assets/Maps/testmap.idmap:72:31 - Unknown word (lupleg) -- Uknown attribute: "body lupleg" "1714.87255859, 17 -./Games/DOOM/Assets/Maps/testmap.idmap:738:43 - Unknown word (biground) -- attribute: "texture" "lights/biground1" -./Games/DOOM/Assets/Maps/testmap.idmap:73:31 - Unknown word (lloleg) -- Uknown attribute: "body lloleg" "1689.55737305, 16 -./Games/DOOM/Assets/Maps/testmap.idmap:756:27 - Unknown word (hkintro) -- Class {string {"delta4_hkintro_cam"}} -./Games/DOOM/Assets/Maps/testmap.idmap:789:33 - Unknown word (hkgrab) -- Uknown attribute: "anim" "hkgrab" -./Games/DOOM/Assets/Maps/testmap.idmap:790:31 - Unknown word (hazguy) -- string {"delta4_cin_hazguy"}} -./Games/DOOM/Assets/Maps/testmap.idmap:8101:49 - Unknown word (redhaz) -- "textures_base_trim_redhaz3"}} -./Games/DOOM/Assets/Maps/testmap.idmap:812:19 - Unknown word (remhaz) -- Name {string {"remhaz1"}} -./Games/DOOM/Assets/Maps/testmap.idmap:826:41 - Unknown word (runoutcough) -- attribute: "trigger_anim" "runoutcough" -./Games/DOOM/Assets/Maps/testmap.idmap:831:27 - Unknown word (setshaderparm) -- Class {string {"target_setshaderparm"}} -./Games/DOOM/Assets/Maps/testmap.idmap:8517:49 - Unknown word (stewall) -- "textures_base_wall_stewall6yel"}} -./Games/DOOM/Assets/Maps/testmap.idmap:855:27 - Unknown word (primaryobjective) -- Class {string {"target_primaryobjective"}} -./Games/DOOM/Assets/Maps/testmap.idmap:8706:46 - Unknown word (tecpipe) -- string {"textures_object_tecpipe1blk"}} -./Games/DOOM/Assets/Maps/testmap.idmap:873:46 - Unknown word (endlevel) -- target" "tim_target_endlevel_1" -./Games/DOOM/Assets/Maps/testmap.idmap:890:32 - Unknown word (mapobjects) -- MeshName {string {"models/mapobjects/com/modconsole6drive -./Games/DOOM/Assets/Maps/testmap.idmap:890:47 - Unknown word (modconsole) -- models/mapobjects/com/modconsole6drive.lwo"}} -./Games/DOOM/Assets/Maps/testmap.idmap:925:55 - Unknown word (brokenlight) -- "sound/lights/loop_brokenlight_02.wav" -./Games/DOOM/Assets/Maps/testmap.idmap:936:26 - Unknown word (movedir) -- Uknown attribute: "movedir" "0" -./Games/DOOM/Assets/Maps/testmap.idmap:941:73 - Unknown word (twoparted) -- door_silver_sliding_twoparted/sliding_door_open_test -./Games/DOOM/Assets/Maps/testmap.idmap:97:28 - Unknown word (waitfortrigger) -- Uknown attribute: "s_waitfortrigger" "1" -./Games/DOOM/Assets/Materials/Maxtextures.ogex:103:41 - Unknown word (testdoor) -- textures_architecture_testdoor"}} -./Games/DOOM/Assets/Materials/Maxtextures.ogex:105:64 - Unknown word (timedoorbump) -- textures_architecture_timedoorbump_local"}} -./Games/DOOM/Assets/Materials/Maxtextures.ogex:23:32 - Unknown word (bglass) -- string {"textures_sfx_bglass01_ed"}} -./Games/DOOM/Assets/Materials/Maxtextures.ogex:89:41 - Unknown word (offtrim) -- textures_architecture_offtrim01_ed"}} -./Games/DOOM/Assets/Materials/Maxtextures.ogex:96:35 - Unknown word (shinymonitor) -- string {"textures_seneca_shinymonitor1_ed"}} -./Games/DOOM/Assets/Materials/Venom_menu_players_d3.ogex:3:44 - Unknown word (vmarine) -- models_characters_marine_vmarine_default"}} -./Games/DOOM/Assets/Materials/Venom_menu_players_d3.ogex:9:44 - Unknown word (vhelmet) -- models_characters_marine_vhelmet_d3_default"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:109:29 - Unknown word (playbutton) -- {string {"ui_assets_playbutton"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:113:29 - Unknown word (playbuttonblur) -- {string {"ui_assets_playbuttonblur"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:117:29 - Unknown word (setupbutton) -- {string {"ui_assets_setupbutton"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:121:29 - Unknown word (setupbuttonblur) -- {string {"ui_assets_setupbuttonblur"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:125:29 - Unknown word (editorbutton) -- {string {"ui_assets_editorbutton"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:129:29 - Unknown word (editorbuttonblur) -- {string {"ui_assets_editorbuttonblur"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:133:29 - Unknown word (quitbutton) -- {string {"ui_assets_quitbutton"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:137:29 - Unknown word (quitbuttonblur) -- {string {"ui_assets_quitbuttonblur"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:13:38 - Unknown word (duffybolt) -- "textures_particles_duffybolt3"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:146:58 - Unknown word (duffysplat) -- string {"textures_decals_duffysplat"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:156:61 - Unknown word (bloodparticle) -- "textures_particles_bloodparticle"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:160:38 - Unknown word (bloodpuff) -- "textures_particles_bloodpuff"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:195:32 - Unknown word (firetrail) -- string {"textures_sfx_firetrail"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:196:61 - Unknown word (firepuff) -- "textures_particles_firepuff"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:200:32 - Unknown word (fireplume) -- string {"textures_sfx_fireplume"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:209:38 - Unknown word (teleportsparks) -- "textures_particles_teleportsparks"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:219:38 - Unknown word (sparkstrip) -- "textures_particles_sparkstrip"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:224:38 - Unknown word (bluesparks) -- "textures_particles_bluesparks"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:229:35 - Unknown word (duffysplatgun) -- string {"textures_decals_duffysplatgun"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:234:38 - Unknown word (redteleportsparks) -- "textures_particles_redteleportsparks"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:235:61 - Unknown word (redspawn) -- "textures_particles_redspawn"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:239:38 - Unknown word (redteleportsmoke) -- "textures_particles_redteleportsmoke"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:240:61 - Unknown word (hellsmoke) -- "textures_particles_hellsmoke"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:249:38 - Unknown word (debrislight) -- "textures_particles_debrislight"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:24:61 - Unknown word (bloodspray) -- "textures_particles_bloodspray2"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:255:58 - Unknown word (cameragui) -- string {"textures_editor_cameragui"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:274:28 - Unknown word (guiremap) -- Name {string {"guisurfs_guiremap1"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:28:38 - Unknown word (bfgball) -- "textures_particles_bfgball"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:314:28 - Unknown word (guipreview) -- Name {string {"guisurfs_guipreview"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:319:34 - Unknown word (duffyblah) -- string {"textures_skies_duffyblah_sky"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:344:28 - Unknown word (objectivecomplete) -- Name {string {"textures_objectivecomplete1"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:38:38 - Unknown word (duffyboltvert) -- "textures_particles_duffyboltvert_white"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:43:38 - Unknown word (duffyboltball) -- "textures_particles_duffyboltball"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:49:61 - Unknown word (glasscountertop) -- "textures_base_trim_glasscountertop"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:60:28 - Unknown word (pattest) -- Name {string {"guisurfs_pattest"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:65:28 - Unknown word (videopanel) -- Name {string {"guisurfs_videopanel_1"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:70:28 - Unknown word (wallpanel) -- Name {string {"guisurfs_wallpanel_1"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:71:43 - Unknown word (editorimage) -- editor") {string {"_editorimage"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:75:28 - Unknown word (moongui) -- Name {string {"guisurfs_moongui_1"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:88:38 - Unknown word (moonvid) -- "ui_assets_guisurfs_moonvid"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:96:28 - Unknown word (testgui) -- Name {string {"guisurfs_testgui"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:9:42 - Unknown word (guisurfs) -- "editor") {string {"guisurfs_guisurface"}} -./Games/DOOM/Assets/Materials/aaduffyTest.ogex:9:51 - Unknown word (guisurface) -- {string {"guisurfs_guisurface"}} -./Games/DOOM/Assets/Materials/alphalabs.ogex:107:40 - Unknown word (enwall) -- textures_alphalabs_a_enwall22b"}} -./Games/DOOM/Assets/Materials/alphalabs.ogex:125:51 - Unknown word (enpro) -- {string {"textures_enpro_enwall20_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:1028:39 - Unknown word (stefloormat) -- textures_base_floor_stefloormat1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1036:38 - Unknown word (deldoor) -- "textures_base_door_deldoor2glass"}} -./Games/DOOM/Assets/Materials/andy.ogex:1037:55 - Unknown word (redglass) -- string {"textures_sfx_redglass"}} -./Games/DOOM/Assets/Materials/andy.ogex:1041:38 - Unknown word (delelev) -- "textures_base_door_delelev1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1073:38 - Unknown word (deldoorgutter) -- "textures_base_door_deldoorgutter"}} -./Games/DOOM/Assets/Materials/andy.ogex:1129:35 - Unknown word (wirejumble) -- string {"textures_decals_wirejumble"}} -./Games/DOOM/Assets/Materials/andy.ogex:1136:35 - Unknown word (drophose) -- string {"textures_decals_drophose"}} -./Games/DOOM/Assets/Materials/andy.ogex:114:39 - Unknown word (floorpgratecapdirt) -- textures_base_floor_floorpgratecapdirt"}} -./Games/DOOM/Assets/Materials/andy.ogex:1166:34 - Unknown word (cavslashtrim) -- string {"textures_caves_cavslashtrim"}} -./Games/DOOM/Assets/Materials/andy.ogex:116:62 - Unknown word (floorpgratecap) -- textures_base_floor_floorpgratecap_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:1174:34 - Unknown word (temteeth) -- string {"textures_caves_temteeth1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1182:34 - Unknown word (temfloor) -- string {"textures_caves_temfloor1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1190:34 - Unknown word (temfloortrim) -- string {"textures_caves_temfloortrim1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1198:34 - Unknown word (tembrickrib) -- string {"textures_caves_tembrickrib1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1206:34 - Unknown word (tembrick) -- string {"textures_caves_tembrick1ridges"}} -./Games/DOOM/Assets/Materials/andy.ogex:1208:66 - Unknown word (crum) -- textures_caves_tembrick1crum_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:122:39 - Unknown word (floorpgratedirt) -- textures_base_floor_floorpgratedirt"}} -./Games/DOOM/Assets/Materials/andy.ogex:124:62 - Unknown word (floorpgrate) -- textures_base_floor_floorpgrate_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:1262:34 - Unknown word (temtablet) -- string {"textures_caves_temtablet1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1278:43 - Unknown word (smoo) -- textures_caves_tembrick1smoo"}} -./Games/DOOM/Assets/Materials/andy.ogex:1301:34 - Unknown word (temwalltest) -- string {"textures_caves_temwalltest1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1309:34 - Unknown word (temlongwall) -- string {"textures_caves_temlongwall1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1317:34 - Unknown word (cavhexcement) -- string {"textures_caves_cavhexcement1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1325:34 - Unknown word (cavhexrubber) -- string {"textures_caves_cavhexrubber1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1333:34 - Unknown word (cavhexfloor) -- string {"textures_caves_cavhexfloor2"}} -./Games/DOOM/Assets/Materials/andy.ogex:1341:34 - Unknown word (cavtrfloor) -- string {"textures_caves_cavtrfloor1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1349:34 - Unknown word (cavfloorflat) -- string {"textures_caves_cavfloorflat1yel"}} -./Games/DOOM/Assets/Materials/andy.ogex:1381:34 - Unknown word (cavwafpanel) -- string {"textures_caves_cavwafpanel1sqr"}} -./Games/DOOM/Assets/Materials/andy.ogex:138:35 - Unknown word (airlockfloorflat) -- string {"textures_object_airlockfloorflat"}} -./Games/DOOM/Assets/Materials/andy.ogex:13:38 - Unknown word (doorlight) -- "textures_base_door_doorlight_grn"}} -./Games/DOOM/Assets/Materials/andy.ogex:1429:34 - Unknown word (cavpanel) -- string {"textures_caves_cavpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1445:34 - Unknown word (cavwarcol) -- string {"textures_caves_cavwarcol1"}} -./Games/DOOM/Assets/Materials/andy.ogex:145:38 - Unknown word (boxpanel) -- "textures_base_wall_boxpanel_rust"}} -./Games/DOOM/Assets/Materials/andy.ogex:1461:34 - Unknown word (cavwarhaz) -- string {"textures_caves_cavwarhaz1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1469:34 - Unknown word (cavwall) -- string {"textures_caves_cavwall1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1509:34 - Unknown word (cavvac) -- string {"textures_caves_cavvac1a"}} -./Games/DOOM/Assets/Materials/andy.ogex:153:43 - Unknown word (accesshatch) -- models_mapobjects_doors_accesshatch_accesshatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:1565:34 - Unknown word (cavfgirder) -- string {"textures_caves_cavfgirder1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1581:34 - Unknown word (cavgrate) -- string {"textures_caves_cavgrate1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1604:34 - Unknown word (cavflpanel) -- string {"textures_caves_cavflpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:161:38 - Unknown word (reactorwalla) -- "textures_base_wall_reactorwalla3aburst"}} -./Games/DOOM/Assets/Materials/andy.ogex:161:51 - Unknown word (aburst) -- base_wall_reactorwalla3aburst"}} -./Games/DOOM/Assets/Materials/andy.ogex:1627:35 - Unknown word (keycircuit) -- string {"textures_decals_keycircuit"}} -./Games/DOOM/Assets/Materials/andy.ogex:1662:35 - Unknown word (pipecapsquare) -- string {"textures_decals_pipecapsquare"}} -./Games/DOOM/Assets/Materials/andy.ogex:1669:35 - Unknown word (dirtblast) -- string {"textures_decals_dirtblast"}} -./Games/DOOM/Assets/Materials/andy.ogex:169:55 - Unknown word (accesshatchdoor) -- mapobjects_doors_accesshatch_accesshatchdoor"}} -./Games/DOOM/Assets/Materials/andy.ogex:1706:35 - Unknown word (sodoor) -- string {"textures_object_sodoor1vert"}} -./Games/DOOM/Assets/Materials/andy.ogex:1714:35 - Unknown word (paintcorner) -- string {"textures_decals_paintcorner_white"}} -./Games/DOOM/Assets/Materials/andy.ogex:1719:35 - Unknown word (paintline) -- string {"textures_decals_paintline_white1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1724:35 - Unknown word (redcross) -- string {"textures_decals_redcross"}} -./Games/DOOM/Assets/Materials/andy.ogex:1734:38 - Unknown word (silverswatch) -- "textures_base_wall_silverswatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:1742:38 - Unknown word (collectorring) -- "textures_base_wall_collectorring"}} -./Games/DOOM/Assets/Materials/andy.ogex:1750:38 - Unknown word (collectorbarrel) -- "textures_base_wall_collectorbarrel"}} -./Games/DOOM/Assets/Materials/andy.ogex:1758:38 - Unknown word (collectorlid) -- "textures_base_wall_collectorlid"}} -./Games/DOOM/Assets/Materials/andy.ogex:1766:38 - Unknown word (gotcbar) -- "textures_base_wall_gotcbar1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1782:38 - Unknown word (gotbluswatch) -- "textures_base_wall_gotbluswatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:1790:38 - Unknown word (gotvacuform) -- "textures_base_wall_gotvacuform1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1798:38 - Unknown word (gotbtri) -- "textures_base_wall_gotbtri1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1814:38 - Unknown word (gotbflat) -- "textures_base_wall_gotbflat1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1854:38 - Unknown word (gotbpanel) -- "textures_base_wall_gotbpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:185:39 - Unknown word (tecstairstep) -- textures_base_floor_tecstairstep"}} -./Games/DOOM/Assets/Materials/andy.ogex:1870:38 - Unknown word (gotsnoshovel) -- "textures_base_wall_gotsnoshovel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1894:39 - Unknown word (gottubelight) -- textures_base_light_gottubelight_off"}} -./Games/DOOM/Assets/Materials/andy.ogex:1910:38 - Unknown word (gotpwall) -- "textures_base_wall_gotpwall1"}} -./Games/DOOM/Assets/Materials/andy.ogex:1918:38 - Unknown word (gotbwall) -- "textures_base_wall_gotbwall1"}} -./Games/DOOM/Assets/Materials/andy.ogex:193:39 - Unknown word (tecstairstepgrn) -- textures_base_floor_tecstairstepgrn"}} -./Games/DOOM/Assets/Materials/andy.ogex:2014:38 - Unknown word (gotribs) -- "textures_base_wall_gotribs1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2038:38 - Unknown word (gotendo) -- "textures_base_wall_gotendo1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2052:38 - Unknown word (gotcflat) -- "textures_base_wall_gotcflat1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2084:38 - Unknown word (gotvertpanel) -- "textures_base_wall_gotvertpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2092:38 - Unknown word (gotteeth) -- "textures_base_wall_gotteeth1"}} -./Games/DOOM/Assets/Materials/andy.ogex:209:38 - Unknown word (snailswatch) -- "textures_base_wall_snailswatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:20:35 - Unknown word (csawmanual) -- string {"textures_object_csawmanual"}} -./Games/DOOM/Assets/Materials/andy.ogex:2108:38 - Unknown word (goteva) -- "textures_base_wall_goteva1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2116:38 - Unknown word (gotehospike) -- "textures_base_wall_gotehospike"}} -./Games/DOOM/Assets/Materials/andy.ogex:2124:38 - Unknown word (gotehobottom) -- "textures_base_wall_gotehobottom1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2140:38 - Unknown word (gotnewton) -- "textures_base_wall_gotnewton"}} -./Games/DOOM/Assets/Materials/andy.ogex:2148:38 - Unknown word (gottrap) -- "textures_base_wall_gottrap"}} -./Games/DOOM/Assets/Materials/andy.ogex:2164:38 - Unknown word (gotrustcol) -- "textures_base_trim_gotrustcol1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2172:38 - Unknown word (sfltrim) -- "textures_base_trim_sfltrim1"}} -./Games/DOOM/Assets/Materials/andy.ogex:217:38 - Unknown word (mcuswatch) -- "textures_base_wall_mcuswatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:2252:39 - Unknown word (gothallpanel) -- textures_base_floor_gothallpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2276:39 - Unknown word (gothoneytrap) -- textures_base_floor_gothoneytrap"}} -./Games/DOOM/Assets/Materials/andy.ogex:2292:39 - Unknown word (sflcgateceiling) -- textures_base_floor_sflcgateceiling1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2300:39 - Unknown word (sflgratetrans) -- textures_base_floor_sflgratetrans1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2370:48 - Unknown word (adiag) -- base_floor_sflgrate2adiag"}} -./Games/DOOM/Assets/Materials/andy.ogex:241:34 - Unknown word (cavsolarmap) -- string {"textures_caves_cavsolarmap"}} -./Games/DOOM/Assets/Materials/andy.ogex:249:34 - Unknown word (swirltile) -- string {"textures_caves_swirltile"}} -./Games/DOOM/Assets/Materials/andy.ogex:2506:38 - Unknown word (stesilvertrim) -- "textures_base_trim_stesilvertrim"}} -./Games/DOOM/Assets/Materials/andy.ogex:2530:39 - Unknown word (steelbow) -- textures_base_floor_steelbow"}} -./Games/DOOM/Assets/Materials/andy.ogex:2538:39 - Unknown word (stcable) -- textures_object_tec_stcable1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2558:39 - Unknown word (sterlightdecalblu) -- textures_base_light_sterlightdecalblu"}} -./Games/DOOM/Assets/Materials/andy.ogex:2565:39 - Unknown word (sterlightdecalred) -- textures_base_light_sterlightdecalred"}} -./Games/DOOM/Assets/Materials/andy.ogex:2600:39 - Unknown word (stehallpanel) -- textures_base_floor_stehallpanel"}} -./Games/DOOM/Assets/Materials/andy.ogex:2608:38 - Unknown word (doorlamp) -- "textures_base_door_doorlamp"}} -./Games/DOOM/Assets/Materials/andy.ogex:2648:39 - Unknown word (stelightstrip) -- textures_base_light_stelightstrip2"}} -./Games/DOOM/Assets/Materials/andy.ogex:2672:47 - Unknown word (rlight) -- textures_base_floor_stetile4rlight"}} -./Games/DOOM/Assets/Materials/andy.ogex:2680:39 - Unknown word (stectile) -- textures_base_floor_stectile1rlight"}} -./Games/DOOM/Assets/Materials/andy.ogex:2688:47 - Unknown word (sqlight) -- textures_base_floor_stetile4sqlight"}} -./Games/DOOM/Assets/Materials/andy.ogex:2720:38 - Unknown word (offcubicleframe) -- "textures_base_wall_offcubicleframe1"}} -./Games/DOOM/Assets/Materials/andy.ogex:2728:38 - Unknown word (stelabcasewall) -- "textures_base_wall_stelabcasewall"}} -./Games/DOOM/Assets/Materials/andy.ogex:2736:38 - Unknown word (stelabcasewallside) -- "textures_base_wall_stelabcasewallside"}} -./Games/DOOM/Assets/Materials/andy.ogex:273:38 - Unknown word (airwheel) -- "textures_base_door_airwheel"}} -./Games/DOOM/Assets/Materials/andy.ogex:2746:61 - Unknown word (gholabwafer) -- "textures_base_wall_gholabwafer1_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:2800:38 - Unknown word (stepanel) -- "textures_base_wall_stepanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:281:38 - Unknown word (airdoor) -- "textures_base_door_airdoor"}} -./Games/DOOM/Assets/Materials/andy.ogex:2832:47 - Unknown word (ablu) -- textures_base_wall_stepanel5ablu"}} -./Games/DOOM/Assets/Materials/andy.ogex:2856:47 - Unknown word (agrn) -- textures_base_wall_stepanel5agrn"}} -./Games/DOOM/Assets/Materials/andy.ogex:2864:47 - Unknown word (bgrn) -- textures_base_wall_stepanel5bgrn"}} -./Games/DOOM/Assets/Materials/andy.ogex:2888:38 - Unknown word (steribpanel) -- "textures_base_wall_steribpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:289:38 - Unknown word (airdoorfrm) -- "textures_base_door_airdoorfrm"}} -./Games/DOOM/Assets/Materials/andy.ogex:28:45 - Unknown word (midpatch) -- models_mapobjects_airlock_midpatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:297:38 - Unknown word (jumbofrm) -- "textures_base_door_jumbofrm"}} -./Games/DOOM/Assets/Materials/andy.ogex:3032:49 - Unknown word (grnlight) -- base_wall_steribwall1grnlight"}} -./Games/DOOM/Assets/Materials/andy.ogex:3040:49 - Unknown word (blulight) -- base_wall_steribwall1blulight"}} -./Games/DOOM/Assets/Materials/andy.ogex:3048:49 - Unknown word (yellight) -- base_wall_steribwall1yellight"}} -./Games/DOOM/Assets/Materials/andy.ogex:305:38 - Unknown word (jumbodoorguts) -- "textures_base_door_jumbodoorguts"}} -./Games/DOOM/Assets/Materials/andy.ogex:3088:38 - Unknown word (steterrarium) -- "textures_base_wall_steterrarium"}} -./Games/DOOM/Assets/Materials/andy.ogex:3096:38 - Unknown word (steterrariumdoor) -- "textures_base_wall_steterrariumdoor"}} -./Games/DOOM/Assets/Materials/andy.ogex:3104:38 - Unknown word (minbumpoval) -- "textures_base_wall_minbumpoval"}} -./Games/DOOM/Assets/Materials/andy.ogex:3111:38 - Unknown word (mintechrect) -- "textures_base_wall_mintechrect1"}} -./Games/DOOM/Assets/Materials/andy.ogex:313:38 - Unknown word (jumbodoor) -- "textures_base_door_jumbodoor"}} -./Games/DOOM/Assets/Materials/andy.ogex:321:35 - Unknown word (extcable) -- string {"textures_object_extcable"}} -./Games/DOOM/Assets/Materials/andy.ogex:329:35 - Unknown word (storagecabdoor) -- string {"textures_object_storagecabdoor"}} -./Games/DOOM/Assets/Materials/andy.ogex:337:35 - Unknown word (storagecabdoordirt) -- string {"textures_object_storagecabdoordirt"}} -./Games/DOOM/Assets/Materials/andy.ogex:3413:46 - Unknown word (wingrn) -- textures_base_wall_stewall6wingrn"}} -./Games/DOOM/Assets/Materials/andy.ogex:345:35 - Unknown word (storagecabdoorblood) -- string {"textures_object_storagecabdoorblood"}} -./Games/DOOM/Assets/Materials/andy.ogex:3469:38 - Unknown word (sterestwall) -- "textures_base_wall_sterestwall1"}} -./Games/DOOM/Assets/Materials/andy.ogex:3493:39 - Unknown word (steceilingplank) -- textures_base_floor_steceilingplank1"}} -./Games/DOOM/Assets/Materials/andy.ogex:3501:38 - Unknown word (ghoventtrim) -- "textures_base_trim_ghoventtrim1"}} -./Games/DOOM/Assets/Materials/andy.ogex:3509:39 - Unknown word (ghoceiling) -- textures_base_floor_ghoceiling1"}} -./Games/DOOM/Assets/Materials/andy.ogex:353:35 - Unknown word (storagecabdoordelta) -- string {"textures_object_storagecabdoordelta"}} -./Games/DOOM/Assets/Materials/andy.ogex:3581:39 - Unknown word (stetilerib) -- textures_base_floor_stetilerib1"}} -./Games/DOOM/Assets/Materials/andy.ogex:361:35 - Unknown word (storagecabdoorgen) -- string {"textures_object_storagecabdoorgen"}} -./Games/DOOM/Assets/Materials/andy.ogex:3676:39 - Unknown word (stetilepygrip) -- textures_base_floor_stetilepygrip"}} -./Games/DOOM/Assets/Materials/andy.ogex:3684:39 - Unknown word (stetilediscgrip) -- textures_base_floor_stetilediscgrip3"}} -./Games/DOOM/Assets/Materials/andy.ogex:369:35 - Unknown word (cavcross) -- string {"textures_object_cavcross"}} -./Games/DOOM/Assets/Materials/andy.ogex:3710:61 - Unknown word (ghopanel) -- "textures_base_wall_ghopanel1_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:3740:47 - Unknown word (cutblu) -- textures_base_wall_minpanel1cutblu"}} -./Games/DOOM/Assets/Materials/andy.ogex:3758:61 - Unknown word (ghowall) -- "textures_base_wall_ghowall1_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:377:35 - Unknown word (paperdec) -- string {"textures_object_paperdec1"}} -./Games/DOOM/Assets/Materials/andy.ogex:3876:46 - Unknown word (dblu) -- textures_base_wall_minwall3dblu"}} -./Games/DOOM/Assets/Materials/andy.ogex:3884:46 - Unknown word (dyel) -- textures_base_wall_minwall3dyel"}} -./Games/DOOM/Assets/Materials/andy.ogex:3892:46 - Unknown word (dcut) -- textures_base_wall_minwall3dcut"}} -./Games/DOOM/Assets/Materials/andy.ogex:3900:46 - Unknown word (dcutblu) -- textures_base_wall_minwall3dcutblu"}} -./Games/DOOM/Assets/Materials/andy.ogex:3908:46 - Unknown word (dcutyel) -- textures_base_wall_minwall3dcutyel"}} -./Games/DOOM/Assets/Materials/andy.ogex:3972:46 - Unknown word (byel) -- textures_base_wall_minwall5byel"}} -./Games/DOOM/Assets/Materials/andy.ogex:3:32 - Unknown word (lagsprite) -- string {"textures_sfx_lagsprite"}} -./Games/DOOM/Assets/Materials/andy.ogex:408:44 - Unknown word (bleh) -- textures_decals_alphabet6bleh"}} -./Games/DOOM/Assets/Materials/andy.ogex:4100:39 - Unknown word (ghofloor) -- textures_base_floor_ghofloor1a"}} -./Games/DOOM/Assets/Materials/andy.ogex:4124:38 - Unknown word (ghotest) -- "textures_base_wall_ghotest1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4132:38 - Unknown word (ghocolumn) -- "textures_base_wall_ghocolumn1"}} -./Games/DOOM/Assets/Materials/andy.ogex:413:35 - Unknown word (chemstorage) -- string {"textures_decals_chemstorage"}} -./Games/DOOM/Assets/Materials/andy.ogex:4148:38 - Unknown word (ghoribpanel) -- "textures_base_wall_ghoribpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4212:38 - Unknown word (ghovat) -- "textures_base_wall_ghovat1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4228:38 - Unknown word (ghopaneltrim) -- "textures_base_trim_ghopaneltrim1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4316:43 - Unknown word (blkburn) -- textures_object_tecpipe1blkburn"}} -./Games/DOOM/Assets/Materials/andy.ogex:4320:68 - Unknown word (redburn) -- textures_object_tecpipe1redburn_s"}} -./Games/DOOM/Assets/Materials/andy.ogex:4380:35 - Unknown word (gohoser) -- string {"textures_object_gohoser_y"}} -./Games/DOOM/Assets/Materials/andy.ogex:4531:35 - Unknown word (conmonitor) -- string {"textures_object_conmonitor1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4571:35 - Unknown word (offbindercomp) -- string {"textures_object_offbindercomp1_side"}} -./Games/DOOM/Assets/Materials/andy.ogex:4579:35 - Unknown word (offbinder) -- string {"textures_object_offbinder1_top"}} -./Games/DOOM/Assets/Materials/andy.ogex:4651:35 - Unknown word (offdrawing) -- string {"textures_object_offdrawing1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4659:35 - Unknown word (offcab) -- string {"textures_object_offcab1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4689:35 - Unknown word (offdrawer) -- string {"textures_object_offdrawer1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4697:35 - Unknown word (offlocker) -- string {"textures_object_offlocker1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4721:38 - Unknown word (gothatch) -- "textures_base_door_gothatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:4737:38 - Unknown word (stedoorpanel) -- "textures_base_door_stedoorpanel1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4745:38 - Unknown word (tridoor) -- "textures_base_door_tridoor"}} -./Games/DOOM/Assets/Materials/andy.ogex:4753:38 - Unknown word (vaultdoor) -- "textures_base_door_vaultdoor1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4761:38 - Unknown word (stedoor) -- "textures_base_door_stedoor1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4769:38 - Unknown word (stedoubledoor) -- "textures_base_door_stedoubledoor1"}} -./Games/DOOM/Assets/Materials/andy.ogex:4793:38 - Unknown word (stedoorgromit) -- "textures_base_door_stedoorgromit"}} -./Games/DOOM/Assets/Materials/andy.ogex:4818:61 - Unknown word (stedoorframered) -- "textures_base_door_stedoorframered"}} -./Games/DOOM/Assets/Materials/andy.ogex:4826:61 - Unknown word (stedoorframegrn) -- "textures_base_door_stedoorframegrn"}} -./Games/DOOM/Assets/Materials/andy.ogex:4841:38 - Unknown word (stedoortrim) -- "textures_base_door_stedoortrim"}} -./Games/DOOM/Assets/Materials/andy.ogex:4849:38 - Unknown word (stegreenswatch) -- "textures_base_door_stegreenswatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:4851:61 - Unknown word (flatswatch) -- "textures_base_door_flatswatch"}} -./Games/DOOM/Assets/Materials/andy.ogex:4856:38 - Unknown word (stetrim) -- "textures_base_trim_stetrim2"}} -./Games/DOOM/Assets/Materials/andy.ogex:547:35 - Unknown word (modsidesbackflat) -- string {"textures_object_modsidesbackflat"}} -./Games/DOOM/Assets/Materials/andy.ogex:555:35 - Unknown word (modsidesbackflatburn) -- string {"textures_object_modsidesbackflatburn"}} -./Games/DOOM/Assets/Materials/andy.ogex:563:35 - Unknown word (modsidesbackflatdirt) -- string {"textures_object_modsidesbackflatdirt"}} -./Games/DOOM/Assets/Materials/andy.ogex:571:35 - Unknown word (sterubber) -- string {"textures_object_sterubber1"}} -./Games/DOOM/Assets/Materials/andy.ogex:579:35 - Unknown word (warfoot) -- string {"textures_object_warfoot"}} -./Games/DOOM/Assets/Materials/andy.ogex:595:39 - Unknown word (striplightxl) -- textures_base_light_striplightxl1"}} -./Games/DOOM/Assets/Materials/andy.ogex:60:39 - Unknown word (slimestain) -- textures_decals_mcu_slimestain"}} -./Games/DOOM/Assets/Materials/andy.ogex:627:47 - Unknown word (neolight) -- textures_base_wall_sopanel25neolight"}} -./Games/DOOM/Assets/Materials/andy.ogex:635:35 - Unknown word (stenameplate) -- string {"textures_decals_stenameplate"}} -./Games/DOOM/Assets/Materials/andy.ogex:640:46 - Unknown word (bdecwall) -- textures_base_wall_stewall3bdecwall"}} -./Games/DOOM/Assets/Materials/andy.ogex:647:38 - Unknown word (hexpanel) -- "textures_base_wall_hexpanel_a"}} -./Games/DOOM/Assets/Materials/andy.ogex:661:35 - Unknown word (autfloordisc) -- string {"textures_object_autfloordisc"}} -./Games/DOOM/Assets/Materials/andy.ogex:668:34 - Unknown word (metalswatch) -- string {"textures_caves_metalswatch1"}} -./Games/DOOM/Assets/Materials/andy.ogex:692:34 - Unknown word (warshutter) -- string {"textures_caves_warshutter1"}} -./Games/DOOM/Assets/Materials/andy.ogex:700:34 - Unknown word (wardoortrim) -- string {"textures_caves_wardoortrim"}} -./Games/DOOM/Assets/Materials/andy.ogex:716:35 - Unknown word (burgerbox) -- string {"textures_object_burgerbox"}} -./Games/DOOM/Assets/Materials/andy.ogex:718:58 - Unknown word (sopbox) -- string {"textures_object_sopbox2_local"}} -./Games/DOOM/Assets/Materials/andy.ogex:724:35 - Unknown word (csawbox) -- string {"textures_object_csawbox"}} -./Games/DOOM/Assets/Materials/andy.ogex:732:35 - Unknown word (stebox) -- string {"textures_object_stebox1"}} -./Games/DOOM/Assets/Materials/andy.ogex:748:35 - Unknown word (sopcsawbox) -- string {"textures_object_sopcsawbox"}} -./Games/DOOM/Assets/Materials/andy.ogex:756:35 - Unknown word (gendesk) -- string {"textures_object_gendesk1flat"}} -./Games/DOOM/Assets/Materials/andy.ogex:772:35 - Unknown word (modgobflat) -- string {"textures_object_modgobflat1"}} -./Games/DOOM/Assets/Materials/andy.ogex:788:35 - Unknown word (autable) -- string {"textures_object_autable"}} -./Games/DOOM/Assets/Materials/andy.ogex:796:35 - Unknown word (telegui) -- string {"textures_object_telegui"}} -./Games/DOOM/Assets/Materials/andy.ogex:79:38 - Unknown word (droppuddle) -- "textures_particles_droppuddle"}} -./Games/DOOM/Assets/Materials/andy.ogex:804:35 - Unknown word (telearm) -- string {"textures_object_telearm"}} -./Games/DOOM/Assets/Materials/andy.ogex:812:35 - Unknown word (teleguard) -- string {"textures_object_teleguard"}} -./Games/DOOM/Assets/Materials/andy.ogex:820:35 - Unknown word (teleshoulder) -- string {"textures_object_teleshoulder"}} -./Games/DOOM/Assets/Materials/andy.ogex:828:35 - Unknown word (telebody) -- string {"textures_object_telebody"}} -./Games/DOOM/Assets/Materials/andy.ogex:84:38 - Unknown word (droppuddleblood) -- "textures_particles_droppuddleblood"}} -./Games/DOOM/Assets/Materials/andy.ogex:8:32 - Unknown word (chatsprite) -- string {"textures_sfx_chatsprite"}} -./Games/DOOM/Assets/Materials/atest.ogex:147:43 - Unknown word (eorg) -- textures_atest_girders02eorg_fin"}} -./Games/DOOM/Assets/Materials/atest.ogex:155:41 - Unknown word (hangingmonitor) -- models_adrian_final_a_hangingmonitor_hp"}} -./Games/DOOM/Assets/Materials/atest.ogex:156:58 - Unknown word (recyccompskins) -- string {"textures_atest_recyccompskins_a_hangingmonitor_d" -./Games/DOOM/Assets/Materials/atest.ogex:162:44 - Unknown word (hellbones) -- textures_atest_work_hell_hellbones_d07alocalwork"}} -./Games/DOOM/Assets/Materials/atest.ogex:162:57 - Unknown word (alocalwork) -- work_hell_hellbones_d07alocalwork"}} -./Games/DOOM/Assets/Materials/atest.ogex:170:46 - Unknown word (helldoor) -- textures_atest_work_hell_a_helldoor_skulls_d01d"}} -./Games/DOOM/Assets/Materials/atest.ogex:3:28 - Unknown word (atest) -- Name {string {"textures_atest_atest1"}} -./Games/DOOM/Assets/Materials/atest.ogex:43:34 - Unknown word (techboard) -- string {"textures_atest_techboard01"}} -./Games/DOOM/Assets/Materials/atest.ogex:59:34 - Unknown word (techpipes) -- string {"textures_atest_techpipes01"}} -./Games/DOOM/Assets/Materials/base_door.ogex:11:38 - Unknown word (smalldoortexdirty) -- "textures_base_door_smalldoortexdirty"}} -./Games/DOOM/Assets/Materials/base_door.ogex:14:61 - Unknown word (smalldoortex) -- "textures_base_door_smalldoortex_local"}} -./Games/DOOM/Assets/Materials/base_door.ogex:19:38 - Unknown word (leftframe) -- "textures_base_door_leftframe2"}} -./Games/DOOM/Assets/Materials/base_door.ogex:241:38 - Unknown word (doorlightdel) -- "textures_base_door_doorlightdel"}} -./Games/DOOM/Assets/Materials/base_door.ogex:255:38 - Unknown word (doorlightcav) -- "textures_base_door_doorlightcav"}} -./Games/DOOM/Assets/Materials/base_door.ogex:270:38 - Unknown word (cpubossdoor) -- "textures_base_door_cpubossdoor"}} -./Games/DOOM/Assets/Materials/base_door.ogex:278:38 - Unknown word (smdoor) -- "textures_base_door_smdoor1b"}} -./Games/DOOM/Assets/Materials/base_door.ogex:27:38 - Unknown word (nobbydoor) -- "textures_base_door_nobbydoor"}} -./Games/DOOM/Assets/Materials/base_door.ogex:326:38 - Unknown word (bighangardoors) -- "textures_base_door_bighangardoors"}} -./Games/DOOM/Assets/Materials/base_door.ogex:37:62 - Unknown word (squarepanel) -- "textures_base_wall_squarepanel_d"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:112:39 - Unknown word (bluetex) -- textures_base_floor_bluetex3b_ed"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:115:71 - Unknown word (bdif) -- textures_base_floor_bluetex3bdif"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:116:72 - Unknown word (bspec) -- textures_base_floor_bluetex3bspec"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:123:71 - Unknown word (adif) -- textures_base_floor_bluetex1adif"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:124:72 - Unknown word (aspec) -- textures_base_floor_bluetex1aspec"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:135:39 - Unknown word (textest) -- textures_base_floor_textest"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:137:62 - Unknown word (textestbmp) -- textures_base_floor_textestbmp"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:138:63 - Unknown word (textestdif) -- textures_base_floor_textestdif"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:142:39 - Unknown word (doortrim) -- textures_base_floor_doortrim"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:150:39 - Unknown word (diafloor) -- textures_base_floor_diafloor"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:166:39 - Unknown word (coldstairs) -- textures_base_floor_coldstairs"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:240:41 - Unknown word (reactorfloor) -- textures_base_floor_a_reactorfloor2_1_fin"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:27:39 - Unknown word (fgrate) -- textures_base_floor_fgrate"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:320:41 - Unknown word (sofloor) -- textures_base_floor_a_sofloor3_d01f"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:344:53 - Unknown word (aclean) -- floor_a_sofloor1_d01aclean"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:35:39 - Unknown word (ribfloor) -- textures_base_floor_ribfloor"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:51:39 - Unknown word (insettrim) -- textures_base_floor_insettrim"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:67:39 - Unknown word (sflooralpha) -- textures_base_floor_sflooralpha"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:69:62 - Unknown word (sfloor) -- textures_base_floor_sfloor_local"}} -./Games/DOOM/Assets/Materials/base_floor.ogex:935:64 - Unknown word (alava) -- textures_hell_lfwall27alava_local"}} -./Games/DOOM/Assets/Materials/base_light.ogex:11:50 - Unknown word (noshadow) -- base_light_striplight3noshadow"}} -./Games/DOOM/Assets/Materials/base_light.ogex:170:39 - Unknown word (testglow) -- textures_base_light_testglow"}} -./Games/DOOM/Assets/Materials/base_light.ogex:191:39 - Unknown word (trilight) -- textures_base_light_trilight"}} -./Games/DOOM/Assets/Materials/base_light.ogex:207:39 - Unknown word (mallight) -- textures_base_light_mallight"}} -./Games/DOOM/Assets/Materials/base_light.ogex:223:39 - Unknown word (trimlight) -- textures_base_light_trimlight"}} -./Games/DOOM/Assets/Materials/base_light.ogex:271:39 - Unknown word (trimlightrim) -- textures_base_light_trimlightrim"}} -./Games/DOOM/Assets/Materials/base_light.ogex:279:39 - Unknown word (trimlightblink) -- textures_base_light_trimlightblink"}} -./Games/DOOM/Assets/Materials/base_light.ogex:303:39 - Unknown word (dlight) -- textures_base_light_dlight01"}} -./Games/DOOM/Assets/Materials/base_light.ogex:311:39 - Unknown word (tlight) -- textures_base_light_tlight01"}} -./Games/DOOM/Assets/Materials/base_light.ogex:327:39 - Unknown word (tltrim) -- textures_base_light_tltrim"}} -./Games/DOOM/Assets/Materials/base_light.ogex:343:41 - Unknown word (reactorlight) -- textures_base_light_a_reactorlight1_d1c"}} -./Games/DOOM/Assets/Materials/base_light.ogex:592:39 - Unknown word (squaresmall) -- textures_base_light_squaresmall"}} -./Games/DOOM/Assets/Materials/base_light.ogex:609:48 - Unknown word (lightb) -- base_light_snpanel15lightb"}} -./Games/DOOM/Assets/Materials/base_light.ogex:616:39 - Unknown word (whiteblock) -- textures_base_light_whiteblock"}} -./Games/DOOM/Assets/Materials/base_light.ogex:639:76 - Unknown word (localb) -- light_reactorlight1_localb"}} -./Games/DOOM/Assets/Materials/base_light.ogex:73:62 - Unknown word (striplightdif) -- textures_base_light_striplightdif"}} -./Games/DOOM/Assets/Materials/base_light.ogex:76:64 - Unknown word (striplightspec) -- textures_base_light_striplightspec"}} -./Games/DOOM/Assets/Materials/base_light.ogex:80:53 - Unknown word (noflare) -- light_striplight_ed_noflare"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:11:38 - Unknown word (fitpanel) -- "textures_base_trim_fitpanel"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:160:70 - Unknown word (kdif) -- textures_base_trim_bluetex3kdif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:161:71 - Unknown word (kspec) -- textures_base_trim_bluetex3kspec"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:168:70 - Unknown word (ldif) -- textures_base_trim_bluetex3ldif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:169:71 - Unknown word (lspec) -- textures_base_trim_bluetex3lspec"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:173:38 - Unknown word (yelhaz) -- "textures_base_trim_yelhaz1"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:187:38 - Unknown word (talltrim) -- "textures_base_trim_talltrim1_ed"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:203:44 - Unknown word (ashiny) -- textures_base_trim_grate1ashiny"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:216:38 - Unknown word (railgate) -- "textures_base_trim_railgate1b"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:224:61 - Unknown word (railgrate) -- "textures_base_trim_railgrate2b"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:229:38 - Unknown word (sgirder) -- "textures_base_trim_sgirder1a"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:271:38 - Unknown word (ppipe) -- "textures_base_trim_ppipe"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:279:38 - Unknown word (ridbeam) -- "textures_base_trim_ridbeam"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:285:38 - Unknown word (treadpanel) -- "textures_base_trim_treadpanel"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:301:38 - Unknown word (rustrim) -- "textures_base_trim_rustrim"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:309:38 - Unknown word (cautionsign) -- "textures_base_trim_cautionsign01"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:324:38 - Unknown word (ytrim) -- "textures_base_trim_ytrim01"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:340:38 - Unknown word (btrim) -- "textures_base_trim_btrim01"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:348:38 - Unknown word (dangertrim) -- "textures_base_trim_dangertrim01"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:356:40 - Unknown word (reactorpipe) -- textures_base_trim_a_reactorpipe_01_fin"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:388:54 - Unknown word (blackb) -- trim_a_reactorpipe_02blackb_fin"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:3:38 - Unknown word (lftrim) -- "textures_base_trim_lftrim3a"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:43:70 - Unknown word (ndif) -- textures_base_trim_bluetex4ndif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:44:71 - Unknown word (nspec) -- textures_base_trim_bluetex4nspec"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:492:55 - Unknown word (bdark) -- trim_a_sfltrim3yel_d02bdark"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:59:70 - Unknown word (odif) -- textures_base_trim_bluetex4odif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:60:71 - Unknown word (ospec) -- textures_base_trim_bluetex4ospec"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:66:70 - Unknown word (qdif) -- textures_base_trim_bluetex4qdif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:67:71 - Unknown word (qspec) -- textures_base_trim_bluetex4qspec"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:739:38 - Unknown word (comptrim) -- "textures_base_trim_comptrim2_ns"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:73:70 - Unknown word (rdif) -- textures_base_trim_bluetex4rdif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:801:38 - Unknown word (reactorgirder) -- "textures_base_trim_reactorgirder1"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:808:38 - Unknown word (reactorep) -- "textures_base_trim_reactorep2"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:80:70 - Unknown word (sdif) -- textures_base_trim_bluetex4sdif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:824:38 - Unknown word (reactortrim) -- "textures_base_trim_reactortrim3"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:88:70 - Unknown word (idif) -- textures_base_trim_bluetex3idif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:89:71 - Unknown word (ispec) -- textures_base_trim_bluetex3ispec"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:903:38 - Unknown word (tabletrim) -- "textures_base_trim_tabletrim2"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:917:38 - Unknown word (tabletrimd) -- "textures_base_trim_tabletrimd"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:96:70 - Unknown word (jdif) -- textures_base_trim_bluetex3jdif"}} -./Games/DOOM/Assets/Materials/base_trim.ogex:97:71 - Unknown word (jspec) -- textures_base_trim_bluetex3jspec"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:102:38 - Unknown word (xiantex) -- "textures_base_wall_xiantex1_dark"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:104:56 - Unknown word (xianroom) -- string {"models_seneca_xianroom_xiantex1_local"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:128:56 - Unknown word (lanrock) -- string {"textures_rock_lanrock1"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:147:38 - Unknown word (shinypanel) -- "textures_base_wall_shinypanel1"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:155:38 - Unknown word (factoutwall) -- "textures_base_wall_factoutwall1"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:15:38 - Unknown word (cpuwall) -- "textures_base_wall_cpuwall2b"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:162:38 - Unknown word (shortpanel) -- "textures_base_wall_shortpanel"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:23:38 - Unknown word (sosnpanel) -- "textures_base_wall_sosnpanel1"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:253:38 - Unknown word (ribblerustrim) -- "textures_base_wall_ribblerustrim"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:261:38 - Unknown word (ribblerust) -- "textures_base_wall_ribblerust"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:277:38 - Unknown word (doomwall) -- "textures_base_wall_doomwall03_03_fin"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:3034:38 - Unknown word (slpanel) -- "textures_base_wall_slpanel1"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:3074:38 - Unknown word (longpanel) -- "textures_base_wall_longpanel"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:317:40 - Unknown word (pipevent) -- textures_base_wall_a_pipevent_2"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:31:38 - Unknown word (boltygrate) -- "textures_base_wall_boltygrate"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:3373:38 - Unknown word (reactorwall) -- "textures_base_wall_reactorwall1a5"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:3413:42 - Unknown word (shieldfloor) -- textures_base_wall_sab_shieldfloor"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:349:48 - Unknown word (bclean) -- base_wall_a_skpanel3bclean_01"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:421:40 - Unknown word (outfactory) -- textures_base_wall_a_outfactory9_d01"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:485:40 - Unknown word (lflift) -- textures_base_wall_a_lflift_d"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:81:70 - Unknown word (ddif) -- textures_base_wall_bluetex1ddif"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:82:71 - Unknown word (dspec) -- textures_base_wall_bluetex1dspec"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:89:70 - Unknown word (edif) -- textures_base_wall_bluetex1edif"}} -./Games/DOOM/Assets/Materials/base_wall.ogex:90:71 - Unknown word (espec) -- textures_base_wall_bluetex1espec"}} -./Games/DOOM/Assets/Materials/berserkhelmet.ogex:3:32 - Unknown word (powerups) -- string {"models_items_powerups_berserker_collide"} -./Games/DOOM/Assets/Materials/caves.ogex:43:36 - Unknown word (diamondstairs) -- string {"textures_caves_a_diamondstairs_d01i"}} -./Games/DOOM/Assets/Materials/caves.ogex:457:36 - Unknown word (eggleg) -- string {"textures_caves_s_eggleg_shadow"}} -./Games/DOOM/Assets/Materials/caves.ogex:469:36 - Unknown word (eggrim) -- string {"textures_caves_s_eggrim"}} -./Games/DOOM/Assets/Materials/caves.ogex:477:34 - Unknown word (sbricksblenddust) -- string {"textures_caves_sbricksblenddust"}} -./Games/DOOM/Assets/Materials/caves.ogex:478:57 - Unknown word (sbricks) -- string {"textures_caves_sbricks4"}} -./Games/DOOM/Assets/Materials/caves.ogex:484:34 - Unknown word (sbricksblend) -- string {"textures_caves_sbricksblend2"}} -./Games/DOOM/Assets/Materials/char_common.ogex:103:44 - Unknown word (teethcampbell) -- models_characters_common_teethcampbell"}} -./Games/DOOM/Assets/Materials/char_common.ogex:109:44 - Unknown word (rightcampbell) -- models_characters_common_rightcampbell"}} -./Games/DOOM/Assets/Materials/char_common.ogex:113:44 - Unknown word (leftcampbell) -- models_characters_common_leftcampbell"}} -./Games/DOOM/Assets/Materials/char_common.ogex:117:44 - Unknown word (rightsecurity) -- models_characters_common_rightsecurity"}} -./Games/DOOM/Assets/Materials/char_common.ogex:11:44 - Unknown word (rightzsarge) -- models_characters_common_rightzsarge"}} -./Games/DOOM/Assets/Materials/char_common.ogex:121:44 - Unknown word (leftsecurity) -- models_characters_common_leftsecurity"}} -./Games/DOOM/Assets/Materials/char_common.ogex:125:44 - Unknown word (rightplayer) -- models_characters_common_rightplayer"}} -./Games/DOOM/Assets/Materials/char_common.ogex:129:44 - Unknown word (leftplayer) -- models_characters_common_leftplayer"}} -./Games/DOOM/Assets/Materials/char_common.ogex:133:44 - Unknown word (rightsarge) -- models_characters_common_rightsarge"}} -./Games/DOOM/Assets/Materials/char_common.ogex:137:44 - Unknown word (leftsarge) -- models_characters_common_leftsarge"}} -./Games/DOOM/Assets/Materials/char_common.ogex:141:44 - Unknown word (rightbet) -- models_characters_common_rightbet"}} -./Games/DOOM/Assets/Materials/char_common.ogex:145:44 - Unknown word (leftbet) -- models_characters_common_leftbet"}} -./Games/DOOM/Assets/Materials/char_common.ogex:149:44 - Unknown word (rightmaledict) -- models_characters_common_rightmaledict"}} -./Games/DOOM/Assets/Materials/char_common.ogex:153:44 - Unknown word (leftmaledict) -- models_characters_common_leftmaledict"}} -./Games/DOOM/Assets/Materials/char_common.ogex:157:44 - Unknown word (rightswann) -- models_characters_common_rightswann"}} -./Games/DOOM/Assets/Materials/char_common.ogex:15:44 - Unknown word (leftzsarge) -- models_characters_common_leftzsarge"}} -./Games/DOOM/Assets/Materials/char_common.ogex:161:44 - Unknown word (leftswann) -- models_characters_common_leftswann"}} -./Games/DOOM/Assets/Materials/char_common.ogex:165:44 - Unknown word (righthead) -- models_characters_common_righthead01"}} -./Games/DOOM/Assets/Materials/char_common.ogex:169:44 - Unknown word (lefthead) -- models_characters_common_lefthead01"}} -./Games/DOOM/Assets/Materials/char_common.ogex:19:44 - Unknown word (teethdeadb) -- models_characters_common_teethdeadb"}} -./Games/DOOM/Assets/Materials/char_common.ogex:220:44 - Unknown word (rightdead) -- models_characters_common_rightdead3"}} -./Games/DOOM/Assets/Materials/char_common.ogex:224:44 - Unknown word (leftdead) -- models_characters_common_leftdead3"}} -./Games/DOOM/Assets/Materials/char_common.ogex:236:44 - Unknown word (rightgreen) -- models_characters_common_rightgreen"}} -./Games/DOOM/Assets/Materials/char_common.ogex:240:44 - Unknown word (leftgreen) -- models_characters_common_leftgreen"}} -./Games/DOOM/Assets/Materials/char_common.ogex:244:44 - Unknown word (rightbrown) -- models_characters_common_rightbrown2"}} -./Games/DOOM/Assets/Materials/char_common.ogex:248:44 - Unknown word (leftbrown) -- models_characters_common_leftbrown2"}} -./Games/DOOM/Assets/Materials/char_common.ogex:25:44 - Unknown word (teethdead) -- models_characters_common_teethdead"}} -./Games/DOOM/Assets/Materials/char_common.ogex:260:44 - Unknown word (rightblue) -- models_characters_common_rightblue2"}} -./Games/DOOM/Assets/Materials/char_common.ogex:264:44 - Unknown word (leftblue) -- models_characters_common_leftblue2"}} -./Games/DOOM/Assets/Materials/char_common.ogex:31:44 - Unknown word (teethhead) -- models_characters_common_teethhead01"}} -./Games/DOOM/Assets/Materials/char_common.ogex:3:44 - Unknown word (rightpoppy) -- models_characters_common_rightpoppy"}} -./Games/DOOM/Assets/Materials/char_common.ogex:61:44 - Unknown word (teethpoppy) -- models_characters_common_teethpoppy"}} -./Games/DOOM/Assets/Materials/char_common.ogex:73:44 - Unknown word (teethplayer) -- models_characters_common_teethplayer"}} -./Games/DOOM/Assets/Materials/char_common.ogex:79:44 - Unknown word (teethbet) -- models_characters_common_teethbet"}} -./Games/DOOM/Assets/Materials/char_common.ogex:7:44 - Unknown word (leftpoppy) -- models_characters_common_leftpoppy"}} -./Games/DOOM/Assets/Materials/char_common.ogex:85:44 - Unknown word (teethswann) -- models_characters_common_teethswann"}} -./Games/DOOM/Assets/Materials/char_common.ogex:91:44 - Unknown word (teethsarge) -- models_characters_common_teethsarge"}} -./Games/DOOM/Assets/Materials/char_common.ogex:97:44 - Unknown word (teethsecurity) -- models_characters_common_teethsecurity"}} -./Games/DOOM/Assets/Materials/characters.ogex:101:54 - Unknown word (dsoldier) -- characters_male_npc_soldier_dsoldier"}} -./Games/DOOM/Assets/Materials/characters.ogex:163:53 - Unknown word (dmarine) -- characters_male_npc_marine_dmarine"}} -./Games/DOOM/Assets/Materials/characters.ogex:17:44 - Unknown word (playergoestohell) -- models_characters_player_playergoestohell"}} -./Games/DOOM/Assets/Materials/characters.ogex:189:55 - Unknown word (dgog) -- characters_male_npc_security_dgog"}} -./Games/DOOM/Assets/Materials/characters.ogex:21:44 - Unknown word (playerheaddead) -- models_characters_player_playerheaddead"}} -./Games/DOOM/Assets/Materials/characters.ogex:224:46 - Unknown word (dcampbell) -- characters_campbell_dcampbell"}} -./Games/DOOM/Assets/Materials/characters.ogex:239:43 - Unknown word (dswann) -- models_characters_swann_dswann"}} -./Games/DOOM/Assets/Materials/characters.ogex:278:51 - Unknown word (dsuit) -- characters_male_npc_suit_dsuit"}} -./Games/DOOM/Assets/Materials/characters.ogex:27:37 - Unknown word (swann) -- {"models_characters_swann_frame"}} -./Games/DOOM/Assets/Materials/characters.ogex:314:46 - Unknown word (labcoat) -- characters_male_npc_labcoat_labcoat"}} -./Games/DOOM/Assets/Materials/characters.ogex:320:54 - Unknown word (dlabcoat) -- characters_male_npc_labcoat_dlabcoat"}} -./Games/DOOM/Assets/Materials/characters.ogex:326:55 - Unknown word (djumpsuit) -- characters_male_npc_jumpsuit_djumpsuit"}} -./Games/DOOM/Assets/Materials/characters.ogex:33:54 - Unknown word (poppyfx) -- characters_female_npc_poppy_poppyfx3"}} -./Games/DOOM/Assets/Materials/characters.ogex:364:44 - Unknown word (bodyred) -- models_characters_player_bodyred"}} -./Games/DOOM/Assets/Materials/characters.ogex:370:44 - Unknown word (bodyblue) -- models_characters_player_bodyblue"}} -./Games/DOOM/Assets/Materials/characters.ogex:388:49 - Unknown word (invis) -- characters_player_arm2_invis"}} -./Games/DOOM/Assets/Materials/characters.ogex:392:44 - Unknown word (playerhead) -- models_characters_player_playerhead"}} -./Games/DOOM/Assets/Materials/characters.ogex:397:44 - Unknown word (coophead) -- models_characters_player_coophead"}} -./Games/DOOM/Assets/Materials/characters.ogex:402:44 - Unknown word (bodycin) -- models_characters_player_bodycin"}} -./Games/DOOM/Assets/Materials/characters.ogex:414:44 - Unknown word (bodyredcin) -- models_characters_player_bodyredcin"}} -./Games/DOOM/Assets/Materials/characters.ogex:420:44 - Unknown word (bodybluecin) -- models_characters_player_bodybluecin"}} -./Games/DOOM/Assets/Materials/characters.ogex:438:44 - Unknown word (playerheadcin) -- models_characters_player_playerheadcin"}} -./Games/DOOM/Assets/Materials/characters.ogex:458:26 - Unknown word (johnc) -- Name {string {"models_johnc_stest"}} -./Games/DOOM/Assets/Materials/characters.ogex:458:32 - Unknown word (stest) -- string {"models_johnc_stest"}} -./Games/DOOM/Assets/Materials/characters.ogex:465:44 - Unknown word (pwac) -- models_characters_sarge2_pwac"}} -./Games/DOOM/Assets/Materials/characters.ogex:486:44 - Unknown word (hsarge) -- models_characters_sarge2_hsarge"}} -./Games/DOOM/Assets/Materials/characters.ogex:500:47 - Unknown word (fhead) -- characters_scientist_fhead02_fhead02"}} -./Games/DOOM/Assets/Materials/characters.ogex:507:55 - Unknown word (fhair) -- characters_scientist_fhead01_fhair"}} -./Games/DOOM/Assets/Materials/characters.ogex:532:54 - Unknown word (dhead) -- characters_scientist_head03_dhead03"}} -./Games/DOOM/Assets/Materials/characters.ogex:545:54 - Unknown word (thair) -- characters_scientist_head01_thair"}} -./Games/DOOM/Assets/Materials/characters.ogex:573:54 - Unknown word (oldscihead) -- characters_scientist_head02_oldscihead02"}} -./Games/DOOM/Assets/Materials/characters.ogex:575:77 - Unknown word (scihead) -- characters_scientist_head02_scihead02_local"}} -./Games/DOOM/Assets/Materials/characters.ogex:596:44 - Unknown word (sarm) -- models_characters_sarge2_sarm"}} -./Games/DOOM/Assets/Materials/characters.ogex:604:73 - Unknown word (armorhi) -- characters_sarge2_armor_armorhi_local"}} -./Games/DOOM/Assets/Materials/characters.ogex:68:53 - Unknown word (dvisor) -- characters_male_npc_hazmat_dvisor"}} -./Games/DOOM/Assets/Materials/characters.ogex:72:53 - Unknown word (dhazmat) -- characters_male_npc_hazmat_dhazmat"}} -./Games/DOOM/Assets/Materials/characters.ogex:95:55 - Unknown word (dsecurity) -- characters_male_npc_security_dsecurity"}} -./Games/DOOM/Assets/Materials/decals.ogex:100:35 - Unknown word (websquare) -- string {"textures_decals_websquare"}} -./Games/DOOM/Assets/Materials/decals.ogex:1068:35 - Unknown word (yesno) -- string {"textures_decals_yesno"}} -./Games/DOOM/Assets/Materials/decals.ogex:106:35 - Unknown word (webcorner) -- string {"textures_decals_webcorner"}} -./Games/DOOM/Assets/Materials/decals.ogex:1073:35 - Unknown word (bloodyfilm) -- string {"textures_decals_bloodyfilm1"}} -./Games/DOOM/Assets/Materials/decals.ogex:1134:35 - Unknown word (candleglow) -- string {"textures_decals_candleglow"}} -./Games/DOOM/Assets/Materials/decals.ogex:1139:39 - Unknown word (wallmark) -- textures_decals_bfg_wallmark"}} -./Games/DOOM/Assets/Materials/decals.ogex:1149:35 - Unknown word (ceilvent) -- string {"textures_decals_ceilvent1"}} -./Games/DOOM/Assets/Materials/decals.ogex:1162:35 - Unknown word (mixom) -- string {"textures_decals_mixom1"}} -./Games/DOOM/Assets/Materials/decals.ogex:1172:35 - Unknown word (cpusign) -- string {"textures_decals_cpusign1"}} -./Games/DOOM/Assets/Materials/decals.ogex:1183:35 - Unknown word (uacosticker) -- string {"textures_decals_uacosticker"}} -./Games/DOOM/Assets/Materials/decals.ogex:1310:35 - Unknown word (sdirt) -- string {"textures_decals_sdirt1"}} -./Games/DOOM/Assets/Materials/decals.ogex:137:35 - Unknown word (bfgvision) -- string {"textures_decals_bfgvision"}} -./Games/DOOM/Assets/Materials/decals.ogex:1383:35 - Unknown word (uacdec) -- string {"textures_decals_uacdec2"}} -./Games/DOOM/Assets/Materials/decals.ogex:138:58 - Unknown word (bfgtunnel) -- string {"textures_editor_bfgtunnel"}} -./Games/DOOM/Assets/Materials/decals.ogex:142:35 - Unknown word (disposalarea) -- string {"textures_decals_disposalarea"}} -./Games/DOOM/Assets/Materials/decals.ogex:1442:35 - Unknown word (lightgrate) -- string {"textures_decals_lightgrate"}} -./Games/DOOM/Assets/Materials/decals.ogex:149:35 - Unknown word (ballburn) -- string {"textures_decals_ballburn_plasma"}} -./Games/DOOM/Assets/Materials/decals.ogex:201:35 - Unknown word (bullethurt) -- string {"textures_decals_bullethurt"}} -./Games/DOOM/Assets/Materials/decals.ogex:206:35 - Unknown word (chainsawh) -- string {"textures_decals_chainsawh02"}} -./Games/DOOM/Assets/Materials/decals.ogex:211:35 - Unknown word (bulleth) -- string {"textures_decals_bulleth02"}} -./Games/DOOM/Assets/Materials/decals.ogex:216:35 - Unknown word (testbulletglass) -- string {"textures_decals_testbulletglass1"}} -./Games/DOOM/Assets/Materials/decals.ogex:221:35 - Unknown word (pentagramfx) -- string {"textures_decals_pentagramfx"}} -./Games/DOOM/Assets/Materials/decals.ogex:236:35 - Unknown word (hurtmetal) -- string {"textures_decals_hurtmetal"}} -./Games/DOOM/Assets/Materials/decals.ogex:246:35 - Unknown word (stainwall) -- string {"textures_decals_stainwall"}} -./Games/DOOM/Assets/Materials/decals.ogex:251:35 - Unknown word (stainwallfade) -- string {"textures_decals_stainwallfade"}} -./Games/DOOM/Assets/Materials/decals.ogex:256:35 - Unknown word (stainwallred) -- string {"textures_decals_stainwallred"}} -./Games/DOOM/Assets/Materials/decals.ogex:25:35 - Unknown word (schmutz) -- string {"textures_decals_schmutz"}} -./Games/DOOM/Assets/Materials/decals.ogex:266:35 - Unknown word (stainwallfadered) -- string {"textures_decals_stainwallfadered"}} -./Games/DOOM/Assets/Materials/decals.ogex:30:35 - Unknown word (spawndecal) -- string {"textures_decals_spawndecal"}} -./Games/DOOM/Assets/Materials/decals.ogex:31:58 - Unknown word (dontuse) -- string {"textures_editor_dontuse"}} -./Games/DOOM/Assets/Materials/decals.ogex:332:35 - Unknown word (whitesquare) -- string {"textures_decals_whitesquare128"}} -./Games/DOOM/Assets/Materials/decals.ogex:338:35 - Unknown word (scannersquare) -- string {"textures_decals_scannersquare"}} -./Games/DOOM/Assets/Materials/decals.ogex:349:35 - Unknown word (glasscrack) -- string {"textures_decals_glasscrack2"}} -./Games/DOOM/Assets/Materials/decals.ogex:355:35 - Unknown word (bulletglass) -- string {"textures_decals_bulletglass2"}} -./Games/DOOM/Assets/Materials/decals.ogex:365:41 - Unknown word (stripecrn) -- textures_decals_floor_stripecrn"}} -./Games/DOOM/Assets/Materials/decals.ogex:371:41 - Unknown word (stripetrim) -- textures_decals_floor_stripetrim2"}} -./Games/DOOM/Assets/Materials/decals.ogex:397:42 - Unknown word (bwet) -- textures_decals_stain01bwet"}} -./Games/DOOM/Assets/Materials/decals.ogex:3:35 - Unknown word (bloodyfilmred) -- string {"textures_decals_bloodyfilmred"}} -./Games/DOOM/Assets/Materials/decals.ogex:422:35 - Unknown word (spanel) -- string {"textures_decals_spanel"}} -./Games/DOOM/Assets/Materials/decals.ogex:429:35 - Unknown word (pressurepanel) -- string {"textures_decals_pressurepanel2"}} -./Games/DOOM/Assets/Materials/decals.ogex:450:40 - Unknown word (tilecap) -- textures_decals_skid_tilecap2"}} -./Games/DOOM/Assets/Materials/decals.ogex:484:35 - Unknown word (floordiv) -- string {"textures_decals_floordiv"}} -./Games/DOOM/Assets/Materials/decals.ogex:4:58 - Unknown word (greystatica) -- string {"textures_decals_greystatica"}} -./Games/DOOM/Assets/Materials/decals.ogex:505:35 - Unknown word (achtung) -- string {"textures_decals_achtung"}} -./Games/DOOM/Assets/Materials/decals.ogex:50:35 - Unknown word (deadroach) -- string {"textures_decals_deadroach"}} -./Games/DOOM/Assets/Materials/decals.ogex:510:35 - Unknown word (pipeterm) -- string {"textures_decals_pipeterm"}} -./Games/DOOM/Assets/Materials/decals.ogex:531:35 - Unknown word (bcap) -- string {"textures_decals_bcap"}} -./Games/DOOM/Assets/Materials/decals.ogex:538:35 - Unknown word (bootprint) -- string {"textures_decals_bootprint01"}} -./Games/DOOM/Assets/Materials/decals.ogex:553:35 - Unknown word (handprint) -- string {"textures_decals_handprint02"}} -./Games/DOOM/Assets/Materials/decals.ogex:608:35 - Unknown word (bdrain) -- string {"textures_decals_bdrain"}} -./Games/DOOM/Assets/Materials/decals.ogex:615:35 - Unknown word (bathpanel) -- string {"textures_decals_bathpanel"}} -./Games/DOOM/Assets/Materials/decals.ogex:622:35 - Unknown word (sprinklercap) -- string {"textures_decals_sprinklercap"}} -./Games/DOOM/Assets/Materials/decals.ogex:629:35 - Unknown word (hivent) -- string {"textures_decals_hivent03"}} -./Games/DOOM/Assets/Materials/decals.ogex:673:60 - Unknown word (confinedwalkway) -- string {"textures_decals_confinedwalkway_b"}} -./Games/DOOM/Assets/Materials/decals.ogex:712:44 - Unknown word (pers) -- textures_decals_bio_auth_pers"}} -./Games/DOOM/Assets/Materials/decals.ogex:740:35 - Unknown word (compressedgas) -- string {"textures_decals_compressedgas"}} -./Games/DOOM/Assets/Materials/decals.ogex:747:35 - Unknown word (elevatorshaft) -- string {"textures_decals_elevatorshaft"}} -./Games/DOOM/Assets/Materials/decals.ogex:761:35 - Unknown word (movingmachine) -- string {"textures_decals_movingmachine"}} -./Games/DOOM/Assets/Materials/decals.ogex:775:35 - Unknown word (postnote) -- string {"textures_decals_postnote1"}} -./Games/DOOM/Assets/Materials/decals.ogex:77:35 - Unknown word (irblend) -- string {"textures_decals_irblend"}} -./Games/DOOM/Assets/Materials/decals.ogex:78:55 - Unknown word (xrayblend) -- string {"textures_sfx_xrayblend"}} -./Games/DOOM/Assets/Materials/decals.ogex:82:35 - Unknown word (webdangle) -- string {"textures_decals_webdangle"}} -./Games/DOOM/Assets/Materials/decals.ogex:847:35 - Unknown word (authorizedpersons) -- string {"textures_decals_authorizedpersons"}} -./Games/DOOM/Assets/Materials/decals.ogex:868:37 - Unknown word (fanvent) -- {"textures_decals_a_fanvent_fin"}} -./Games/DOOM/Assets/Materials/decals.ogex:88:35 - Unknown word (webstrand) -- string {"textures_decals_webstrand"}} -./Games/DOOM/Assets/Materials/decals.ogex:8:35 - Unknown word (telemars) -- string {"textures_decals_telemars"}} -./Games/DOOM/Assets/Materials/decals.ogex:94:35 - Unknown word (webtile) -- string {"textures_decals_webtile"}} -./Games/DOOM/Assets/Materials/default.ogex:4:58 - Unknown word (nodraw) -- string {"textures_common_nodraw"}} -./Games/DOOM/Assets/Materials/duffyTest.ogex:15:38 - Unknown word (blupaintedmetalcomp) -- "textures_base_wall_blupaintedmetalcomp"}} -./Games/DOOM/Assets/Materials/duffyTest.ogex:20:39 - Unknown word (bigroundfloor) -- textures_base_floor_bigroundfloor"}} -./Games/DOOM/Assets/Materials/duffyTest.ogex:21:62 - Unknown word (roundfloor) -- textures_base_floor_roundfloor1big"}} -./Games/DOOM/Assets/Materials/duffyTest.ogex:28:39 - Unknown word (smallroundfloor) -- textures_base_floor_smallroundfloor"}} -./Games/DOOM/Assets/Materials/duffyTest.ogex:3:26 - Unknown word (wlevel) -- Name {string {"lights_wlevel"}} -./Games/DOOM/Assets/Materials/duffyTest.ogex:8:55 - Unknown word (medtile) -- string {"textures_lab_medtile01_d"}} -./Games/DOOM/Assets/Materials/enpro.ogex:35:34 - Unknown word (encyl) -- string {"textures_enpro_encyl10_glow"}} -./Games/DOOM/Assets/Materials/gfx.ogex:7:28 - Unknown word (bigchars) -- Name {string {"textures_bigchars"}} -./Games/DOOM/Assets/Materials/glass.ogex:3:34 - Unknown word (breakyglass) -- string {"textures_glass_breakyglass1"}} -./Games/DOOM/Assets/Materials/guis.ogex:11:41 - Unknown word (scube) -- guis_assets_hud_icons_scube2w"}} -./Games/DOOM/Assets/Materials/guis.ogex:23:40 - Unknown word (textblur) -- guis_assets_marscity_textblur"}} -./Games/DOOM/Assets/Materials/guis.ogex:3:31 - Unknown word (marscity) -- string {"guis_assets_marscity_fullpath"}} -./Games/DOOM/Assets/Materials/guis.ogex:3:40 - Unknown word (fullpath) -- guis_assets_marscity_fullpath"}} -./Games/DOOM/Assets/Materials/guis.ogex:7:40 - Unknown word (fullline) -- guis_assets_marscity_fullline"}} -./Games/DOOM/Assets/Materials/hell.ogex:103:33 - Unknown word (dirtyboneyblend) -- string {"textures_hell_dirtyboneyblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:109:33 - Unknown word (dirtysharpyblend) -- string {"textures_hell_dirtysharpyblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:116:33 - Unknown word (lavaboneyblend) -- string {"textures_hell_lavaboneyblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:122:39 - Unknown word (hellhub) -- textures_hell_boney_hellhub"}} -./Games/DOOM/Assets/Materials/hell.ogex:127:33 - Unknown word (hhstairs) -- string {"textures_hell_hhstairs"}} -./Games/DOOM/Assets/Materials/hell.ogex:135:33 - Unknown word (hhconcrete) -- string {"textures_hell_hhconcrete"}} -./Games/DOOM/Assets/Materials/hell.ogex:151:33 - Unknown word (hhrubble) -- string {"textures_hell_hhrubble"}} -./Games/DOOM/Assets/Materials/hell.ogex:159:33 - Unknown word (hhbannister) -- string {"textures_hell_hhbannister"}} -./Games/DOOM/Assets/Materials/hell.ogex:167:33 - Unknown word (spinalcrap) -- string {"textures_hell_spinalcrap2"}} -./Games/DOOM/Assets/Materials/hell.ogex:16:33 - Unknown word (bartrim) -- string {"textures_hell_bartrim"}} -./Games/DOOM/Assets/Materials/hell.ogex:182:33 - Unknown word (hellbark) -- string {"textures_hell_hellbark"}} -./Games/DOOM/Assets/Materials/hell.ogex:190:33 - Unknown word (pentabase) -- string {"textures_hell_pentabase2"}} -./Games/DOOM/Assets/Materials/hell.ogex:211:33 - Unknown word (pentabloodtastic) -- string {"textures_hell_pentabloodtastic1"}} -./Games/DOOM/Assets/Materials/hell.ogex:216:33 - Unknown word (pentastic) -- string {"textures_hell_pentastic1_spectrum"}} -./Games/DOOM/Assets/Materials/hell.ogex:24:33 - Unknown word (tinnytrim) -- string {"textures_hell_tinnytrim"}} -./Games/DOOM/Assets/Materials/hell.ogex:314:33 - Unknown word (bloodcrackblend) -- string {"textures_hell_bloodcrackblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:32:33 - Unknown word (nuckletrim) -- string {"textures_hell_nuckletrim"}} -./Games/DOOM/Assets/Materials/hell.ogex:3:33 - Unknown word (lavascroll) -- string {"textures_hell_lavascroll_ns"}} -./Games/DOOM/Assets/Materials/hell.ogex:40:33 - Unknown word (pillarbase) -- string {"textures_hell_pillarbase"}} -./Games/DOOM/Assets/Materials/hell.ogex:437:33 - Unknown word (askin) -- string {"textures_hell_askin_02e"}} -./Games/DOOM/Assets/Materials/hell.ogex:48:33 - Unknown word (vpillar) -- string {"textures_hell_vpillar"}} -./Games/DOOM/Assets/Materials/hell.ogex:502:69 - Unknown word (jbump) -- textures_hell_hellbones_d07jbump"}} -./Games/DOOM/Assets/Materials/hell.ogex:524:33 - Unknown word (anustubescroll) -- string {"textures_hell_anustubescroll"}} -./Games/DOOM/Assets/Materials/hell.ogex:529:33 - Unknown word (anustubescrollblend) -- string {"textures_hell_anustubescrollblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:544:33 - Unknown word (hellanustube) -- string {"textures_hell_hellanustube2"}} -./Games/DOOM/Assets/Materials/hell.ogex:557:33 - Unknown word (warprockbblend) -- string {"textures_hell_warprockbblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:559:56 - Unknown word (warprockb) -- string {"textures_hell_warprockb_local"}} -./Games/DOOM/Assets/Materials/hell.ogex:560:56 - Unknown word (rockwall) -- string {"textures_hell_rockwall_local"}} -./Games/DOOM/Assets/Materials/hell.ogex:564:33 - Unknown word (rockbase) -- string {"textures_hell_rockbase"}} -./Games/DOOM/Assets/Materials/hell.ogex:56:33 - Unknown word (lavalanrockblend) -- string {"textures_hell_lavalanrockblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:588:33 - Unknown word (warprockc) -- string {"textures_hell_warprockc_d"}} -./Games/DOOM/Assets/Materials/hell.ogex:596:33 - Unknown word (lavatube) -- string {"textures_hell_lavatube"}} -./Games/DOOM/Assets/Materials/hell.ogex:602:33 - Unknown word (treeroots) -- string {"textures_hell_treeroots"}} -./Games/DOOM/Assets/Materials/hell.ogex:612:33 - Unknown word (treerootsgrey) -- string {"textures_hell_treerootsgrey"}} -./Games/DOOM/Assets/Materials/hell.ogex:62:33 - Unknown word (cbrick) -- string {"textures_hell_cbrick_single"}} -./Games/DOOM/Assets/Materials/hell.ogex:632:33 - Unknown word (wirestreerootsgrey) -- string {"textures_hell_wirestreerootsgrey_blend"}} -./Games/DOOM/Assets/Materials/hell.ogex:663:33 - Unknown word (burnedfly) -- string {"textures_hell_burnedfly"}} -./Games/DOOM/Assets/Materials/hell.ogex:673:33 - Unknown word (bacteriablend) -- string {"textures_hell_bacteriablend"}} -./Games/DOOM/Assets/Materials/hell.ogex:678:33 - Unknown word (burnedflyblend) -- string {"textures_hell_burnedflyblend"}} -./Games/DOOM/Assets/Materials/hell.ogex:683:33 - Unknown word (wrinklewall) -- string {"textures_hell_wrinklewall_tile"}} -./Games/DOOM/Assets/Materials/hell.ogex:688:45 - Unknown word (blendb) -- textures_hell_wrinklewall_blendb"}} -./Games/DOOM/Assets/Materials/hell.ogex:709:33 - Unknown word (slimefade) -- string {"textures_hell_slimefade"}} -./Games/DOOM/Assets/Materials/hell.ogex:70:33 - Unknown word (bustage) -- string {"textures_hell_bustage"}} -./Games/DOOM/Assets/Materials/hell.ogex:714:33 - Unknown word (dirtywater) -- string {"textures_hell_dirtywater"}} -./Games/DOOM/Assets/Materials/hell.ogex:719:33 - Unknown word (dirtywaterb) -- string {"textures_hell_dirtywaterb"}} -./Games/DOOM/Assets/Materials/hell.ogex:726:56 - Unknown word (greenrocks) -- string {"textures_hell_greenrocks_local"}} -./Games/DOOM/Assets/Materials/hell.ogex:759:33 - Unknown word (rockfloor) -- string {"textures_hell_rockfloor"}} -./Games/DOOM/Assets/Materials/hell.ogex:782:33 - Unknown word (emitfrompoly) -- string {"textures_hell_emitfrompoly_hellhole_bouldersmoke -./Games/DOOM/Assets/Materials/hell.ogex:782:55 - Unknown word (bouldersmoke) -- emitfrompoly_hellhole_bouldersmoke"}} -./Games/DOOM/Assets/Materials/hell.ogex:792:46 - Unknown word (smallersparks) -- textures_hell_emitfrompoly_smallersparks"}} -./Games/DOOM/Assets/Materials/hell.ogex:816:33 - Unknown word (spiderwall) -- string {"textures_hell_spiderwall"}} -./Games/DOOM/Assets/Materials/hell.ogex:823:33 - Unknown word (blackhorn) -- string {"textures_hell_blackhorn1"}} -./Games/DOOM/Assets/Materials/hell.ogex:831:33 - Unknown word (hornring) -- string {"textures_hell_hornring2"}} -./Games/DOOM/Assets/Materials/hell.ogex:837:33 - Unknown word (scowall) -- string {"textures_hell_scowall"}} -./Games/DOOM/Assets/Materials/hell.ogex:843:33 - Unknown word (avawall) -- string {"textures_hell_avawall"}} -./Games/DOOM/Assets/Materials/hell.ogex:855:33 - Unknown word (intest) -- string {"textures_hell_intest"}} -./Games/DOOM/Assets/Materials/hell.ogex:862:33 - Unknown word (ribwall) -- string {"textures_hell_ribwall"}} -./Games/DOOM/Assets/Materials/hell.ogex:869:43 - Unknown word (vertexglow) -- textures_hell_sharprock2vertexglow"}} -./Games/DOOM/Assets/Materials/hell.ogex:877:33 - Unknown word (leggoo) -- string {"textures_hell_leggoo"}} -./Games/DOOM/Assets/Materials/hell.ogex:87:61 - Unknown word (movenoshadow) -- "textures_hell_lava1movenoshadow"}} -./Games/DOOM/Assets/Materials/hell.ogex:8:33 - Unknown word (qfloor) -- string {"textures_hell_qfloor"}} -./Games/DOOM/Assets/Materials/hell.ogex:91:33 - Unknown word (lavasharpyblend) -- string {"textures_hell_lavasharpyblend2"}} -./Games/DOOM/Assets/Materials/hell.ogex:92:56 - Unknown word (sharprock) -- string {"textures_hell_sharprock2"}} -./Games/DOOM/Assets/Materials/hell.ogex:944:33 - Unknown word (bloodsharprock) -- string {"textures_hell_bloodsharprock2blend"}} -./Games/DOOM/Assets/Materials/invisible.ogex:103:35 - Unknown word (trigair) -- string {"textures_common_trigair"}} -./Games/DOOM/Assets/Materials/invisible.ogex:108:35 - Unknown word (trigentityname) -- string {"textures_common_trigentityname"}} -./Games/DOOM/Assets/Materials/invisible.ogex:118:35 - Unknown word (nodrop) -- string {"textures_common_nodrop"}} -./Games/DOOM/Assets/Materials/invisible.ogex:128:35 - Unknown word (trigflashlight) -- string {"textures_common_trigflashlight"}} -./Games/DOOM/Assets/Materials/invisible.ogex:133:40 - Unknown word (plusmovables) -- textures_common_clip_plusmovables"}} -./Games/DOOM/Assets/Materials/invisible.ogex:134:58 - Unknown word (clipplus) -- string {"textures_common_clipplus"}} -./Games/DOOM/Assets/Materials/invisible.ogex:159:58 - Unknown word (ikclip) -- string {"textures_common_ikclip"}} -./Games/DOOM/Assets/Materials/invisible.ogex:173:35 - Unknown word (noimpact) -- string {"textures_common_noimpact"}} -./Games/DOOM/Assets/Materials/invisible.ogex:203:35 - Unknown word (moveableclipmodel) -- string {"textures_common_moveableclipmodel"}} -./Games/DOOM/Assets/Materials/invisible.ogex:23:35 - Unknown word (visportal) -- string {"textures_editor_visportal"}} -./Games/DOOM/Assets/Materials/invisible.ogex:28:35 - Unknown word (aassolid) -- string {"textures_editor_aassolid"}} -./Games/DOOM/Assets/Materials/invisible.ogex:33:35 - Unknown word (aasobstacle) -- string {"textures_editor_aasobstacle"}} -./Games/DOOM/Assets/Materials/invisible.ogex:48:35 - Unknown word (nodrawsolid) -- string {"textures_common_nodrawsolid"}} -./Games/DOOM/Assets/Materials/invisible.ogex:68:35 - Unknown word (trigmulti) -- string {"textures_common_trigmulti"}} -./Games/DOOM/Assets/Materials/invisible.ogex:73:35 - Unknown word (trigonce) -- string {"textures_common_trigonce"}} -./Games/DOOM/Assets/Materials/invisible.ogex:78:35 - Unknown word (trigtimer) -- string {"textures_common_trigtimer"}} -./Games/DOOM/Assets/Materials/invisible.ogex:83:35 - Unknown word (trigrelay) -- string {"textures_common_trigrelay"}} -./Games/DOOM/Assets/Materials/invisible.ogex:88:35 - Unknown word (trighurt) -- string {"textures_common_trighurt"}} -./Games/DOOM/Assets/Materials/invisible.ogex:93:35 - Unknown word (trigfade) -- string {"textures_common_trigfade"}} -./Games/DOOM/Assets/Materials/invisible.ogex:98:35 - Unknown word (triggui) -- string {"textures_common_triggui"}} -./Games/DOOM/Assets/Materials/items.ogex:128:32 - Unknown word (aircannister) -- string {"models_items_aircannister_aircannister"}} -./Games/DOOM/Assets/Materials/items.ogex:167:32 - Unknown word (dufflebag) -- string {"models_items_dufflebag_dufflebag"}} -./Games/DOOM/Assets/Materials/items.ogex:234:40 - Unknown word (lanternflare) -- models_items_lantern_lanternflare"}} -./Games/DOOM/Assets/Materials/items.ogex:238:40 - Unknown word (lanternglow) -- models_items_lantern_lanternglow"}} -./Games/DOOM/Assets/Materials/items.ogex:242:40 - Unknown word (lanternworld) -- models_items_lantern_lanternworld"}} -./Games/DOOM/Assets/Materials/items.ogex:249:32 - Unknown word (medkit) -- string {"models_items_medkit_medkit_large"}} -./Games/DOOM/Assets/Materials/items.ogex:263:39 - Unknown word (medlight) -- models_items_medkit_medlight"}} -./Games/DOOM/Assets/Materials/items.ogex:288:36 - Unknown word (redlight) -- string {"models_items_pda_redlight"}} -./Games/DOOM/Assets/Materials/items.ogex:313:41 - Unknown word (adrenalinfx) -- models_items_powerups_adrenalinfx"}} -./Games/DOOM/Assets/Materials/items.ogex:342:41 - Unknown word (berserkerflame) -- models_items_powerups_berserkerflame1"}} -./Games/DOOM/Assets/Materials/items.ogex:346:41 - Unknown word (berserkerfx) -- models_items_powerups_berserkerfx"}} -./Games/DOOM/Assets/Materials/items.ogex:350:41 - Unknown word (blite) -- models_items_powerups_blite1"}} -./Games/DOOM/Assets/Materials/items.ogex:383:41 - Unknown word (invisbrain) -- models_items_powerups_invisbrain"}} -./Games/DOOM/Assets/Materials/items.ogex:388:41 - Unknown word (megasphere) -- models_items_powerups_megasphere"}} -./Games/DOOM/Assets/Materials/jerry.ogex:27:26 - Unknown word (lightgratelight) -- Name {string {"lights_lightgratelight2_snd"}} -./Games/DOOM/Assets/Materials/kentest.ogex:103:32 - Unknown word (roqtest) -- string {"textures_sfx_roqtest"}} -./Games/DOOM/Assets/Materials/kentest.ogex:13:35 - Unknown word (oldfilm) -- string {"textures_decals_oldfilm1"}} -./Games/DOOM/Assets/Materials/kentest.ogex:162:38 - Unknown word (blooddrop) -- "textures_particles_blooddrop3"}} -./Games/DOOM/Assets/Materials/kentest.ogex:171:38 - Unknown word (spawnarc) -- "textures_particles_spawnarc4"}} -./Games/DOOM/Assets/Materials/kentest.ogex:197:32 - Unknown word (shatterglass) -- string {"textures_sfx_shatterglass01_fx1"}} -./Games/DOOM/Assets/Materials/kentest.ogex:28:35 - Unknown word (statica) -- string {"textures_decals_statica"}} -./Games/DOOM/Assets/Materials/kentest.ogex:38:35 - Unknown word (staticablend) -- string {"textures_decals_staticablend"}} -./Games/DOOM/Assets/Materials/kentest.ogex:3:35 - Unknown word (bluestatica) -- string {"textures_decals_bluestatica2x"}} -./Games/DOOM/Assets/Materials/kentest.ogex:43:38 - Unknown word (barrelpoof) -- "textures_particles_barrelpoof_sort"}} -./Games/DOOM/Assets/Materials/kentest.ogex:55:28 - Unknown word (ktest) -- Name {string {"textures_ktest_yellow_test"}} -./Games/DOOM/Assets/Materials/kentest.ogex:63:35 - Unknown word (gseeker) -- string {"models_monsters_gseeker_gwhizz"}} -./Games/DOOM/Assets/Materials/kentest.ogex:63:43 - Unknown word (gwhizz) -- models_monsters_gseeker_gwhizz"}} -./Games/DOOM/Assets/Materials/kentest.ogex:85:49 - Unknown word (cyberzoom) -- weapons_rocketlauncher_cyberzoom"}} -./Games/DOOM/Assets/Materials/kentest.ogex:89:41 - Unknown word (newtrite) -- models_monsters_trite_newtrite2"}} -./Games/DOOM/Assets/Materials/ktest.ogex:11:34 - Unknown word (concretetest) -- string {"textures_ktest_concretetest"}} -./Games/DOOM/Assets/Materials/ktest.ogex:19:34 - Unknown word (dirtmetal) -- string {"textures_ktest_dirtmetal"}} -./Games/DOOM/Assets/Materials/ktest.ogex:27:34 - Unknown word (enginevent) -- string {"textures_ktest_enginevent"}} -./Games/DOOM/Assets/Materials/ktest.ogex:35:34 - Unknown word (metalvent) -- string {"textures_ktest_metalvent"}} -./Games/DOOM/Assets/Materials/ktest.ogex:3:34 - Unknown word (bluemet) -- string {"textures_ktest_bluemet"}} -./Games/DOOM/Assets/Materials/ktest.ogex:43:34 - Unknown word (techpuzzle) -- string {"textures_ktest_techpuzzle2"}} -./Games/DOOM/Assets/Materials/lab.ogex:26:32 - Unknown word (noteboard) -- string {"textures_lab_noteboard1_d"}} -./Games/DOOM/Assets/Materials/lab.ogex:33:32 - Unknown word (whiteroof) -- string {"textures_lab_whiteroof_d"}} -./Games/DOOM/Assets/Materials/lab.ogex:3:32 - Unknown word (labwall) -- string {"textures_lab_labwall1c2"}} -./Games/DOOM/Assets/Materials/lab.ogex:5:56 - Unknown word (labtex) -- string {"models_seneca_labtex_labwall1c_local"}} -./Games/DOOM/Assets/Materials/lights.ogex:11:26 - Unknown word (squareblast) -- Name {string {"lights_squareblast"}} -./Games/DOOM/Assets/Materials/lights.ogex:143:36 - Unknown word (parmsndflicker) -- string {"lights_biground1_parmsndflicker"}} -./Games/DOOM/Assets/Materials/lights.ogex:155:36 - Unknown word (blinky) -- string {"lights_grate8sqr_blinky"}} -./Games/DOOM/Assets/Materials/lights.ogex:167:26 - Unknown word (cavsolarlight) -- Name {string {"lights_cavsolarlight"}} -./Games/DOOM/Assets/Materials/lights.ogex:171:26 - Unknown word (hellgate) -- Name {string {"lights_hellgate1_colorme"}} -./Games/DOOM/Assets/Materials/lights.ogex:171:36 - Unknown word (colorme) -- string {"lights_hellgate1_colorme"}} -./Games/DOOM/Assets/Materials/lights.ogex:179:26 - Unknown word (vivlight) -- Name {string {"lights_vivlight"}} -./Games/DOOM/Assets/Materials/lights.ogex:195:26 - Unknown word (rred) -- Name {string {"lights_rred"}} -./Games/DOOM/Assets/Materials/lights.ogex:204:26 - Unknown word (strobevent) -- Name {string {"lights_strobevent01"}} -./Games/DOOM/Assets/Materials/lights.ogex:208:26 - Unknown word (impflash) -- Name {string {"lights_impflash"}} -./Games/DOOM/Assets/Materials/lights.ogex:212:26 - Unknown word (spectrumspawn) -- Name {string {"lights_spectrumspawn30"}} -./Games/DOOM/Assets/Materials/lights.ogex:220:26 - Unknown word (spawnflash) -- Name {string {"lights_spawnflash"}} -./Games/DOOM/Assets/Materials/lights.ogex:224:26 - Unknown word (baronflash) -- Name {string {"lights_baronflash"}} -./Games/DOOM/Assets/Materials/lights.ogex:232:26 - Unknown word (desertambientlight) -- Name {string {"lights_desertambientlight"}} -./Games/DOOM/Assets/Materials/lights.ogex:236:26 - Unknown word (desertlight) -- Name {string {"lights_desertlight2"}} -./Games/DOOM/Assets/Materials/lights.ogex:23:26 - Unknown word (barrelexplode) -- Name {string {"lights_barrelexplode"}} -./Games/DOOM/Assets/Materials/lights.ogex:256:26 - Unknown word (qcfloorvent) -- Name {string {"lights_qcfloorvent01x"}} -./Games/DOOM/Assets/Materials/lights.ogex:272:26 - Unknown word (killtest) -- Name {string {"lights_killtest"}} -./Games/DOOM/Assets/Materials/lights.ogex:27:26 - Unknown word (redglow) -- Name {string {"lights_redglow"}} -./Games/DOOM/Assets/Materials/lights.ogex:280:26 - Unknown word (fanlightgrate) -- Name {string {"lights_fanlightgrateSC"}} -./Games/DOOM/Assets/Materials/lights.ogex:284:26 - Unknown word (fanblade) -- Name {string {"lights_fanblade3"}} -./Games/DOOM/Assets/Materials/lights.ogex:300:33 - Unknown word (brokenneon) -- string {"lights_square_brokenneon2"}} -./Games/DOOM/Assets/Materials/lights.ogex:31:26 - Unknown word (roundfire) -- Name {string {"lights_roundfire2"}} -./Games/DOOM/Assets/Materials/lights.ogex:35:26 - Unknown word (dropship) -- Name {string {"lights_dropship"}} -./Games/DOOM/Assets/Materials/lights.ogex:364:26 - Unknown word (xblamplight) -- Name {string {"lights_xblamplight_cv"}} -./Games/DOOM/Assets/Materials/lights.ogex:368:26 - Unknown word (duolight) -- Name {string {"lights_duolight02_cv"}} -./Games/DOOM/Assets/Materials/lights.ogex:372:26 - Unknown word (bspot) -- Name {string {"lights_bspot01_cv"}} -./Games/DOOM/Assets/Materials/lights.ogex:376:26 - Unknown word (xbspot) -- Name {string {"lights_xbspot01_cv"}} -./Games/DOOM/Assets/Materials/lights.ogex:396:33 - Unknown word (dblbright) -- string {"lights_spot01_dblbright"}} -./Games/DOOM/Assets/Materials/lights.ogex:3:39 - Unknown word (nofall) -- lights_ambientLight_nofall"}} -./Games/DOOM/Assets/Materials/lights.ogex:424:26 - Unknown word (blamplighte) -- Name {string {"lights_blamplighte3"}} -./Games/DOOM/Assets/Materials/lights.ogex:428:26 - Unknown word (squarelight) -- Name {string {"lights_squarelight1a"}} -./Games/DOOM/Assets/Materials/lights.ogex:432:26 - Unknown word (brucedemo) -- Name {string {"lights_brucedemo2"}} -./Games/DOOM/Assets/Materials/lights.ogex:456:26 - Unknown word (twopass) -- Name {string {"lights_twopass"}} -./Games/DOOM/Assets/Materials/lights.ogex:488:26 - Unknown word (rspot) -- Name {string {"lights_rspot01drk"}} -./Games/DOOM/Assets/Materials/lights.ogex:516:26 - Unknown word (xfalloff) -- Name {string {"lights_xfalloff"}} -./Games/DOOM/Assets/Materials/lights.ogex:51:26 - Unknown word (cloudscroll) -- Name {string {"lights_cloudscroll"}} -./Games/DOOM/Assets/Materials/lights.ogex:524:26 - Unknown word (malsrotated) -- Name {string {"lights_malsrotatedLight"}} -./Games/DOOM/Assets/Materials/lights.ogex:536:26 - Unknown word (duffysquarelight) -- Name {string {"lights_duffysquarelight"}} -./Games/DOOM/Assets/Materials/lights.ogex:540:26 - Unknown word (xianspecial) -- Name {string {"lights_xianspecial"}} -./Games/DOOM/Assets/Materials/lights.ogex:576:33 - Unknown word (decomlight) -- string {"lights_square_decomlight1"}} -./Games/DOOM/Assets/Materials/lights.ogex:588:26 - Unknown word (squaresihlight) -- Name {string {"lights_squaresihlight_snd"}} -./Games/DOOM/Assets/Materials/lights.ogex:628:26 - Unknown word (fragchamber) -- Name {string {"lights_fragchamber_fadeLight1"}} -./Games/DOOM/Assets/Materials/lights.ogex:660:33 - Unknown word (builduplight) -- string {"lights_square_builduplight_hold"}} -./Games/DOOM/Assets/Materials/lights.ogex:684:26 - Unknown word (swinglight) -- Name {string {"lights_swinglight_breakable_off_1"}} -./Games/DOOM/Assets/Materials/lights.ogex:692:26 - Unknown word (impflyflash) -- Name {string {"lights_impflyflash"}} -./Games/DOOM/Assets/Materials/lights.ogex:716:43 - Unknown word (noflicker) -- lights_squarelight1_snd_noflicker"}} -./Games/DOOM/Assets/Materials/lights.ogex:7:26 - Unknown word (meatlight) -- Name {string {"lights_meatlight"}} -./Games/DOOM/Assets/Materials/lights.ogex:91:26 - Unknown word (plasmaglow) -- Name {string {"lights_plasmaglow"}} -./Games/DOOM/Assets/Materials/lights.ogex:95:26 - Unknown word (sentrylight) -- Name {string {"lights_sentrylight"}} -./Games/DOOM/Assets/Materials/mal.ogex:84:33 - Unknown word (rockblend) -- string {"textures_rock_rockblend"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1016:43 - Unknown word (recycledoor) -- models_mapobjects_doors_recycledoor2_recycdoor2lf"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1016:56 - Unknown word (recycdoor) -- mapobjects_doors_recycledoor2_recycdoor2lf"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1055:43 - Unknown word (smalldoorblue) -- models_mapobjects_doors_smalldoorblue_light"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1065:43 - Unknown word (techdoor) -- models_mapobjects_doors_techdoor1_sotechdr1frame"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1065:53 - Unknown word (sotechdr) -- mapobjects_doors_techdoor1_sotechdr1frame"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1067:76 - Unknown word (techdr) -- mapobjects_doors_techdoor1_techdr1frame_local"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:109:56 - Unknown word (nodecal) -- mapobjects_base_chairs_chair2_nodecal"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1233:64 - Unknown word (reddirt) -- techdoor2_techdr2lft_reddirt"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1240:46 - Unknown word (dbeam) -- mapobjects_dropship_dbeam1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1262:55 - Unknown word (stickerns) -- mapobjects_dropship_dropship_stickerns"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1267:46 - Unknown word (dropshipfx) -- mapobjects_dropship_dropshipfx"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1271:46 - Unknown word (dropshipglass) -- mapobjects_dropship_dropshipglass"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1272:55 - Unknown word (paneglass) -- string {"textures_sfx_paneglass1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1278:46 - Unknown word (dropshipglassns) -- mapobjects_dropship_dropshipglassns"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1284:46 - Unknown word (dropshipns) -- mapobjects_dropship_dropshipns"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:130:49 - Unknown word (normchair) -- mapobjects_base_chairs_normchair"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:137:47 - Unknown word (emerlight) -- mapobjects_base_misc_emerlight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1396:43 - Unknown word (enproplasmatube) -- models_mapobjects_enpro_enproplasmatube"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1404:43 - Unknown word (enproplasmatubeburner) -- models_mapobjects_enpro_enproplasmatubeburner"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1409:43 - Unknown word (enproplasmatubeglass) -- models_mapobjects_enpro_enproplasmatubeglass"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1416:43 - Unknown word (enporplasmatubelight) -- models_mapobjects_enpro_enporplasmatubelight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1420:43 - Unknown word (enprotube) -- models_mapobjects_enpro_enprotube_ejector1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1436:37 - Unknown word (filecabinet) -- {"models_mapobjects_filecabinet1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1443:46 - Unknown word (storagecloset) -- mapobjects_filler_a_storagecloset_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1457:44 - Unknown word (burgereat) -- models_mapobjects_filler_burgereat"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1486:44 - Unknown word (foamcup) -- models_mapobjects_filler_foamcup"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1492:44 - Unknown word (ktable) -- models_mapobjects_filler_ktable"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1506:44 - Unknown word (lunchbag) -- models_mapobjects_filler_lunchbag"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:150:47 - Unknown word (fireext) -- mapobjects_base_misc_fireext"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1514:44 - Unknown word (lunchbaggrant) -- models_mapobjects_filler_lunchbaggrant"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1551:44 - Unknown word (monkeywrench) -- models_mapobjects_filler_monkeywrench"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1557:44 - Unknown word (toolchest) -- models_mapobjects_filler_toolchest"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:157:43 - Unknown word (metalbox) -- models_mapobjects_boxes_metalbox1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1602:44 - Unknown word (snackmachine) -- models_mapobjects_filler_snackmachine"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1617:44 - Unknown word (sodamachine) -- models_mapobjects_filler_sodamachine"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1632:44 - Unknown word (sodamachinesq) -- models_mapobjects_filler_sodamachinesq"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1647:44 - Unknown word (tbox) -- models_mapobjects_filler_tbox1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1698:67 - Unknown word (superpoopy) -- models_mapobjects_filler_superpoopy"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1731:44 - Unknown word (grillblood) -- models_mapobjects_fridge2grillblood"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:178:44 - Unknown word (camlight) -- models_mapobjects_camera_camlight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:17:45 - Unknown word (airlockdoorgui) -- models_mapobjects_airlock_airlockdoorgui"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1811:49 - Unknown word (pbarrel) -- mapobjects_fuel_barrel_pbarrel"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1818:37 - Unknown word (guiobjects) -- {"models_mapobjects_guiobjects_alphalabcon_alphalabcon -./Games/DOOM/Assets/Materials/mapobjects.ogex:1818:48 - Unknown word (alphalabcon) -- mapobjects_guiobjects_alphalabcon_alphalabcon"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1825:48 - Unknown word (flatmonitor) -- mapobjects_guiobjects_flatmonitor_flatmonitor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:182:37 - Unknown word (cannister) -- {"models_mapobjects_cannister_cannister"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1833:51 - Unknown word (constand) -- mapobjects_guiobjects_mc_constand_mc_constand"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1841:48 - Unknown word (recconpanel) -- mapobjects_guiobjects_recconpanel1_recconpanel1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1855:48 - Unknown word (techdrpanel) -- mapobjects_guiobjects_techdrpanel1_techdrpanel1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1876:47 - Unknown word (healthguidirty) -- mapobjects_healthgui_healthguidirty"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1887:50 - Unknown word (labimp) -- mapobjects_hell_delta2b_labimp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1894:50 - Unknown word (labimpskin) -- mapobjects_hell_delta2b_labimpskin"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:189:49 - Unknown word (craneback) -- mapobjects_caves_crane_craneback"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1901:49 - Unknown word (doora) -- mapobjects_hell_delta5_doora_eyeskin_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1901:55 - Unknown word (eyeskin) -- mapobjects_hell_delta5_doora_eyeskin_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1908:49 - Unknown word (doorb) -- mapobjects_hell_delta5_doorb_hornskin"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1908:55 - Unknown word (hornskin) -- mapobjects_hell_delta5_doorb_hornskin"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1915:42 - Unknown word (evilmeat) -- models_mapobjects_hell_evilmeat_evilmeat1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1929:42 - Unknown word (hflame) -- models_mapobjects_hell_hflame"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1945:42 - Unknown word (mancroom) -- models_mapobjects_hell_mancroom_hellarchbum"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1945:51 - Unknown word (hellarchbum) -- mapobjects_hell_mancroom_hellarchbum"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1953:51 - Unknown word (hellarchtop) -- mapobjects_hell_mancroom_hellarchtop"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1961:51 - Unknown word (mancskull) -- mapobjects_hell_mancroom_mancskull"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1968:51 - Unknown word (oldskull) -- mapobjects_hell_mancroom_oldskull"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:196:49 - Unknown word (cranecab) -- mapobjects_caves_crane_cranecab"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:1975:48 - Unknown word (archviletemple) -- mapobjects_hell_Site3_archviletemple_candle_a"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2011:48 - Unknown word (stoneroom) -- mapobjects_hell_Site3_stoneroom_imhorny_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2011:58 - Unknown word (imhorny) -- hell_Site3_stoneroom_imhorny_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2039:42 - Unknown word (tallroom) -- models_mapobjects_hell_tallroom_tooth"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:203:49 - Unknown word (craneguard) -- mapobjects_caves_crane_craneguard"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2054:50 - Unknown word (jethroskull) -- mapobjects_hell_torches_jethroskull"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2072:50 - Unknown word (torsoflame) -- mapobjects_hell_torches_torsoflame"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2076:37 - Unknown word (hellarch) -- {"models_mapobjects_hellarch2_hellarch2"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2083:46 - Unknown word (archdeco) -- mapobjects_hellhole_archdeco"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2091:55 - Unknown word (archtop) -- mapobjects_hellhole_hellhole_archtop"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2107:55 - Unknown word (pillarcap) -- mapobjects_hellhole_hellhole_pillarcap"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:210:49 - Unknown word (cranemast) -- mapobjects_caves_crane_cranemast"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2115:55 - Unknown word (pillarstrap) -- mapobjects_hellhole_hellhole_pillarstrap"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2123:55 - Unknown word (sarcoph) -- mapobjects_hellhole_hellhole_sarcoph"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2131:37 - Unknown word (hellhorn) -- {"models_mapobjects_hellhorn_hellhorn"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2144:37 - Unknown word (hellskulls) -- {"models_mapobjects_hellskulls_hornskull1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2144:48 - Unknown word (hornskull) -- mapobjects_hellskulls_hornskull1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2150:43 - Unknown word (infokiosk) -- models_mapobjects_kiosk_infokiosk2"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2161:41 - Unknown word (alphaarm) -- models_mapobjects_lab_alphaarm_alphaarm"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2168:41 - Unknown word (blaptop) -- models_mapobjects_lab_blaptop_blaptop"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:217:43 - Unknown word (digtools) -- models_mapobjects_caves_digtools_digtools"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2196:41 - Unknown word (cscope) -- models_mapobjects_lab_cscope_cscopearm"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2196:48 - Unknown word (cscopearm) -- mapobjects_lab_cscope_cscopearm"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2203:48 - Unknown word (cscopeback) -- mapobjects_lab_cscope_cscopeback"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2210:48 - Unknown word (cscopebase) -- mapobjects_lab_cscope_cscopebase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2217:48 - Unknown word (cscopehand) -- mapobjects_lab_cscope_cscopehand1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2231:48 - Unknown word (cscopepivot) -- mapobjects_lab_cscope_cscopepivot"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2238:48 - Unknown word (cscopeshoulder) -- mapobjects_lab_cscope_cscopeshoulder"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2245:48 - Unknown word (cscopetop) -- mapobjects_lab_cscope_cscopetop"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2259:41 - Unknown word (destab) -- models_mapobjects_lab_destab_destabarrel"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2259:48 - Unknown word (destabarrel) -- mapobjects_lab_destab_destabarrel"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2266:48 - Unknown word (destabase) -- mapobjects_lab_destab_destabase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2273:48 - Unknown word (destabmain) -- mapobjects_lab_destab_destabmain"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2280:48 - Unknown word (epdbell) -- mapobjects_lab_destab_epdbell"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2287:48 - Unknown word (shaftcap) -- mapobjects_lab_destab_shaftcap"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2308:52 - Unknown word (diamondboxtex) -- mapobjects_lab_diamondbox_diamondboxtex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:231:44 - Unknown word (kitchenchair) -- models_mapobjects_chairs_kitchenchair_kitchenchair"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2329:49 - Unknown word (dividertex) -- mapobjects_lab_divider_dividertex3"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2335:41 - Unknown word (electromic) -- models_mapobjects_lab_electromic_electromic"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2363:41 - Unknown word (hydrocon) -- models_mapobjects_lab_hydrocon_hydrocon"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2370:50 - Unknown word (hydroconplug) -- mapobjects_lab_hydrocon_hydroconplug"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2377:50 - Unknown word (hydroconring) -- mapobjects_lab_hydrocon_hydroconring"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:237:41 - Unknown word (callstation) -- models_mapobjects_com_callstation_callstationbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:237:53 - Unknown word (callstationbase) -- mapobjects_com_callstation_callstationbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2398:41 - Unknown word (loadingplatform) -- models_mapobjects_lab_loadingplatform_loadingplatformtex" -./Games/DOOM/Assets/Materials/mapobjects.ogex:2398:57 - Unknown word (loadingplatformtex) -- lab_loadingplatform_loadingplatformtex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2405:41 - Unknown word (mfscomp) -- models_mapobjects_lab_mfscomp_mfschamber"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2405:49 - Unknown word (mfschamber) -- mapobjects_lab_mfscomp_mfschamber"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2412:49 - Unknown word (mfsclamp) -- mapobjects_lab_mfscomp_mfsclamp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2419:49 - Unknown word (mfscompbase) -- mapobjects_lab_mfscomp_mfscompbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2426:49 - Unknown word (mfscompcell) -- mapobjects_lab_mfscomp_mfscompcell"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2433:49 - Unknown word (mfscompmain) -- mapobjects_lab_mfscomp_mfscompmain"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2442:76 - Unknown word (microscopeblack) -- mapobjects_lab_microscope_microscopeblack_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2447:41 - Unknown word (newfridge) -- models_mapobjects_lab_newfridge_newfridge"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:244:53 - Unknown word (callstationrails) -- mapobjects_com_callstation_callstationrails"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2454:41 - Unknown word (plasticbin) -- models_mapobjects_lab_plasticbin_plasticbin"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2461:41 - Unknown word (plasticbinmini) -- models_mapobjects_lab_plasticbinmini_plasticbinmini"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2468:41 - Unknown word (plasticjar) -- models_mapobjects_lab_plasticjar1_plasticjar1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:24:45 - Unknown word (airlockhall) -- models_mapobjects_airlock_airlockhall"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:251:41 - Unknown word (elevguistand) -- models_mapobjects_com_elevguistand_elevguistand"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2531:41 - Unknown word (roboarm) -- models_mapobjects_lab_roboarm1_roboarm1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2552:41 - Unknown word (spigotcan) -- models_mapobjects_lab_spigotcan_spigotcan"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2566:43 - Unknown word (desklamp) -- models_mapobjects_lamps_desklamp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2573:44 - Unknown word (cagelight) -- models_mapobjects_lights_cagelight_cagelight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2581:44 - Unknown word (doublegood) -- models_mapobjects_lights_doublegood_doublegood"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2608:37 - Unknown word (loadtrans) -- {"models_mapobjects_loadtrans_loadtransbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2608:47 - Unknown word (loadtransbase) -- mapobjects_loadtrans_loadtransbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2615:47 - Unknown word (loadtranscab) -- mapobjects_loadtrans_loadtranscab"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2622:47 - Unknown word (loadtranscorners) -- mapobjects_loadtrans_loadtranscorners"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2630:47 - Unknown word (loadtransdoor) -- mapobjects_loadtrans_loadtransdoor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2638:37 - Unknown word (machineroom) -- {"models_mapobjects_machineroom_capsule"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2645:53 - Unknown word (britacase) -- mapobjects_machineroom_mac_britacase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2652:53 - Unknown word (britapivot) -- mapobjects_machineroom_mac_britapivot"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2666:49 - Unknown word (machineclaw) -- mapobjects_machineroom_machineclaw1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2687:49 - Unknown word (railpiece) -- mapobjects_machineroom_railpiece"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2694:43 - Unknown word (bioscanner) -- models_mapobjects_mcity_bioscanner_bioscanner"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2701:54 - Unknown word (bioscannereye) -- mapobjects_mcity_bioscanner_bioscannereye"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2708:43 - Unknown word (deskcomp) -- models_mapobjects_mcity_deskcomp_deskcomparm1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2708:52 - Unknown word (deskcomparm) -- mapobjects_mcity_deskcomp_deskcomparm1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2715:52 - Unknown word (deskcompbase) -- mapobjects_mcity_deskcomp_deskcompbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2722:52 - Unknown word (deskcompscreen) -- mapobjects_mcity_deskcomp_deskcompscreen"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2729:55 - Unknown word (underarmarm) -- mapobjects_mcity_mc_underarm_underarmarm"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2736:55 - Unknown word (underarmbase) -- mapobjects_mcity_mc_underarm_underarmbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:273:41 - Unknown word (platguistand) -- models_mapobjects_com_platguistand_platguistand"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2743:55 - Unknown word (underarmfingers) -- mapobjects_mcity_mc_underarm_underarmfingers"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2750:55 - Unknown word (underarmhand) -- mapobjects_mcity_mc_underarm_underarmhand"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2771:48 - Unknown word (hangingmonitorpiece) -- mapobjects_monitors_a_hangingmonitorpiece"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2783:46 - Unknown word (controlmonitor) -- mapobjects_monitors_controlmonitor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2803:46 - Unknown word (hangingmonitorscreen) -- mapobjects_monitors_hangingmonitorscreen"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2807:44 - Unknown word (mlight) -- models_mapobjects_morgue_mlight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:280:47 - Unknown word (snailbody) -- mapobjects_com_snail_snailbody"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2828:37 - Unknown word (radiogoop) -- {"models_mapobjects_radiogoop_nukerock_"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2828:47 - Unknown word (nukerock) -- mapobjects_radiogoop_nukerock_"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2836:45 - Unknown word (ecage) -- models_mapobjects_recycle_ecage1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2843:49 - Unknown word (armhose) -- mapobjects_recycle_rec1armhose"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2850:49 - Unknown word (bpump) -- mapobjects_recycle_rec1bpump"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2857:45 - Unknown word (recyclight) -- models_mapobjects_recycle_recyclight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2864:45 - Unknown word (goovent) -- models_mapobjects_recycle_goovent_goovent"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2871:45 - Unknown word (groovetank) -- models_mapobjects_recycle_groovetank_groovetank"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2878:45 - Unknown word (pipetank) -- models_mapobjects_recycle_pipetank_pipetank"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:287:47 - Unknown word (snailclawfinger) -- mapobjects_com_snail_snailclawfinger"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2885:50 - Unknown word (pumparm) -- mapobjects_recycle_pump_pumparm"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2892:50 - Unknown word (pumpnozzle) -- mapobjects_recycle_pump_pumpnozzle"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2899:50 - Unknown word (pumpspinner) -- mapobjects_recycle_pump_pumpspinner"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2906:50 - Unknown word (pumptumbler) -- mapobjects_recycle_pump_pumptumbler"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2913:45 - Unknown word (spintank) -- models_mapobjects_recycle_spintank_spintank"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2920:45 - Unknown word (whistletip) -- models_mapobjects_recycle_whistletip_whistletip"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2932:37 - Unknown word (rideodeath) -- {"models_mapobjects_rideodeath_rod_mystbox"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2932:52 - Unknown word (mystbox) -- mapobjects_rideodeath_rod_mystbox"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2946:55 - Unknown word (welderbox) -- mapobjects_rideodeath_welder_welderbox"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:294:47 - Unknown word (snailclawhand) -- mapobjects_com_snail_snailclawhand"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2953:55 - Unknown word (weldercage) -- mapobjects_rideodeath_welder_weldercage"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2960:55 - Unknown word (welderfrag) -- mapobjects_rideodeath_welder_welderfrag"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:2994:37 - Unknown word (scannerbed) -- {"models_mapobjects_scannerbed"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3001:37 - Unknown word (serverrack) -- {"models_mapobjects_serverrack1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:301:47 - Unknown word (snailguts) -- mapobjects_com_snail_snailguts"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3029:43 - Unknown word (ceilingsign) -- models_mapobjects_signs_ceilingsign"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3043:43 - Unknown word (marqueerust) -- models_mapobjects_signs_marqueerust"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3071:48 - Unknown word (skbeltmachine) -- mapobjects_skmachines_skbeltmachine"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3085:48 - Unknown word (skceilingdisc) -- mapobjects_skmachines_skceilingdisc1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:308:47 - Unknown word (snailshell) -- mapobjects_com_snail_snailshell1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3134:48 - Unknown word (skcubeblue) -- mapobjects_skmachines_skcubeblue"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3140:48 - Unknown word (skcubegreen) -- mapobjects_skmachines_skcubegreen"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3153:48 - Unknown word (skcubeyellow) -- mapobjects_skmachines_skcubeyellow"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3160:48 - Unknown word (skcubedirtgreen) -- mapobjects_skmachines_skcubedirtgreen"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3174:48 - Unknown word (skcubedirtred) -- mapobjects_skmachines_skcubedirtred"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3188:48 - Unknown word (skgenerator) -- mapobjects_skmachines_skgenerator"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:31:45 - Unknown word (airlockhallgui) -- models_mapobjects_airlock_airlockhallgui"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3203:48 - Unknown word (skpipeblock) -- mapobjects_skmachines_skpipeblock"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3210:48 - Unknown word (skoverhang) -- mapobjects_skmachines_skoverhang"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3217:37 - Unknown word (skullgate) -- {"models_mapobjects_skullgate_helltower"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3217:47 - Unknown word (helltower) -- mapobjects_skullgate_helltower"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3231:47 - Unknown word (houndfx) -- mapobjects_skullgate_houndfx"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3250:63 - Unknown word (soylent) -- temp_a_tecpipebraid2soylent"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3252:56 - Unknown word (hellbubbles) -- string {"textures_hell_hellbubbles_local"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3256:48 - Unknown word (bonegrate) -- mapobjects_steve_temp_bonegrate"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3263:48 - Unknown word (boxvent) -- mapobjects_steve_temp_boxvent1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3270:48 - Unknown word (edoor) -- mapobjects_steve_temp_edoor01"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:329:37 - Unknown word (commoutside) -- {"models_mapobjects_commoutside_commo_hellhead"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:329:49 - Unknown word (commo) -- mapobjects_commoutside_commo_hellhead"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:329:55 - Unknown word (hellhead) -- mapobjects_commoutside_commo_hellhead"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3309:48 - Unknown word (slimetest) -- mapobjects_steve_temp_slimetest"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3310:63 - Unknown word (dblood) -- textures_hell_slime_dblood03"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3311:64 - Unknown word (sblood) -- textures_hell_slime_sblood_wall01"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3316:58 - Unknown word (slimeblood) -- steve_temp_sharprock2slimeblood03"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3323:56 - Unknown word (grnstone) -- mapobjects_steve_temp_stetile1grnstone1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3328:37 - Unknown word (storagecab) -- {"models_mapobjects_storagecab_gunrack_gunracksides -./Games/DOOM/Assets/Materials/mapobjects.ogex:3328:48 - Unknown word (gunrack) -- mapobjects_storagecab_gunrack_gunracksides"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3328:56 - Unknown word (gunracksides) -- mapobjects_storagecab_gunrack_gunracksides"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3335:56 - Unknown word (gunrackshelf) -- mapobjects_storagecab_gunrack_gunrackshelf"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3342:56 - Unknown word (gunrackshelfxl) -- mapobjects_storagecab_gunrack_gunrackshelfxl"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:335:45 - Unknown word (hangingman) -- models_mapobjects_corpses_hangingman03"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3363:48 - Unknown word (storagecabdirt) -- mapobjects_storagecab_storagecabdirt"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3370:48 - Unknown word (wallcabinet) -- mapobjects_storagecab_wallcabinet_wallcabinetdoor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3370:60 - Unknown word (wallcabinetdoor) -- storagecab_wallcabinet_wallcabinetdoor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3384:37 - Unknown word (swinglights) -- {"models_mapobjects_swinglights_juglamp_juglamp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3384:49 - Unknown word (juglamp) -- mapobjects_swinglights_juglamp_juglamp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3391:49 - Unknown word (saucerlamp) -- mapobjects_swinglights_saucerlamp_saucerlamp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3398:49 - Unknown word (swinglighttex) -- mapobjects_swinglights_swinglighttex1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3439:44 - Unknown word (bunkbed) -- models_mapobjects_tables_bunkbed_bunkbed"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3467:44 - Unknown word (udesk) -- models_mapobjects_tables_udesk_udesk"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3484:48 - Unknown word (telegoo) -- mapobjects_teleporter_telegoo"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:348:43 - Unknown word (xrayboard) -- models_mapobjects_cpu_a_xrayboard1_yel01_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3495:37 - Unknown word (teleporterxl) -- {"models_mapobjects_teleporterxl_teleporterxl_top"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3511:42 - Unknown word (tramtable) -- models_mapobjects_tram_tramtable"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3518:42 - Unknown word (tramtablescreen) -- models_mapobjects_tram_tramtablescreen"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3525:45 - Unknown word (ceilingturret) -- models_mapobjects_turrets_ceilingturret1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3539:45 - Unknown word (binplug) -- models_mapobjects_utility_binplug_binplug_c"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:355:41 - Unknown word (boxmonitor) -- models_mapobjects_cpu_boxmonitor1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3567:45 - Unknown word (tecknob) -- models_mapobjects_utility_tecknob1_tecknob1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3602:45 - Unknown word (trapbra) -- models_mapobjects_utility_trapbra_trapbra"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3609:45 - Unknown word (trihatch) -- models_mapobjects_utility_trihatch_trihatch"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3623:46 - Unknown word (airtank) -- mapobjects_washroom_airtank"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:362:41 - Unknown word (ccfloortex) -- models_mapobjects_cpu_ccfloortex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3637:46 - Unknown word (bsink) -- mapobjects_washroom_bsink"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3647:62 - Unknown word (redge) -- {"textures_washroom_redge_s"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3672:46 - Unknown word (mopbucket) -- mapobjects_washroom_mopbucket"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:369:41 - Unknown word (comcenter) -- models_mapobjects_cpu_comcenter"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3741:41 - Unknown word (reactorspinner) -- models_seneca_reactor_reactorspinner"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3748:41 - Unknown word (reactorlaser) -- models_seneca_reactor_reactorlaser1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3756:41 - Unknown word (reactortube) -- models_seneca_reactor_reactortube"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3763:41 - Unknown word (reactortubeglow) -- models_seneca_reactor_reactortubeglow"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3775:42 - Unknown word (xbridge) -- models_seneca_xianroom_xbridge1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:380:41 - Unknown word (comrack) -- models_mapobjects_cpu_comrack"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3818:31 - Unknown word (gibmaster) -- string {"models_gibs_gibmaster"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:38:45 - Unknown word (airlockhood) -- models_mapobjects_airlock_airlockhood"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:394:41 - Unknown word (cpuarch) -- models_mapobjects_cpu_cpuarch1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:3:45 - Unknown word (airlockbrace) -- models_mapobjects_airlock_airlockbrace"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:401:41 - Unknown word (cpudesk) -- models_mapobjects_cpu_cpudesk1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:429:41 - Unknown word (cpudisc) -- models_mapobjects_cpu_cpudisc"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:436:41 - Unknown word (cpufloorinsert) -- models_mapobjects_cpu_cpufloorinsert"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:443:41 - Unknown word (cpuhex) -- models_mapobjects_cpu_cpuhex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:450:41 - Unknown word (cpumaze) -- models_mapobjects_cpu_cpumaze1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:457:41 - Unknown word (cpuoverdoor) -- models_mapobjects_cpu_cpuoverdoor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:45:45 - Unknown word (airlockvertlock) -- models_mapobjects_airlock_airlockvertlock"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:464:41 - Unknown word (cpupole) -- models_mapobjects_cpu_cpupole2"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:542:41 - Unknown word (serverplate) -- models_mapobjects_cpu_serverplate"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:549:41 - Unknown word (smallguimonitor) -- models_mapobjects_cpu_smallguimonitor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:563:43 - Unknown word (clawbase) -- models_mapobjects_crane_clawbase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:570:43 - Unknown word (clawcable) -- models_mapobjects_crane_clawcable"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:577:43 - Unknown word (clawfinger) -- models_mapobjects_crane_clawfinger"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:660:44 - Unknown word (maincontrol) -- models_mapobjects_delta1_maincontrol_datalinker"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:660:56 - Unknown word (datalinker) -- mapobjects_delta1_maincontrol_datalinker"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:686:44 - Unknown word (demonpork) -- models_mapobjects_delta2_demonpork_monkeyskull"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:686:54 - Unknown word (monkeyskull) -- mapobjects_delta2_demonpork_monkeyskull"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:699:44 - Unknown word (puzzcage) -- models_mapobjects_delta2_puzzcage_puzzcage"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:706:44 - Unknown word (ceilingtanks) -- models_mapobjects_delta3_ceilingtanks_ceilingtanks"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:713:55 - Unknown word (warpfx) -- mapobjects_delta3_teleporter_warpfx_betrugger_sphere"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:713:62 - Unknown word (betrugger) -- delta3_teleporter_warpfx_betrugger_sphere"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:717:37 - Unknown word (deltacrane) -- {"models_mapobjects_deltacrane_cranebase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:717:48 - Unknown word (cranebase) -- mapobjects_deltacrane_cranebase"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:724:48 - Unknown word (cranebody) -- mapobjects_deltacrane_cranebody_cranebody"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:725:72 - Unknown word (Cranebody) -- mapobjects_deltacrane_Cranebody_Cranebody"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:731:37 - Unknown word (deltadecon) -- {"models_mapobjects_deltadecon_deltadecon"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:738:37 - Unknown word (deltakiosk) -- {"models_mapobjects_deltakiosk_deltakiosk"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:746:37 - Unknown word (demonmuseum) -- {"models_mapobjects_demonmuseum_deadimp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:746:49 - Unknown word (deadimp) -- mapobjects_demonmuseum_deadimp"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:754:73 - Unknown word (Deadimp) -- mapobjects_demonmuseum_Deadimp_d"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:760:60 - Unknown word (headtex) -- demonmuseum_hellknight_headtex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:761:72 - Unknown word (Hellknight) -- mapobjects_demonmuseum_Hellknight_headtex_local"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:767:60 - Unknown word (spinetex) -- demonmuseum_Hellknight_spinetex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:781:45 - Unknown word (smalldoor) -- models_mapobjects_doors_a_smalldoor_02"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:813:43 - Unknown word (doorlocklight) -- models_mapobjects_doors_doorlocklight"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:819:43 - Unknown word (doorlocklightg) -- models_mapobjects_doors_doorlocklightg"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:823:43 - Unknown word (doormonitor) -- models_mapobjects_doors_doormonitor"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:837:43 - Unknown word (doormonitorarrow) -- models_mapobjects_doors_doormonitorarrow"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:842:43 - Unknown word (enprodoor) -- models_mapobjects_doors_enprodoor1_enprodoor1"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:856:43 - Unknown word (hazdoor) -- models_mapobjects_doors_hazdoor2"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:863:43 - Unknown word (mcitydoorframeglow) -- models_mapobjects_doors_mcitydoorframeglow"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:867:43 - Unknown word (mcitydoorframetex) -- models_mapobjects_doors_mcitydoorframetex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:888:43 - Unknown word (mcitydoortex) -- models_mapobjects_doors_mcitydoortex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:895:43 - Unknown word (mcitydoor) -- models_mapobjects_doors_mcitydoor2tex"}} -./Games/DOOM/Assets/Materials/mapobjects.ogex:909:43 - Unknown word (cavedoor) -- models_mapobjects_doors_cavedoor1_a_cavedoor1dn_org0 -./Games/DOOM/Assets/Materials/mapobjects.ogex:965:43 - Unknown word (cpudoor) -- models_mapobjects_doors_cpudoor2"}} -./Games/DOOM/Assets/Materials/mcity.ogex:31:34 - Unknown word (mchangar) -- string {"textures_mcity_mchangar15"}} -./Games/DOOM/Assets/Materials/mcity.ogex:33:57 - Unknown word (mcityb) -- string {"textures_mcity_mcityb22_local"}} -./Games/DOOM/Assets/Materials/mcity.ogex:47:45 - Unknown word (skysandnew) -- textures_mcity_mchangar12_skysandnew"}} -./Games/DOOM/Assets/Materials/mcity.ogex:49:56 - Unknown word (skysand) -- string {"textures_rock_skysand1_local"}} -./Games/DOOM/Assets/Materials/mcity.ogex:765:34 - Unknown word (mcityplain) -- string {"textures_mcity_mcityplain"}} -./Games/DOOM/Assets/Materials/mcity.ogex:809:34 - Unknown word (mcitypipe) -- string {"textures_mcity_mcitypipe2"}} -./Games/DOOM/Assets/Materials/misc.ogex:13:29 - Unknown word (flowingblood) -- {string {"particles_flowingblood"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1027:51 - Unknown word (zlegs) -- monsters_zombie_zombie01_zlegs01"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1041:51 - Unknown word (zjaw) -- monsters_zombie_zombie01_zjaw01"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1061:42 - Unknown word (adriansentry) -- models_monsters_sentry_adriansentry"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1068:42 - Unknown word (spiston) -- models_monsters_sentry_spiston_d"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1073:42 - Unknown word (sflap) -- models_monsters_sentry_sflap_d"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1078:48 - Unknown word (bloodyfatty) -- monsters_zombie_fatty_bloodyfatty"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1108:42 - Unknown word (jarmor) -- models_monsters_jethro_jarmor"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1122:42 - Unknown word (jethrohair) -- models_monsters_jethro_jethrohair"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1130:42 - Unknown word (jethroa) -- models_monsters_jethro_jethroa"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1137:42 - Unknown word (jethrob) -- models_monsters_jethro_jethrob"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1148:42 - Unknown word (amumble) -- models_monsters_adrian_amumble"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1155:42 - Unknown word (ahmumble) -- models_monsters_adrian_ahmumble"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1162:42 - Unknown word (atag) -- models_monsters_adrian_atag"}} -./Games/DOOM/Assets/Materials/monsters.ogex:116:43 - Unknown word (bhead) -- models_monsters_bruiser_bhead"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1177:42 - Unknown word (hmumble) -- models_monsters_mumble_hmumble"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1198:48 - Unknown word (adrianboney) -- monsters_zombie_boney_adrianboney01"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1199:80 - Unknown word (dhell) -- zombie_boney_a_boney_dhell01b"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1224:41 - Unknown word (hellimp) -- models_monsters_imp_a_hellimp"}} -./Games/DOOM/Assets/Materials/monsters.ogex:1231:44 - Unknown word (hellmaggot) -- models_monsters_maggot_a_hellmaggot"}} -./Games/DOOM/Assets/Materials/monsters.ogex:183:49 - Unknown word (berniefx) -- monsters_zombie_bernie_berniefx"}} -./Games/DOOM/Assets/Materials/monsters.ogex:204:42 - Unknown word (weyes) -- models_monsters_wraith_weyes"}} -./Games/DOOM/Assets/Materials/monsters.ogex:242:40 - Unknown word (lostfx) -- models_monsters_lost_lostfx"}} -./Games/DOOM/Assets/Materials/monsters.ogex:246:35 - Unknown word (zsecurity) -- string {"models_monsters_zsecurity_dzsechead2"}} -./Games/DOOM/Assets/Materials/monsters.ogex:246:45 - Unknown word (dzsechead) -- models_monsters_zsecurity_dzsechead2"}} -./Games/DOOM/Assets/Materials/monsters.ogex:248:68 - Unknown word (zsechead) -- models_monsters_zsecurity_zsechead2_local"}} -./Games/DOOM/Assets/Materials/monsters.ogex:305:44 - Unknown word (guardianfx) -- models_monsters_guardian_guardianfx"}} -./Games/DOOM/Assets/Materials/monsters.ogex:30:41 - Unknown word (tleg) -- models_monsters_ticks_tleg"}} -./Games/DOOM/Assets/Materials/monsters.ogex:334:48 - Unknown word (fattydamage) -- monsters_zombie_fatty_fattydamage"}} -./Games/DOOM/Assets/Materials/monsters.ogex:34:44 - Unknown word (mtongue) -- models_monsters_maledict_mtongue"}} -./Games/DOOM/Assets/Materials/monsters.ogex:373:35 - Unknown word (mancubus) -- string {"models_monsters_mancubus_mancubus"}} -./Games/DOOM/Assets/Materials/monsters.ogex:394:42 - Unknown word (magspine) -- models_monsters_maggot_magspine"}} -./Games/DOOM/Assets/Materials/monsters.ogex:3:35 - Unknown word (cyberdemon) -- string {"models_monsters_cyberdemon_cyberdemon"}} -./Games/DOOM/Assets/Materials/monsters.ogex:400:42 - Unknown word (magtongue) -- models_monsters_maggot_magtongue"}} -./Games/DOOM/Assets/Materials/monsters.ogex:407:42 - Unknown word (mageyes) -- models_monsters_maggot_mageyes"}} -./Games/DOOM/Assets/Materials/monsters.ogex:429:42 - Unknown word (vtail) -- models_monsters_vulgar_vtail"}} -./Games/DOOM/Assets/Materials/monsters.ogex:435:45 - Unknown word (zsheild) -- models_monsters_zsecurity_zsheild_glass"}} -./Games/DOOM/Assets/Materials/monsters.ogex:463:45 - Unknown word (zsechelm) -- models_monsters_zsecurity_zsechelm"}} -./Games/DOOM/Assets/Materials/monsters.ogex:47:44 - Unknown word (bmaledict) -- models_monsters_maledict_bmaledict"}} -./Games/DOOM/Assets/Materials/monsters.ogex:490:35 - Unknown word (archvile) -- string {"models_monsters_archvile_archvilehand2"}} -./Games/DOOM/Assets/Materials/monsters.ogex:490:44 - Unknown word (archvilehand) -- models_monsters_archvile_archvilehand2"}} -./Games/DOOM/Assets/Materials/monsters.ogex:539:41 - Unknown word (pinkyns) -- models_monsters_pinky_pinkyns"}} -./Games/DOOM/Assets/Materials/monsters.ogex:53:49 - Unknown word (shair) -- monsters_zombie_sawyer_shair1"}} -./Games/DOOM/Assets/Materials/monsters.ogex:568:45 - Unknown word (cacoeye) -- models_monsters_cacodemon_cacoeye"}} -./Games/DOOM/Assets/Materials/monsters.ogex:572:45 - Unknown word (cacobrain) -- models_monsters_cacodemon_cacobrain"}} -./Games/DOOM/Assets/Materials/monsters.ogex:584:42 - Unknown word (wingfx) -- models_monsters_cherub_wingfx"}} -./Games/DOOM/Assets/Materials/monsters.ogex:610:51 - Unknown word (zhead) -- monsters_zombie_zombie02_zhead02"}} -./Games/DOOM/Assets/Materials/monsters.ogex:634:42 - Unknown word (zfem) -- models_monsters_zombie_zfem_zfhair02"}} -./Games/DOOM/Assets/Materials/monsters.ogex:634:47 - Unknown word (zfhair) -- monsters_zombie_zfem_zfhair02"}} -./Games/DOOM/Assets/Materials/monsters.ogex:662:44 - Unknown word (archtail) -- models_monsters_archvile_archtail"}} -./Games/DOOM/Assets/Materials/monsters.ogex:690:35 - Unknown word (ghostskull) -- string {"models_monsters_ghostskull_bugger"}} -./Games/DOOM/Assets/Materials/monsters.ogex:728:46 - Unknown word (bighellknight) -- monsters_hellknight_bighellknight"}} -./Games/DOOM/Assets/Materials/monsters.ogex:742:43 - Unknown word (greenfireball) -- models_monsters_bruiser_greenfireball"}} -./Games/DOOM/Assets/Materials/monsters.ogex:747:45 - Unknown word (zsechand) -- models_monsters_zsecurity_zsechand_left"}} -./Games/DOOM/Assets/Materials/monsters.ogex:748:69 - Unknown word (zhand) -- models_monsters_zsecurity_zhand"}} -./Games/DOOM/Assets/Materials/monsters.ogex:761:45 - Unknown word (zsecfist) -- models_monsters_zsecurity_zsecfist_left"}} -./Games/DOOM/Assets/Materials/monsters.ogex:775:45 - Unknown word (marsec) -- models_monsters_zsecurity_marsec"}} -./Games/DOOM/Assets/Materials/monsters.ogex:779:45 - Unknown word (zsgogs) -- models_monsters_zsecurity_zsgogs"}} -./Games/DOOM/Assets/Materials/monsters.ogex:77:35 - Unknown word (sabaoth) -- string {"models_monsters_sabaoth_treads"}} -./Games/DOOM/Assets/Materials/monsters.ogex:803:42 - Unknown word (meyes) -- models_monsters_maggot_meyes"}} -./Games/DOOM/Assets/Materials/monsters.ogex:825:44 - Unknown word (reye) -- models_monsters_revenant_reye"}} -./Games/DOOM/Assets/Materials/monsters.ogex:829:44 - Unknown word (leye) -- models_monsters_revenant_leye"}} -./Games/DOOM/Assets/Materials/monsters.ogex:854:44 - Unknown word (mpipe) -- models_monsters_mancubus_mpipe_fx"}} -./Games/DOOM/Assets/Materials/monsters.ogex:862:51 - Unknown word (zback) -- monsters_zombie_zombie01_zback01"}} -./Games/DOOM/Assets/Materials/monsters.ogex:890:51 - Unknown word (zarms) -- monsters_zombie_zombie01_zarms04"}} -./Games/DOOM/Assets/Materials/monsters.ogex:897:51 - Unknown word (zrarms) -- monsters_zombie_zombie01_zrarms04"}} -./Games/DOOM/Assets/Materials/monsters.ogex:904:51 - Unknown word (zlarms) -- monsters_zombie_zombie01_zlarms04"}} -./Games/DOOM/Assets/Materials/monsters.ogex:978:51 - Unknown word (ztorso) -- monsters_zombie_zombie01_ztorso03"}} -./Games/DOOM/Assets/Materials/morgue.ogex:20:35 - Unknown word (mtrim) -- string {"textures_morgue_mtrim"}} -./Games/DOOM/Assets/Materials/morgue.ogex:3:35 - Unknown word (mtile) -- string {"textures_morgue_mtile_green"}} -./Games/DOOM/Assets/Materials/morgue.ogex:8:35 - Unknown word (mgirder) -- string {"textures_morgue_mgirder"}} -./Games/DOOM/Assets/Materials/mp_lights.ogex:3:51 - Unknown word (notbreakable) -- base_light_striplight3_notbreakable"}} -./Games/DOOM/Assets/Materials/mre.ogex:11:37 - Unknown word (btile) -- {"textures_washroom_btile01_trans"}} -./Games/DOOM/Assets/Materials/object.ogex:10:38 - Unknown word (radardish) -- "textures_object_mc_radardish2"}} -./Games/DOOM/Assets/Materials/object.ogex:119:67 - Unknown word (cdif) -- textures_object_bluetex4cdif"}} -./Games/DOOM/Assets/Materials/object.ogex:120:68 - Unknown word (cspec) -- textures_object_bluetex4cspec"}} -./Games/DOOM/Assets/Materials/object.ogex:140:35 - Unknown word (metalshelve) -- string {"textures_object_metalshelve_top"}} -./Games/DOOM/Assets/Materials/object.ogex:1578:35 - Unknown word (fanspin) -- string {"textures_object_fanspin"}} -./Games/DOOM/Assets/Materials/object.ogex:1627:35 - Unknown word (servertex) -- string {"textures_object_servertex1"}} -./Games/DOOM/Assets/Materials/object.ogex:1635:35 - Unknown word (cpumonitor) -- string {"textures_object_cpumonitor4"}} -./Games/DOOM/Assets/Materials/object.ogex:1648:35 - Unknown word (counterside) -- string {"textures_object_counterside"}} -./Games/DOOM/Assets/Materials/object.ogex:1656:35 - Unknown word (counterfront) -- string {"textures_object_counterfront"}} -./Games/DOOM/Assets/Materials/object.ogex:1664:35 - Unknown word (magpage) -- string {"textures_object_magpage6"}} -./Games/DOOM/Assets/Materials/object.ogex:1706:35 - Unknown word (magback) -- string {"textures_object_magback6"}} -./Games/DOOM/Assets/Materials/object.ogex:1786:35 - Unknown word (magrack) -- string {"textures_object_magrack1"}} -./Games/DOOM/Assets/Materials/object.ogex:1794:35 - Unknown word (cdplayer) -- string {"textures_object_cdplayer3"}} -./Games/DOOM/Assets/Materials/object.ogex:24:35 - Unknown word (hangwire) -- string {"textures_object_hangwire"}} -./Games/DOOM/Assets/Materials/object.ogex:32:35 - Unknown word (pipehole) -- string {"textures_object_pipehole"}} -./Games/DOOM/Assets/Materials/object.ogex:339:37 - Unknown word (conmonitorback) -- {"textures_object_a_conmonitorback"}} -./Games/DOOM/Assets/Materials/object.ogex:403:46 - Unknown word (ablk) -- textures_object_a_conpanel7ablk"}} -./Games/DOOM/Assets/Materials/object.ogex:40:35 - Unknown word (touchpadx) -- string {"textures_object_touchpadx"}} -./Games/DOOM/Assets/Materials/object.ogex:435:45 - Unknown word (blkdirty) -- textures_object_a_tecpipe1blkdirty"}} -./Games/DOOM/Assets/Materials/object.ogex:43:59 - Unknown word (touchpad) -- string {"textures_object_touchpad_d"}} -./Games/DOOM/Assets/Materials/object.ogex:483:35 - Unknown word (cabinetfront) -- string {"textures_object_cabinetfront01_d02c"}} -./Games/DOOM/Assets/Materials/object.ogex:48:35 - Unknown word (elec) -- string {"textures_object_elec_box3as"}} -./Games/DOOM/Assets/Materials/object.ogex:523:35 - Unknown word (cabinettop) -- string {"textures_object_cabinettop_brnblk01_d"}} -./Games/DOOM/Assets/Materials/object.ogex:523:46 - Unknown word (brnblk) -- textures_object_cabinettop_brnblk01_d"}} -./Games/DOOM/Assets/Materials/other.ogex:13:35 - Unknown word (filmgrain) -- string {"textures_decals_filmgrain_black_white"}} -./Games/DOOM/Assets/Materials/other.ogex:27:46 - Unknown word (chim) -- textures_particles_exp_big_chim"}} -./Games/DOOM/Assets/Materials/other.ogex:3:32 - Unknown word (gunflare) -- string {"textures_sfx_gunflare"}} -./Games/DOOM/Assets/Materials/other.ogex:8:32 - Unknown word (gunflarebeam) -- string {"textures_sfx_gunflarebeam"}} -./Games/DOOM/Assets/Materials/outside.ogex:128:36 - Unknown word (tramwaydoor) -- string {"textures_outside_tramwaydoor2"}} -./Games/DOOM/Assets/Materials/outside.ogex:19:38 - Unknown word (fencewall) -- "textures_outside_a_fencewall1_d02"}} -./Games/DOOM/Assets/Materials/outside.ogex:286:61 - Unknown word (outpipe) -- string {"textures_outside_outpipe1_s"}} -./Games/DOOM/Assets/Materials/outside.ogex:322:36 - Unknown word (outerpipe) -- string {"textures_outside_outerpipe"}} -./Games/DOOM/Assets/Materials/outside.ogex:384:36 - Unknown word (redskyroadwall) -- string {"textures_outside_redskyroadwall2"}} -./Games/DOOM/Assets/Materials/outside.ogex:3:38 - Unknown word (redskybuilding) -- "textures_outside_a_redskybuilding1_01"}} -./Games/DOOM/Assets/Materials/particles.ogex:119:38 - Unknown word (bfgballsacglo) -- "textures_particles_bfgballsacglo"}} -./Games/DOOM/Assets/Materials/particles.ogex:123:38 - Unknown word (bfgballsac) -- "textures_particles_bfgballsac"}} -./Games/DOOM/Assets/Materials/particles.ogex:132:38 - Unknown word (hellmaggotsolid) -- "textures_particles_hellmaggotsolid"}} -./Games/DOOM/Assets/Materials/particles.ogex:17:38 - Unknown word (murkycloud) -- "textures_particles_murkycloud"}} -./Games/DOOM/Assets/Materials/particles.ogex:187:38 - Unknown word (fbeam) -- "textures_particles_fbeam"}} -./Games/DOOM/Assets/Materials/particles.ogex:197:38 - Unknown word (pfiresmall) -- "textures_particles_pfiresmall2"}} -./Games/DOOM/Assets/Materials/particles.ogex:207:38 - Unknown word (pfirebig) -- "textures_particles_pfirebig2"}} -./Games/DOOM/Assets/Materials/particles.ogex:22:38 - Unknown word (bioscansmoke) -- "textures_particles_bioscansmoke"}} -./Games/DOOM/Assets/Materials/particles.ogex:262:58 - Unknown word (plasmaflame) -- string {"textures_editor_plasmaflame_strip"}} -./Games/DOOM/Assets/Materials/particles.ogex:266:38 - Unknown word (lostflame) -- "textures_particles_lostflame1"}} -./Games/DOOM/Assets/Materials/particles.ogex:27:38 - Unknown word (wraithwarp) -- "textures_particles_wraithwarp1"}} -./Games/DOOM/Assets/Materials/particles.ogex:286:38 - Unknown word (teststrip) -- "textures_particles_teststrip32"}} -./Games/DOOM/Assets/Materials/particles.ogex:376:38 - Unknown word (lightball) -- "textures_particles_lightball"}} -./Games/DOOM/Assets/Materials/particles.ogex:37:38 - Unknown word (bfgballblast) -- "textures_particles_bfgballblast"}} -./Games/DOOM/Assets/Materials/particles.ogex:381:38 - Unknown word (duffyboltver) -- "textures_particles_duffyboltver3_white"}} -./Games/DOOM/Assets/Materials/particles.ogex:396:38 - Unknown word (candlefire) -- "textures_particles_candlefire"}} -./Games/DOOM/Assets/Materials/particles.ogex:411:38 - Unknown word (caco) -- "textures_particles_caco_shot2"}} -./Games/DOOM/Assets/Materials/particles.ogex:42:38 - Unknown word (plasmablast) -- "textures_particles_plasmablast"}} -./Games/DOOM/Assets/Materials/particles.ogex:441:38 - Unknown word (rocketbacklit) -- "textures_particles_rocketbacklit"}} -./Games/DOOM/Assets/Materials/particles.ogex:451:38 - Unknown word (barrelexpbase) -- "textures_particles_barrelexpbase1"}} -./Games/DOOM/Assets/Materials/particles.ogex:456:38 - Unknown word (barrelexpsmall) -- "textures_particles_barrelexpsmall"}} -./Games/DOOM/Assets/Materials/particles.ogex:466:38 - Unknown word (dustcloud) -- "textures_particles_dustcloud_opaque"}} -./Games/DOOM/Assets/Materials/particles.ogex:476:38 - Unknown word (blacksmokepuff) -- "textures_particles_blacksmokepuff"}} -./Games/DOOM/Assets/Materials/particles.ogex:491:38 - Unknown word (soulknifetex) -- "textures_particles_soulknifetex"}} -./Games/DOOM/Assets/Materials/particles.ogex:493:57 - Unknown word (soulcube) -- string {"models_weapons_soulcube_soulknifetex_local" -./Games/DOOM/Assets/Materials/particles.ogex:498:38 - Unknown word (soulring) -- "textures_particles_soulring"}} -./Games/DOOM/Assets/Materials/particles.ogex:505:38 - Unknown word (smokepuff) -- "textures_particles_smokepuff"}} -./Games/DOOM/Assets/Materials/particles.ogex:520:38 - Unknown word (smokepuffalpha) -- "textures_particles_smokepuffalpha"}} -./Games/DOOM/Assets/Materials/particles.ogex:525:38 - Unknown word (firestrip) -- "textures_particles_firestrip"}} -./Games/DOOM/Assets/Materials/particles.ogex:52:38 - Unknown word (boomboom) -- "textures_particles_boomboom4"}} -./Games/DOOM/Assets/Materials/particles.ogex:530:38 - Unknown word (bloodcloud) -- "textures_particles_bloodcloud"}} -./Games/DOOM/Assets/Materials/particles.ogex:535:38 - Unknown word (testvideo) -- "textures_particles_testvideo"}} -./Games/DOOM/Assets/Materials/particles.ogex:77:38 - Unknown word (duffyboltfade) -- "textures_particles_duffyboltfade"}} -./Games/DOOM/Assets/Materials/particles.ogex:83:61 - Unknown word (bfgboltarc) -- "textures_particles_bfgboltarc"}} -./Games/DOOM/Assets/Materials/particles.ogex:87:38 - Unknown word (bfgballsacarc) -- "textures_particles_bfgballsacarc"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:1040:33 - Unknown word (maggotb) -- string {"textures_hell_maggotb"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:1049:40 - Unknown word (noanim) -- textures_hell_maggot_noanim"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:1117:50 - Unknown word (labtable) -- mapobjects_hell_delta2b_labtable"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:115:44 - Unknown word (turq) -- textures_particles_strip_turq"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:120:38 - Unknown word (bfgblast) -- "models_weapons_bfg_bfgblast5"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:155:32 - Unknown word (vpring) -- string {"textures_sfx_vpring_power3"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:16:33 - Unknown word (hellrock) -- string {"textures_rock_hellrock"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:179:48 - Unknown word (hellgrowth) -- mapobjects_HellGrowth_hellgrowth"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:186:48 - Unknown word (hellgrowthskin) -- mapobjects_HellGrowth_hellgrowthskin"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:187:75 - Unknown word (Growthskin) -- mapobjects_HellGrowth_HellGrowthskin_local"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:205:37 - Unknown word (Hellcages) -- {"models_mapobjects_Hellcages_Hellcage_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:205:47 - Unknown word (Hellcage) -- mapobjects_Hellcages_Hellcage_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:212:37 - Unknown word (hellcages) -- {"models_mapobjects_hellcages_hellcagetop_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:212:47 - Unknown word (hellcagetop) -- mapobjects_hellcages_hellcagetop_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:219:47 - Unknown word (hellcagebot) -- mapobjects_hellcages_hellcagebot_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:226:51 - Unknown word (Cagechain) -- mapobjects_hellcages_HellCagechain_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:237:48 - Unknown word (hellskulla) -- mapobjects_hellskulls_hellskulla_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:244:48 - Unknown word (hellskullb) -- mapobjects_hellskulls_hellskullb_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:251:37 - Unknown word (hellpillar) -- {"models_mapobjects_hellpillar_hellpillar_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:265:37 - Unknown word (Hellarch) -- {"models_mapobjects_Hellarch_HellarchWall_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:270:37 - Unknown word (Hellalcove) -- {"models_mapobjects_Hellalcove_Pole"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:284:48 - Unknown word (archsm) -- mapobjects_Hellalcove_archsm"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:298:37 - Unknown word (hellbody) -- {"models_mapobjects_hellbody_hellbody"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:305:46 - Unknown word (hellbodyrock) -- mapobjects_hellbody_hellbodyrock"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:326:37 - Unknown word (Hellhorn) -- {"models_mapobjects_Hellhorn_hellhorn"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:338:33 - Unknown word (anustube) -- string {"textures_hell_anustube"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:356:42 - Unknown word (maggotroom) -- models_mapobjects_hell_maggotroom_wormsteam"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:356:53 - Unknown word (wormsteam) -- mapobjects_hell_maggotroom_wormsteam"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:396:37 - Unknown word (Hellbodyb) -- {"models_mapobjects_Hellbodyb_hellbodyb_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:396:47 - Unknown word (hellbodyb) -- mapobjects_Hellbodyb_hellbodyb_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:39:33 - Unknown word (hellcloud) -- string {"textures_hell_hellcloud_filter"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:3:35 - Unknown word (lightingmonkey) -- string {"textures_object_lightingmonkey"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:403:37 - Unknown word (hellcagea) -- {"models_mapobjects_hellcagea_hellcagea"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:410:37 - Unknown word (hellcageb) -- {"models_mapobjects_hellcageb_hellcageb_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:417:37 - Unknown word (helldoll) -- {"models_mapobjects_helldoll_helldolla"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:417:46 - Unknown word (helldolla) -- mapobjects_helldoll_helldolla"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:424:46 - Unknown word (mandoll) -- mapobjects_helldoll_mandoll"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:443:38 - Unknown word (bloodwater) -- "textures_particles_bloodwater"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:511:73 - Unknown word (Deadmaggot) -- mapobjects_demonmuseum_Deadmaggot_"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:529:32 - Unknown word (radiogoopflow) -- string {"textures_sfx_radiogoopflow_d"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:551:47 - Unknown word (nukewall) -- mapobjects_radiogoop_nukewall"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:555:48 - Unknown word (boxa) -- mapobjects_deltacrane_boxa_d"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:562:48 - Unknown word (boxb) -- mapobjects_deltacrane_boxb_d"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:604:33 - Unknown word (warprocka) -- string {"textures_hell_warprocka"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:635:33 - Unknown word (warprockd) -- string {"textures_hell_warprockd"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:680:33 - Unknown word (rockpores) -- string {"textures_hell_rockpores"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:720:57 - Unknown word (wormtube) -- hell_Site3_entrance_wormtube"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:754:33 - Unknown word (canyonb) -- string {"textures_hell_canyonb"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:851:33 - Unknown word (skyrock) -- string {"textures_rock_skyrock3"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:85:38 - Unknown word (fredo) -- "textures_particles_fredo"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:897:56 - Unknown word (bacteriablendb) -- string {"textures_hell_bacteriablendb"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:948:33 - Unknown word (smokeblend) -- string {"textures_hell_smokeblend"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:953:32 - Unknown word (purpleglassb) -- string {"textures_sfx_purpleglassb"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:954:55 - Unknown word (purpleglass) -- string {"textures_sfx_purpleglass"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:968:33 - Unknown word (gizpool) -- string {"textures_hell_gizpool"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:978:33 - Unknown word (gizpoolblend) -- string {"textures_hell_gizpoolblend"}} -./Games/DOOM/Assets/Materials/patricktest.ogex:9:33 - Unknown word (cliffwall) -- string {"textures_rock_cliffwall"}} -./Games/DOOM/Assets/Materials/recyc_door.ogex:3:43 - Unknown word (recyc) -- models_mapobjects_doors_recyc_door_doorclamp"}} -./Games/DOOM/Assets/Materials/recyc_door.ogex:3:54 - Unknown word (doorclamp) -- mapobjects_doors_recyc_door_doorclamp"}} -./Games/DOOM/Assets/Materials/recyc_floor.ogex:3:40 - Unknown word (recycfloor) -- textures_recyc_floor_recycfloor1_1_fin"}} -./Games/DOOM/Assets/Materials/recyc_trim.ogex:3:45 - Unknown word (doornrnskn) -- textures_recyc_wall_recyc_doornrnskn"}} -./Games/DOOM/Assets/Materials/recyc_wall.ogex:19:39 - Unknown word (maldoor) -- textures_recyc_wall_maldoor_org02_d"}} -./Games/DOOM/Assets/Materials/recyc_wall.ogex:27:39 - Unknown word (asupport) -- textures_recyc_wall_asupport07_fin"}} -./Games/DOOM/Assets/Materials/recyc_wall.ogex:83:39 - Unknown word (dirtypipe) -- textures_recyc_wall_dirtypipe01_03_fin"}} -./Games/DOOM/Assets/Materials/recyc_wall.ogex:91:39 - Unknown word (shinypipe) -- textures_recyc_wall_shinypipe01_02b_fin"}} -./Games/DOOM/Assets/Materials/rock.ogex:141:33 - Unknown word (sharprockblend) -- string {"textures_rock_sharprockblend"}} -./Games/DOOM/Assets/Materials/rock.ogex:148:33 - Unknown word (sandblend) -- string {"textures_rock_sandblend2"}} -./Games/DOOM/Assets/Materials/rock.ogex:155:33 - Unknown word (newdarkrock) -- string {"textures_rock_newdarkrock"}} -./Games/DOOM/Assets/Materials/rock.ogex:170:33 - Unknown word (newdarkrockblend) -- string {"textures_rock_newdarkrockblend"}} -./Games/DOOM/Assets/Materials/rock.ogex:83:33 - Unknown word (zbtest) -- string {"textures_rock_zbtest"}} -./Games/DOOM/Assets/Materials/rock.ogex:91:33 - Unknown word (sharprocklava) -- string {"textures_rock_sharprocklava"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:1214:33 - Unknown word (hellfloor) -- string {"textures_hell_hellfloor2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:1256:33 - Unknown word (blobby) -- string {"textures_hell_blobby1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:1265:34 - Unknown word (iceblend) -- string {"textures_caves_iceblend"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:1288:44 - Unknown word (plasmaflash) -- models_weapons_plasmagun_plasmaflash"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:1296:44 - Unknown word (plasmashot) -- models_weapons_plasmagun_plasmashot1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:1679:34 - Unknown word (mchelev) -- string {"textures_mcity_mchelev"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:2115:34 - Unknown word (mcitycplain) -- string {"textures_mcity_mcitycplain3"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:2476:44 - Unknown word (nolit) -- textures_mcity_mcitya13a_nolit"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:2668:34 - Unknown word (mcityfloor) -- string {"textures_mcity_mcityfloor1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:2825:32 - Unknown word (marsatmosphere) -- string {"models_wipes_marsatmosphere"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:2921:38 - Unknown word (doorsign) -- "textures_base_door_doorsign1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3503:34 - Unknown word (colortest) -- string {"textures_skies_colortest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3507:34 - Unknown word (desertlightning) -- string {"textures_skies_desertlightning"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3596:44 - Unknown word (oldrock) -- textures_rock_skysandnew_oldrock"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3660:35 - Unknown word (btest) -- string {"textures_decals_btest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3667:35 - Unknown word (expmark) -- string {"textures_decals_expmark1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3724:35 - Unknown word (redsticker) -- string {"textures_decals_redsticker3"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:3761:35 - Unknown word (bloodpool) -- string {"textures_decals_bloodpool1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:4879:47 - Unknown word (venttest) -- textures_base_wall_gotbwall1venttest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:4910:38 - Unknown word (medrust) -- "textures_base_wall_medrust1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5413:38 - Unknown word (twistlightpipe) -- "textures_base_wall_twistlightpipe"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5420:38 - Unknown word (twistlightpipeblue) -- "textures_base_wall_twistlightpipeblue"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5427:38 - Unknown word (snpanelplain) -- "textures_base_wall_snpanelplain1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5433:38 - Unknown word (snpanelredplain) -- "textures_base_wall_snpanelredplain"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5784:38 - Unknown word (smpanel) -- "textures_base_wall_smpanel1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5923:38 - Unknown word (slpanelpipe) -- "textures_base_wall_slpanelpipe"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5937:38 - Unknown word (conctest) -- "textures_base_wall_conctest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5944:38 - Unknown word (tramtrim) -- "textures_base_wall_tramtrim"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:5952:38 - Unknown word (tramwall) -- "textures_base_wall_tramwall2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6405:38 - Unknown word (reactorcircles) -- "textures_base_wall_reactorcircles"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6506:38 - Unknown word (techgrate) -- "textures_base_wall_techgrate2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6528:38 - Unknown word (skpaneltrim) -- "textures_base_trim_skpaneltrim2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6552:38 - Unknown word (reactorfence) -- "textures_base_trim_reactorfence"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6710:38 - Unknown word (tabletrimc) -- "textures_base_trim_tabletrimc"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6717:38 - Unknown word (tabletrimb) -- "textures_base_trim_tabletrimb"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6724:38 - Unknown word (tabletrima) -- "textures_base_trim_tabletrima"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6761:39 - Unknown word (cpufloor) -- textures_base_floor_cpufloor1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6776:39 - Unknown word (plfloor) -- textures_base_floor_plfloor"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6783:39 - Unknown word (tramfloor) -- textures_base_floor_tramfloor"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6847:39 - Unknown word (whitefloortrim) -- textures_base_floor_whitefloortrim"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6886:39 - Unknown word (teenylights) -- textures_base_light_teenylights"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:6932:39 - Unknown word (bluepillar) -- textures_base_light_bluepillar"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:7006:58 - Unknown word (gohosersen) -- string {"textures_object_gohosersen"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:7106:35 - Unknown word (pcboardshit) -- string {"textures_object_pcboardshit"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:7306:35 - Unknown word (chairtex) -- string {"textures_object_chairtex1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:7450:45 - Unknown word (floormotor) -- models_mapobjects_cpu_sab_floormotor"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8213:43 - Unknown word (mcitysign) -- models_mapobjects_mcity_mcitysign1_add"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8356:48 - Unknown word (teleporterunit) -- mapobjects_teleporter_teleporterunit"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8454:41 - Unknown word (hangingcpublock) -- models_mapobjects_cpu_hangingcpublock2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8523:41 - Unknown word (cpudoorarch) -- models_mapobjects_cpu_cpudoorarch"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8580:41 - Unknown word (xrayboardscreen) -- models_mapobjects_cpu_xrayboardscreen"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8729:52 - Unknown word (microscopeblue) -- mapobjects_lab_microscope_microscopeblue"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8830:44 - Unknown word (pipebutton) -- models_mapobjects_filler_pipebutton"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8907:37 - Unknown word (normchairblood) -- {"models_mapobjects_normchairblood1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8928:44 - Unknown word (ktableblood) -- models_mapobjects_filler_ktableblood1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:8942:50 - Unknown word (compcartgrey) -- mapobjects_lab_compcart_compcartgrey"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9088:26 - Unknown word (testbox) -- Name {string {"models_testbox"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9093:42 - Unknown word (traminfoscreen) -- models_mapobjects_tram_traminfoscreen"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9100:42 - Unknown word (traminfo) -- models_mapobjects_tram_traminfo"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9107:42 - Unknown word (tramoverlook) -- models_mapobjects_tram_tramoverlook3a"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9121:42 - Unknown word (tramcorner) -- models_mapobjects_tram_tramcorner"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9139:42 - Unknown word (tramchair) -- models_mapobjects_tram_tramchair"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9145:42 - Unknown word (trampillar) -- models_mapobjects_tram_trampillar2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9204:41 - Unknown word (endflame) -- textures_sfx_hellhole_endflame1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9208:39 - Unknown word (vptest) -- textures_sfx_seneca_vptest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9236:32 - Unknown word (techglass) -- string {"textures_sfx_techglass1dark"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9241:32 - Unknown word (enprotubeglass) -- string {"textures_sfx_enprotubeglass"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9257:32 - Unknown word (watersplash) -- string {"textures_sfx_watersplash2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9262:34 - Unknown word (blooddrip) -- string {"textures_sfx_s_blooddrip2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9272:32 - Unknown word (waterbump) -- string {"textures_sfx_waterbump"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9277:32 - Unknown word (pustulefilter) -- string {"textures_sfx_pustulefilter"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9282:32 - Unknown word (reddot) -- string {"textures_sfx_reddot"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9296:32 - Unknown word (clearreflect) -- string {"textures_sfx_clearreflect"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9297:55 - Unknown word (senedust) -- string {"textures_sfx_senedust"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9301:32 - Unknown word (enprolongflare) -- string {"textures_sfx_enprolongflare"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9305:32 - Unknown word (encylglass) -- string {"textures_sfx_encylglass"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9310:32 - Unknown word (longbeam) -- string {"textures_sfx_longbeam"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9338:36 - Unknown word (nonsolid) -- string {"textures_sfx_web1nonsolid"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9350:32 - Unknown word (secureclear) -- string {"textures_sfx_secureclear"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9355:32 - Unknown word (nogreyinvert) -- string {"textures_sfx_nogreyinvert"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9356:55 - Unknown word (inverttest) -- string {"textures_sfx_inverttest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9385:32 - Unknown word (teenysmoke) -- string {"textures_sfx_teenysmoke2"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9400:32 - Unknown word (outsidedustpass) -- string {"textures_sfx_outsidedustpass1"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9405:32 - Unknown word (waveteststrip) -- string {"textures_sfx_waveteststrip"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9410:32 - Unknown word (smsmoke) -- string {"textures_sfx_smsmoke"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9420:32 - Unknown word (smallglow) -- string {"textures_sfx_smallglow"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9425:32 - Unknown word (desertdust) -- string {"textures_sfx_desertdust"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9434:32 - Unknown word (redskyglass) -- string {"textures_sfx_redskyglass"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9439:32 - Unknown word (redskyenv) -- string {"textures_sfx_redskyenv"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9444:32 - Unknown word (techglassadd) -- string {"textures_sfx_techglassadd"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9454:32 - Unknown word (firetest) -- string {"textures_sfx_firetest"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9459:32 - Unknown word (defaultflare) -- string {"textures_sfx_defaultflare"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9464:32 - Unknown word (reactorflare) -- string {"textures_sfx_reactorflare"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9474:32 - Unknown word (flamesparks) -- string {"textures_sfx_flamesparks"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9478:32 - Unknown word (reactorreflectadd) -- string {"textures_sfx_reactorreflectadd"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9479:55 - Unknown word (reactorreflect) -- string {"textures_sfx_reactorreflect"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9483:32 - Unknown word (tramenv) -- string {"textures_sfx_tramenv"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9493:32 - Unknown word (bluefog) -- string {"textures_sfx_bluefog"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9573:34 - Unknown word (nurntest) -- string {"textures_ktest_nurntest2fire"}} -./Games/DOOM/Assets/Materials/senetemp.ogex:9587:61 - Unknown word (hellholefire) -- "textures_particles_hellholefire"}} -./Games/DOOM/Assets/Materials/sfx.ogex:13:35 - Unknown word (medglass) -- string {"textures_sfx_mc_medglass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:172:41 - Unknown word (bluex) -- textures_sfx_chiglass1bluex"}} -./Games/DOOM/Assets/Materials/sfx.ogex:18:32 - Unknown word (bioscanbeam) -- string {"textures_sfx_bioscanbeam"}} -./Games/DOOM/Assets/Materials/sfx.ogex:230:32 - Unknown word (shotgunpuff) -- string {"textures_sfx_shotgunpuff"}} -./Games/DOOM/Assets/Materials/sfx.ogex:235:32 - Unknown word (muzzleflash) -- string {"textures_sfx_muzzleflash"}} -./Games/DOOM/Assets/Materials/sfx.ogex:23:39 - Unknown word (redflare) -- textures_sfx_hangar_redflare"}} -./Games/DOOM/Assets/Materials/sfx.ogex:28:39 - Unknown word (redflareblink) -- textures_sfx_hangar_redflareblink"}} -./Games/DOOM/Assets/Materials/sfx.ogex:3:32 - Unknown word (puzzglass) -- string {"textures_sfx_puzzglass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:44:58 - Unknown word (buttugly) -- string {"textures_editor_buttugly_glass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:456:32 - Unknown word (vpsphere) -- string {"textures_sfx_vpsphere"}} -./Games/DOOM/Assets/Materials/sfx.ogex:45:58 - Unknown word (daddyitburns) -- string {"textures_glass_daddyitburns"}} -./Games/DOOM/Assets/Materials/sfx.ogex:461:32 - Unknown word (vptelesphere) -- string {"textures_sfx_vptelesphere"}} -./Games/DOOM/Assets/Materials/sfx.ogex:466:32 - Unknown word (vppinch) -- string {"textures_sfx_vppinch_bfgbolt"}} -./Games/DOOM/Assets/Materials/sfx.ogex:466:40 - Unknown word (bfgbolt) -- textures_sfx_vppinch_bfgbolt"}} -./Games/DOOM/Assets/Materials/sfx.ogex:501:32 - Unknown word (vpfridge) -- string {"textures_sfx_vpfridge1glass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:506:32 - Unknown word (vppuzzglass) -- string {"textures_sfx_vppuzzglass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:50:32 - Unknown word (blueshard) -- string {"textures_sfx_blueshard"}} -./Games/DOOM/Assets/Materials/sfx.ogex:511:32 - Unknown word (vpalphaglass) -- string {"textures_sfx_vpalphaglass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:526:32 - Unknown word (plasmapuff) -- string {"textures_sfx_plasmapuff"}} -./Games/DOOM/Assets/Materials/sfx.ogex:55:32 - Unknown word (amberglass) -- string {"textures_sfx_amberglass"}} -./Games/DOOM/Assets/Materials/sfx.ogex:62:32 - Unknown word (ambershard) -- string {"textures_sfx_ambershard"}} -./Games/DOOM/Assets/Materials/sfx.ogex:72:32 - Unknown word (bevglass) -- string {"textures_sfx_bevglass01"}} -./Games/DOOM/Assets/Materials/sfx.ogex:8:32 - Unknown word (fridgeglass) -- string {"textures_sfx_fridgeglass1"}} -./Games/DOOM/Assets/Materials/sfx_multiplayer.ogex:4:55 - Unknown word (blueglass) -- string {"textures_sfx_blueglass"}} -./Games/DOOM/Assets/Materials/sfx_multiplayer.ogex:9:55 - Unknown word (chiglass) -- string {"textures_sfx_chiglass1blue"}} -./Games/DOOM/Assets/Materials/skies.ogex:3:34 - Unknown word (hellsky) -- string {"textures_skies_hellsky2"}} -./Games/DOOM/Assets/Materials/stevetest.ogex:102:56 - Unknown word (bsharprock) -- mapobjects_steve_temp_mcityc30bsharprock3"}} -./Games/DOOM/Assets/Materials/stevetest.ogex:35:48 - Unknown word (ribceiling) -- mapobjects_steve_temp_ribceiling"}} -./Games/DOOM/Assets/Materials/stevetest.ogex:79:48 - Unknown word (skullface) -- mapobjects_steve_temp_skullface"}} -./Games/DOOM/Assets/Materials/stevetest.ogex:84:48 - Unknown word (skullsharprock) -- mapobjects_steve_temp_skullsharprock"}} -./Games/DOOM/Assets/Materials/vp_materials.ogex:23:32 - Unknown word (vpsphereb) -- string {"textures_sfx_vpsphereb"}} -./Games/DOOM/Assets/Materials/vp_materials.ogex:31:32 - Unknown word (vpfan) -- string {"textures_sfx_vpfan"}} -./Games/DOOM/Assets/Materials/vp_materials.ogex:3:32 - Unknown word (vpstatic) -- string {"textures_sfx_vpstatic"}} -./Games/DOOM/Assets/Materials/washroom.ogex:105:37 - Unknown word (bvent) -- {"textures_washroom_bvent01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:10:37 - Unknown word (rftrim) -- {"textures_washroom_rftrim01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:112:37 - Unknown word (nosmoking) -- {"textures_washroom_nosmoking01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:134:37 - Unknown word (plaingreen) -- {"textures_washroom_plaingreen"}} -./Games/DOOM/Assets/Materials/washroom.ogex:139:37 - Unknown word (lightburn) -- {"textures_washroom_lightburn01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:151:37 - Unknown word (btiletrim) -- {"textures_washroom_btiletrim"}} -./Games/DOOM/Assets/Materials/washroom.ogex:159:37 - Unknown word (blackbtile) -- {"textures_washroom_blackbtile01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:166:37 - Unknown word (greenbtile) -- {"textures_washroom_greenbtile01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:18:37 - Unknown word (rfwallpanel) -- {"textures_washroom_rfwallpanel04"}} -./Games/DOOM/Assets/Materials/washroom.ogex:3:37 - Unknown word (rffloorgrate) -- {"textures_washroom_rffloorgrate01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:42:37 - Unknown word (rfthinbeam) -- {"textures_washroom_rfthinbeam01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:50:37 - Unknown word (rfcorner) -- {"textures_washroom_rfcorner01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:74:37 - Unknown word (rfceilingtile) -- {"textures_washroom_rfceilingtile01"}} -./Games/DOOM/Assets/Materials/washroom.ogex:89:37 - Unknown word (bpipe) -- {"textures_washroom_bpipe2"}} -./Games/DOOM/Assets/Materials/weapon_super_shotgun.ogex:3:34 - Unknown word (doublebarrel) -- string {"models_weapons_doublebarrel_doublebarrel"}} -./Games/DOOM/Assets/Materials/weapons.ogex:103:50 - Unknown word (mflashb) -- weapons_shotgun_shotgun_mflashb"}} -./Games/DOOM/Assets/Materials/weapons.ogex:200:43 - Unknown word (cbar) -- models_weapons_chaingun_cbar"}} -./Games/DOOM/Assets/Materials/weapons.ogex:312:54 - Unknown word (ventglow) -- plasmagun_plasmagun_ventglow"}} -./Games/DOOM/Assets/Materials/weapons.ogex:357:49 - Unknown word (gboomboom) -- weapons_rocketlauncher_gboomboom"}} -./Games/DOOM/Assets/Materials/weapons.ogex:379:49 - Unknown word (rocketfin) -- weapons_rocketlauncher_rocketfin"}} -./Games/DOOM/Assets/Materials/weapons.ogex:385:49 - Unknown word (rshell) -- weapons_rocketlauncher_rshell1"}} -./Games/DOOM/Assets/Materials/weapons.ogex:48:48 - Unknown word (mflash) -- weapons_pistol_pistol_mflash"}} -./Games/DOOM/Assets/Materials/weapons.ogex:551:43 - Unknown word (soulbits) -- models_weapons_soulcube_soulbits"}} -./Games/DOOM/Assets/Materials/weapons.ogex:555:43 - Unknown word (soulbox) -- models_weapons_soulcube_soulbox2"}} -./Games/DOOM/Assets/Materials/weapons.ogex:566:43 - Unknown word (evilhaze) -- models_weapons_soulcube_evilhaze"}} -./Games/DOOM/Assets/Materials/weapons.ogex:591:43 - Unknown word (soulknife) -- models_weapons_soulcube_soulknife"}} -./Games/DOOM/Assets/Materials/weapons.ogex:656:41 - Unknown word (mshell) -- models_weapons_shell1_mshell"}} -./Games/DOOM/Assets/Materials/weapons.ogex:663:41 - Unknown word (sshell) -- models_weapons_shell1_sshell"}} -./Games/DOOM/Assets/Materials/weapons.ogex:72:42 - Unknown word (shotgui) -- models_weapons_shotgun_shotgui"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:108:38 - Unknown word (mgmuzzleflash) -- "textures_particles_mgmuzzleflash"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:113:38 - Unknown word (spawnpuff) -- "textures_particles_spawnpuff"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:114:64 - Unknown word (demonspawnpuff) -- models_monsters_spawn_demonspawnpuff"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:123:38 - Unknown word (orangespark) -- "textures_particles_orangespark"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:133:38 - Unknown word (bamstrip) -- "textures_particles_bamstrip"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:138:38 - Unknown word (spawnstrip) -- "textures_particles_spawnstrip"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:143:38 - Unknown word (foopstrip) -- "textures_particles_foopstrip"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:148:38 - Unknown word (popstrip) -- "textures_particles_popstrip"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:186:38 - Unknown word (bloodwound) -- "textures_particles_bloodwound"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:187:61 - Unknown word (bloodcolor) -- "textures_particles_bloodcolor"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:211:38 - Unknown word (bloodfoopstrip) -- "textures_particles_bloodfoopstrip"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:3:28 - Unknown word (zaphod) -- Name {string {"textures_zaphod_rocketl"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:3:35 - Unknown word (rocketl) -- string {"textures_zaphod_rocketl"}} -./Games/DOOM/Assets/Materials/zgraeme.ogex:88:38 - Unknown word (gember) -- "textures_particles_gember_small"}} -./Games/DOOM/Assets/Models/apple.ogex:8:17 - Unknown word (objapple) -- Name {string {"objapple"}} ./Games/DOOM/Assets/Shaders/test-frag.spv:1:37 - Unknown word (GLSL) --  GLSL.std.450 ./Games/DOOM/Base/impulses.ads:37:41 - Unknown word (moveforward) -- Forward is new Impulse ("moveforward", Callback_Move_Forward ./Games/DOOM/Base/impulses.ads:40:38 - Unknown word (moveleft) -- Left is new Impulse ("moveleft", Callback_Move_Left @@ -2477,25 +900,35 @@ Lines: ./Games/DOOM/Resource/locale.csv:2:75 - Unknown word (erreur) -- more information?","Une erreur est survenue, voudriez ./Games/DOOM/Resource/locale.csv:2:86 - Unknown word (survenue) -- information?","Une erreur est survenue, voudriez-vous voir ./Games/DOOM/Resource/locale.csv:2:96 - Unknown word (voudriez) -- erreur est survenue, voudriez-vous voir plus d'informations +./Tools/compile-idmap.py:121:98 - Unknown word (lfwall) -- "textures/base_wall/lfwall13f3" ./Tools/compile-idmap.py:1:8 - Unknown word (fileinput) -- import fileinput ./Tools/compile-idmap.py:260:24 - Unknown word (playerclip) -- if re.search(r'playerclip', line): ./Tools/compile-idmap.py:268:24 - Unknown word (monsterclip) -- if re.search(r'monsterclip', line): ./Tools/compile-idmap.py:270:24 - Unknown word (moveableclip) -- if re.search(r'moveableclip', line): ./Tools/compile-idmap.py:27:18 - Unknown word (groupend) -- def next_line_is_groupend (line): +./Tools/compile-idmap.py:284:24 - Unknown word (ikclip) -- if re.search(r'ikclip', line): ./Tools/compile-idmap.py:327:4 - Unknown word (Dewm) -- ## DewmAAS "1.07" ./Tools/compile-idmap.py:333:6 - Unknown word (bboxes) -- ## bboxes ./Tools/compile-idmap.py:340:15 - Unknown word (Reachabilities) -- ## allowSwimReachabilities = 0 ./Tools/compile-idmap.py:525:15 - Unknown word (structs) -- ## Output structs ./Tools/compile-idmap.py:534:29 - Unknown word (sanatize) -- Get the material and sanatize it +./Tools/compile-idmap.py:705:19 - Unknown word (worldspawn) -- ## "classname" "worldspawn" ./Tools/compile-idmap.py:705:7 - Unknown word (classname) -- ## "classname" "worldspawn" -./Tools/compile-idmap.py:885:5 - Unknown word (modl) -- for modl in models.keys (): -./Tools/compile-materials.py:105:27 - Unknown word (iffuse) -- if re.search (r'[dD]iffuse[mM]ap', line): -./Tools/compile-materials.py:108:29 - Unknown word (pecular) -- elif re.search (r'[sS]pecular[mM]ap', line): -./Tools/compile-materials.py:120:23 - Unknown word (addnormals) -- if re.search (r'addnormals', line): -./Tools/compile-materials.py:30:15 - Unknown word (savegames) -- TEX_PATH = r'(savegames|fonts|textures|guis -./Tools/compile-materials.py:4:6 - Unknown word (bumpmap) -- ## bumpmap textures/base_door -./Tools/compile-materials.py:5:6 - Unknown word (diffusemap) -- ## diffusemap textures/base_door -./Tools/compile-materials.py:6:6 - Unknown word (specularmap) -- ## specularmap textures/base_door +./Tools/compile-idmap.py:706:19 - Unknown word (locationseparator) -- ## "name" "info_locationseparator_4" +./Tools/compile-idmap.py:713:80 - Unknown word (nodraw) -- ) "textures/common/nodraw" 0 0 0 +./Tools/compile-idmap.py:885:5 - Unknown word (modl) -- for modl in models.keys (): +./Tools/compile-materials.py:105:27 - Unknown word (iffuse) -- if re.search (r'[dD]iffuse[mM]ap', line): +./Tools/compile-materials.py:108:29 - Unknown word (pecular) -- elif re.search (r'[sS]pecular[mM]ap', line): +./Tools/compile-materials.py:10:33 - Unknown word (stedoorframered) -- textures/base_door/stedoorframered_add.tga +./Tools/compile-materials.py:120:23 - Unknown word (addnormals) -- if re.search (r'addnormals', line): +./Tools/compile-materials.py:16:33 - Unknown word (stedoorframegrn) -- textures/base_door/stedoorframegrn_add.tga +./Tools/compile-materials.py:30:15 - Unknown word (savegames) -- TEX_PATH = r'(savegames|fonts|textures|guis +./Tools/compile-materials.py:30:48 - Unknown word (guisurfs) -- fonts|textures|guis|ui|guisurfs|particles|lights|models +./Tools/compile-materials.py:3:10 - Unknown word (editorimage) -- ## qer_editorimage textures/base_door/stedoorfra +./Tools/compile-materials.py:3:41 - Unknown word (stedoorframe) -- ditorimage textures/base_door/stedoorframe2.tga +./Tools/compile-materials.py:4:6 - Unknown word (bumpmap) -- ## bumpmap textures/base_door +./Tools/compile-materials.py:5:6 - Unknown word (diffusemap) -- ## diffusemap textures/base_door +./Tools/compile-materials.py:6:6 - Unknown word (specularmap) -- ## specularmap textures/base_door ./Tools/spm_export.py:167:46 - Unknown word (fcurves) -- animation_data.action.fcurves ./Tools/spm_export.py:229:19 - Unknown word (keyframes) -- print('No keyframes found for armature: ./Tools/spm_export.py:27:27 - Unknown word (paritioned) -- Tooltip: 'Export to space paritioned mesh file format (.spm diff --git a/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt b/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt index 8e99a256cf51..ffed786f2023 100644 --- a/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt +++ b/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt @@ -3,7 +3,7 @@ Repository: Azure/azure-rest-api-specs Url: "https://github.com/Azure/azure-rest-api-specs.git" Args: ["--config=cSpell.json","**/*.{md,ts,js}"] Lines: - CSpell: Files checked: 1558, Issues found: 1513 in 515 files + CSpell: Files checked: 1558, Issues found: 1515 in 516 files exit code: 1 ./README.md:20:179 - Unknown word (Dataplane) -- RPs' Resource types or Dataplane API versions that represent ./README.md:30:134 - Unknown word (dataplane) -- per resource type or dataplane service version. This @@ -272,8 +272,8 @@ Lines: ./specification/search/data-plane/Azure.Search/readme.md:329:36 - Unknown word (POJOs) -- serialization of both POJOs and Maps ./specification/search/data-plane/Azure.Search/readme.md:334:33 - Unknown word (fasterxml) -- replace(/(import com.fasterxml.jackson.annotation.JsonProper ./specification/security/resource-manager/readme.csharp.md:18:40 - Unknown word (securitycenter) -- csharp-sdks-folder)/securitycenter/Microsoft.Azure.Management +./specification/securityinsights/resource-manager/readme.md:102:20 - Unknown word (cheggert) -- approved-by: "@cheggert" ./specification/securityinsights/resource-manager/readme.md:43:20 - Unknown word (lirenhe) -- approved-by: "@lirenhe" -./specification/securityinsights/resource-manager/readme.md:97:20 - Unknown word (cheggert) -- approved-by: "@cheggert" ./specification/servicebus/resource-manager/readme.md:41:51 - Unknown word (migrationconfigs) -- preview/2021-01-01-preview/migrationconfigs.json ./specification/servicebus/resource-manager/readme.md:42:51 - Unknown word (networksets) -- preview/2021-01-01-preview/networksets.json ./specification/servicefabric/resource-manager/readme.md:71:54 - Unknown word (managedcluster) -- preview/2020-01-01-preview/managedcluster.json diff --git a/integration-tests/snapshots/MartinThoma/LaTeX-examples/snapshot.txt b/integration-tests/snapshots/MartinThoma/LaTeX-examples/snapshot.txt index 428782bada44..cc9f9fbd7e88 100644 --- a/integration-tests/snapshots/MartinThoma/LaTeX-examples/snapshot.txt +++ b/integration-tests/snapshots/MartinThoma/LaTeX-examples/snapshot.txt @@ -3,7 +3,7 @@ Repository: MartinThoma/LaTeX-examples Url: "https://github.com/MartinThoma/LaTeX-examples.git" Args: ["**/*.{md,tex}"] Lines: - CSpell: Files checked: 1402, Issues found: 4314 in 522 files + CSpell: Files checked: 1402, Issues found: 4317 in 523 files exit code: 1 ./README.md:12:35 - Unknown word (Wikpedia) -- can be found on [my Wikpedia Commons user page](http ./README.md:20:26 - Unknown word (seperate) -- Every LaTeX file is in a seperate folder and has its own @@ -145,6 +145,7 @@ Lines: ./documents/Programmierparadigmen/Compilerbau.tex:337:26 - Unknown word (Ullman) -- Sethi und Jeffry D. Ullman. Pearson Verlag, 2. ./documents/Programmierparadigmen/Compilerbau.tex:337:6 - Unknown word (Sethi) -- Ravi Sethi und Jeffry D. Ullman ./documents/Programmierparadigmen/Compilerbau.tex:60:24 - Unknown word (Codee) -- \item der Java-Codee ist 123 Byte groß, +./documents/Programmierparadigmen/Haskell.tex:151:48 - Unknown word (BCDEF) -- ABCDEF"} gibt \texttt{"BCDEF"} zurück. ./documents/Programmierparadigmen/Haskell.tex:17:9 - Unknown word (ghci) -- \texttt{ghci} interpretiert und mittels ./documents/Programmierparadigmen/Haskell.tex:302:13 - Unknown word (Chruch) -- \subsection{Chruch-Zahlen} ./documents/Programmierparadigmen/Haskell.tex:31:39 - Unknown word (runghc) -- es direkt mit \texttt{runghc hello-world.hs} ausgef @@ -154,6 +155,7 @@ Lines: ./documents/Programmierparadigmen/Java-Bytecode.tex:112:38 - Unknown word (Präzendenz) -- Wird er mit Operatoren-Präzendenz ausgewertet, so gilt ./documents/Programmierparadigmen/Java-Bytecode.tex:16:44 - Unknown word (Stackframe) -- Record} ist ein \textit{Stackframe}.\index{Activation Record ./documents/Programmierparadigmen/Java-Bytecode.tex:21:59 - Unknown word (iadd) -- & iadd & fadd +./documents/Programmierparadigmen/Java-Bytecode.tex:21:74 - Unknown word (fadd) -- & iadd & fadd \\ ./documents/Programmierparadigmen/Java-Bytecode.tex:22:59 - Unknown word (iaload) -- packen & iaload & faload ./documents/Programmierparadigmen/Java-Bytecode.tex:22:74 - Unknown word (faload) -- & iaload & faload \\ ./documents/Programmierparadigmen/Java-Bytecode.tex:23:59 - Unknown word (iastore) -- speichern & iastore & fastore @@ -690,6 +692,7 @@ Lines: ./documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:64 - Unknown word (asasdf) -- wewe asdf asdf asdfa asasdf ./documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:7 - Unknown word (fsad) -- fasd fsad fasdf asdfa sdfasdf ./documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:40:1 - Unknown word (dasdfs) -- dasdfs. +./documents/colors/colors.tex:11:22 - Unknown word (DFECF) -- \textcolor[HTML]{DFECF7}{inline example}. ./documents/confirmation-zwischenmiete-re/confirmation-zwischenmiete-re.tex:13:52 - Unknown word (propper) -- slash]{siunitx} % for propper units ./documents/cooking-cuisine/cooking-cuisine.tex:21:16 - Unknown word (Mozzarrella) -- reiben und den Mozzarrella grob würfeln. Die Basilikumbl ./documents/cooking-cuisine/cooking-cuisine.tex:21:63 - Unknown word (abzupfen) -- Die Basilikumblätter abzupfen, waschen diff --git a/integration-tests/snapshots/SoftwareBrothers/admin-bro/snapshot.txt b/integration-tests/snapshots/SoftwareBrothers/admin-bro/snapshot.txt index 6b62827cb527..2b68090d0211 100644 --- a/integration-tests/snapshots/SoftwareBrothers/admin-bro/snapshot.txt +++ b/integration-tests/snapshots/SoftwareBrothers/admin-bro/snapshot.txt @@ -3,7 +3,8 @@ Repository: SoftwareBrothers/admin-bro Url: "https://github.com/SoftwareBrothers/admin-bro.git" Args: ["src/**/*.{ts,js,tsx,jsx}","**/*.md"] Lines: - CSpell: Files checked: 360, Issues found: 3 in 2 files + CSpell: Files checked: 360, Issues found: 4 in 3 files exit code: 1 ./cy/readme.md:433:45 - Unknown word (Favourite) -- Sequelize Resources” → Favourite Places link inside the +./src/cli.ts:18:35 - Unknown word (addde) -- all custom components addde by using AdminBro.bundle ./src/utils/flat/flat.doc.md:27:25 - Unknown word (JSONB) -- databases have nested JSONB properties or Mixed diff --git a/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt b/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt index 07738b9c843e..6377b6a57698 100644 --- a/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt +++ b/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt @@ -3,7 +3,7 @@ Repository: TheAlgorithms/Python Url: "https://github.com/TheAlgorithms/Python.git" Args: ["**/*.{md,py}"] Lines: - CSpell: Files checked: 766, Issues found: 2672 in 404 files + CSpell: Files checked: 766, Issues found: 2683 in 404 files exit code: 1 ./CONTRIBUTING.md:131:33 - Unknown word (pytest) -- doctests will be run by pytest as part of our automated ./CONTRIBUTING.md:134:14 - Unknown word (doctest) -- python3 -m doctest -v my_submission.py @@ -139,8 +139,6 @@ Lines: ./ciphers/affine_cipher.py:8:9 - Unknown word (abcdefghijklmnopqrstuvwxyz) -- r"""abcdefghijklmnopqrstuvwxyz{|}~""" ./ciphers/atbash.py:42:10 - Unknown word (timeit) -- from timeit import timeit ./ciphers/atbash.py:5:5 - Unknown word (atbash) -- def atbash_slow(sequence: str) -./ciphers/atbash.py:64:22 - Unknown word (ABCDEFGH) -- for example in ("ABCDEFGH", "123GGjj", "testStringtest -./ciphers/atbash.py:7:22 - Unknown word (ABCDEFG) -- >>> atbash_slow("ABCDEFG") ./ciphers/atbash.py:8:6 - Unknown word (ZYXWVUT) -- 'ZYXWVUT' ./ciphers/base64_encoding.py:17:53 - Unknown word (Steganography) -- encoding can be used in Steganography to hide data in these ./ciphers/base64_encoding.py:21:44 - Unknown word (Hacktoberfest) -- pull request is part of Hacktoberfest20!" @@ -333,6 +331,7 @@ Lines: ./conversions/prefix_conversions.py:13:5 - Unknown word (tera) -- tera = 12 ./conversions/prefix_conversions.py:14:5 - Unknown word (giga) -- giga = 9 ./conversions/prefix_conversions.py:17:5 - Unknown word (hecto) -- hecto = 2 +./conversions/prefix_conversions.py:18:5 - Unknown word (deca) -- deca = 1 ./conversions/prefix_conversions.py:19:5 - Unknown word (deci) -- deci = -1 ./conversions/prefix_conversions.py:20:5 - Unknown word (centi) -- centi = -2 ./conversions/prefix_conversions.py:21:5 - Unknown word (milli) -- milli = -3 @@ -426,7 +425,6 @@ Lines: ./dynamic_programming/iterating_through_submasks.py:2:15 - Unknown word (Faizan) -- Author : Syed Faizan (3rd Year Student IIIT ./dynamic_programming/iterating_through_submasks.py:2:40 - Unknown word (IIIT) -- Faizan (3rd Year Student IIIT Pune) ./dynamic_programming/iterating_through_submasks.py:3:10 - Unknown word (faizan) -- github : faizan2700 -./dynamic_programming/longest_common_subsequence.py:5:43 - Unknown word (abcdefgh) -- are subsequences of "abcdefgh". ./dynamic_programming/longest_common_subsequence.py:74:10 - Unknown word (AGGTAB) -- a = "AGGTAB" ./dynamic_programming/longest_common_subsequence.py:75:10 - Unknown word (GXTXAYB) -- b = "GXTXAYB" ./dynamic_programming/longest_common_subsequence.py:77:24 - Unknown word (GTAB) -- expected_subseq = "GTAB" @@ -865,6 +863,7 @@ Lines: ./strings/frequency_finder.py:32:1 - Unknown word (ETAOIN) -- ETAOIN = "ETAOINSHRDLCUMWFGYPBVKJXQZ ./strings/frequency_finder.py:32:11 - Unknown word (ETAOINSHRDLCUMWFGYPBVKJXQZ) -- ETAOIN = "ETAOINSHRDLCUMWFGYPBVKJXQZ" ./strings/jaro_winkler.py:10:33 - Unknown word (marhta) -- jaro_winkler("martha", "marhta") +./strings/jaro_winkler.py:14:31 - Unknown word (dbdbdbdb) -- jaro_winkler("test", "dbdbdbdb") ./strings/jaro_winkler.py:4:10 - Unknown word (winkler) -- def jaro_winkler(str1: str, str2: str ./strings/jaro_winkler.py:4:5 - Unknown word (jaro) -- def jaro_winkler(str1: str, str ./strings/knuth_morris_pratt.py:62:14 - Unknown word (alskfjaldsabc) -- text1 = "alskfjaldsabc1abc1abc12k23adsfabcabc @@ -872,12 +871,20 @@ Lines: ./strings/knuth_morris_pratt.py:63:14 - Unknown word (alskfjaldsk) -- text2 = "alskfjaldsk23adsfabcabc" ./strings/knuth_morris_pratt.py:67:16 - Unknown word (ABABX) -- pattern = "ABABX" ./strings/knuth_morris_pratt.py:68:13 - Unknown word (ABABZABABYABABX) -- text = "ABABZABABYABABX" +./strings/knuth_morris_pratt.py:72:16 - Unknown word (AAAB) -- pattern = "AAAB" +./strings/knuth_morris_pratt.py:73:13 - Unknown word (ABAAAAAB) -- text = "ABAAAAAB" ./strings/knuth_morris_pratt.py:77:16 - Unknown word (abcdabcy) -- pattern = "abcdabcy" ./strings/knuth_morris_pratt.py:78:13 - Unknown word (abcxabcdabxabcdabcdabcy) -- text = "abcxabcdabxabcdabcdabcy" +./strings/knuth_morris_pratt.py:82:16 - Unknown word (aabaabaaa) -- pattern = "aabaabaaa" ./strings/lower.py:8:6 - Unknown word (hellzo) -- 'hellzo' -./strings/naive_string_search.py:24:31 - Unknown word (ABCDEGFTEST) -- naive_pattern_search("ABCDEGFTEST", "TEST") +./strings/manacher.py:4:6 - Unknown word (abbba) -- 'abbba' +./strings/manacher.py:5:29 - Unknown word (ababa) -- palindromic_string('ababa') +./strings/naive_string_search.py:16:31 - Unknown word (ABAAABCDBBABCDDEBCABC) -- naive_pattern_search("ABAAABCDBBABCDDEBCABC", "ABC") +./strings/naive_string_search.py:24:31 - Unknown word (ABCDEGFTEST) -- naive_pattern_search("ABCDEGFTEST", "TEST") ./strings/prefix_function.py:17:60 - Unknown word (sufix) -- coincidence of prefix and sufix +./strings/prefix_function.py:22:26 - Unknown word (aabcdaabc) -- >> prefix_function("aabcdaabc") ./strings/prefix_function.py:24:26 - Unknown word (asdasdad) -- >> prefix_function("asdasdad") +./strings/prefix_function.py:54:25 - Unknown word (abcab) -- >>> longest_prefix("abcab") ./strings/rabin_karp.py:7:11 - Unknown word (karp) -- def rabin_karp(pattern: str, text: ./strings/rabin_karp.py:82:13 - Unknown word (Lüsai) -- text = "Lüsai" ./strings/reverse_letters.py:11:13 - Unknown word (nohty) -- 'I evol nohtyP' diff --git a/integration-tests/snapshots/alexiosc/megistos/snapshot.txt b/integration-tests/snapshots/alexiosc/megistos/snapshot.txt index 949f37e225b8..adbad0b4115b 100644 --- a/integration-tests/snapshots/alexiosc/megistos/snapshot.txt +++ b/integration-tests/snapshots/alexiosc/megistos/snapshot.txt @@ -2853,10 +2853,8 @@ Lines: ./ATTIC/src/modules/bulletins/offline.bulletins/download.c:52:58 - Unknown word (CRNL) -- DOS newline scheme (CRNL). ./ATTIC/src/modules/bulletins/offline.bulletins/offline.bulletins.c:174:10 - Unknown word (obupload) -- return obupload (); ./ATTIC/src/modules/bulletins/offline.bulletins/upload.c:156:3 - Unknown word (mkrequest) -- mkrequest (idx.area, -./ATTIC/src/modules/bulletins/search.c:69:66 - Unknown word (ABCDEFG) -- 6\107" /* 64-71 @ABCDEFG */ \ ./ATTIC/src/modules/bulletins/search.c:70:65 - Unknown word (HIJKLMNO) -- 16\117" /* 72-79 HIJKLMNO */ \ ./ATTIC/src/modules/bulletins/search.c:71:65 - Unknown word (PQRSTUVW) -- 26\127" /* 80-87 PQRSTUVW */ \ -./ATTIC/src/modules/bulletins/search.c:73:66 - Unknown word (abcdefg) -- /* 96-103 `abcdefg */ \ ./ATTIC/src/modules/bulletins/search.c:74:65 - Unknown word (hijklmno) -- /* 104-111 hijklmno */ \ ./ATTIC/src/modules/bulletins/search.c:75:65 - Unknown word (pqrstuvw) -- /* 112-119 pqrstuvw */ \ ./ATTIC/src/modules/bulletins/search.c:77:19 - Unknown word (ABGDEZIT) -- "ABGDEZIT" @@ -2882,6 +2880,7 @@ Lines: ./ATTIC/src/modules/emailclubs/bbsmail/bbsmail_run.c:143:3 - Unknown word (addihave) -- addihave (&msg); ./ATTIC/src/modules/emailclubs/bbsmail/bbsmail_run.c:98:3 - Unknown word (checkautofw) -- checkautofw (&msg); ./ATTIC/src/modules/emailclubs/bbsmail/database.c:110:44 - Unknown word (DBDIR) -- ("%s/%s", EMAILDIR, DBDIR)); +./ATTIC/src/modules/emailclubs/bbsmail/database.c:116:16 - Unknown word (ecdb) -- if (d_open (".ecdb", "s") != S_OKAY) { ./ATTIC/src/modules/emailclubs/bbsmail/database.c:127:10 - Unknown word (ecidx) -- struct ecidx idx; ./ATTIC/src/modules/emailclubs/bbsmail/database.c:134:14 - Unknown word (ECIDX) -- d_fillnew (ECIDX, &idx); ./ATTIC/src/modules/emailclubs/bbsmail/dump-ihave.c:19:9 - Unknown word (ihaverec) -- struct ihaverec ihave; diff --git a/integration-tests/snapshots/aws-amplify/docs/snapshot.txt b/integration-tests/snapshots/aws-amplify/docs/snapshot.txt index 58db1a69c4a2..8819e0006719 100644 --- a/integration-tests/snapshots/aws-amplify/docs/snapshot.txt +++ b/integration-tests/snapshots/aws-amplify/docs/snapshot.txt @@ -3,5 +3,6 @@ Repository: aws-amplify/docs Url: "https://github.com/aws-amplify/docs.git" Args: ["docs/**/*.md"] Lines: - CSpell: Files checked: 1137, Issues found: 0 in 0 files - exit code: 0 + CSpell: Files checked: 1137, Issues found: 1 in 1 files + exit code: 1 +./docs/cli/usage/mock.md:213:30 - Unknown word (deddd) -- ClientDatabasePrefix": "deddd_AMAZON_COGNITO_USER diff --git a/integration-tests/snapshots/django/django/snapshot.txt b/integration-tests/snapshots/django/django/snapshot.txt index a47f8a0dbdbd..dc4ecf21673f 100644 --- a/integration-tests/snapshots/django/django/snapshot.txt +++ b/integration-tests/snapshots/django/django/snapshot.txt @@ -3,7 +3,7 @@ Repository: django/django Url: "https://github.com/django/django.git" Args: ["**/*.{md,py}"] Lines: - CSpell: Files checked: 2125, Issues found: 7850 in 905 files + CSpell: Files checked: 2125, Issues found: 7862 in 905 files exit code: 1 ./django/apps/config.py:128:76 - Unknown word (isclass) -- getmembers(mod, inspect.isclass) ./django/apps/registry.py:132:40 - Unknown word (unconfigured) -- not ready" is due to unconfigured settings, accessing @@ -645,8 +645,8 @@ Lines: ./django/middleware/cache.py:21:31 - Unknown word (This'll) -- FetchFromCacheMiddleware``. This'll most often happen when ./django/middleware/common.py:125:13 - Unknown word (referer) -- referer = request.META.get( ./django/middleware/common.py:125:46 - Unknown word (REFERER) -- request.META.get('HTTP_REFERER', '') -./django/middleware/csrf.py:271:35 - Unknown word (dont) -- if getattr(request, '_dont_enforce_csrf_checks -./django/middleware/csrf.py:289:66 - Unknown word (MITM) -- (man-in-the-middle, MITM) sends a +./django/middleware/csrf.py:323:31 - Unknown word (dont) -- if getattr(request, '_dont_enforce_csrf_checks +./django/middleware/csrf.py:340:62 - Unknown word (MITM) -- (man-in-the-middle, MITM) sends a ./django/middleware/http.py:2:8 - Unknown word (delim) -- cc_delim_re, get_conditional ./django/template/__init__.py:34:19 - Unknown word (smartif) -- - django.template.smartif ./django/template/base.py:248:9 - Unknown word (upto) -- upto = 0 @@ -1063,7 +1063,7 @@ Lines: ./tests/auth_tests/test_basic.py:45:35 - Unknown word (jörg) -- objects.create_user('jörg') ./tests/auth_tests/test_basic.py:46:35 - Unknown word (Григорий) -- objects.create_user('Григорий') ./tests/auth_tests/test_basic.py:48:27 - Unknown word (iamthe) -- omega_username = 'iamtheΩ' # U+03A9 GREEK CAPITAL -./tests/auth_tests/test_context_processors.py:51:9 - Unknown word (pldict) -- pldict = PermLookupDict(MockUser +./tests/auth_tests/test_context_processors.py:58:9 - Unknown word (pldict) -- pldict = PermLookupDict(MockUser ./tests/auth_tests/test_decorators.py:100:14 - Unknown word (permissioned) -- def test_permissioned_denied_redirect(self ./tests/auth_tests/test_forms.py:1011:41 - Unknown word (Pucb) -- pbkdf2_sha256$100000$a6Pucb1qSFcD$WmCkn9Hqidj48NVe ./tests/auth_tests/test_forms.py:407:44 - Unknown word (Σαρα) -- create_user(username='Σαρα', password='pwd') @@ -1095,7 +1095,6 @@ Lines: ./tests/auth_tests/test_management.py:288:52 - Unknown word (eivatel) -- verbose_name = _('u\u017eivatel') ./tests/auth_tests/test_management.py:453:44 - Unknown word (mygroup) -- objects.create(name='mygroup') ./tests/auth_tests/test_management.py:534:14 - Unknown word (Orgs) -- 'Orgs (Organization.id): -./tests/auth_tests/test_models.py:161:26 - Unknown word (abcdefg) -- allowed_chars = 'abcdefg' ./tests/auth_tests/test_models.py:199:43 - Unknown word (gibbberish) -- User(password='some-gibbberish').has_usable_password ./tests/auth_tests/test_models.py:336:23 - Unknown word (nodots) -- for perm in ('nodots', 'too.many.dots', ./tests/auth_tests/test_models.py:437:27 - Unknown word (isactive) -- def test_builtin_user_isactive(self): @@ -1246,10 +1245,10 @@ Lines: ./tests/forms_tests/field_tests/test_durationfield.py:50:19 - Unknown word (nombre) -- msg = "Le nombre de jours doit être entre ./tests/forms_tests/field_tests/test_durationfield.py:50:29 - Unknown word (jours) -- msg = "Le nombre de jours doit être entre {min ./tests/forms_tests/field_tests/test_durationfield.py:50:40 - Unknown word (être) -- nombre de jours doit être entre {min_days} et +./tests/forms_tests/field_tests/test_emailfield.py:21:52 - Unknown word (xdfabc) -- idn.xyz\xe4\xf6\xfc\xdfabc.part.com', ./tests/forms_tests/field_tests/test_emailfield.py:22:47 - Unknown word (äöüßabc) -- local@domain.with.idn.xyzäöüßabc.part.com') ./tests/forms_tests/field_tests/test_regexfield.py:61:27 - Unknown word (éèøç) -- self.assertEqual('éèøçÎÎ你好', f.clean('éèøç ./tests/forms_tests/field_tests/test_slugfield.py:18:35 - Unknown word (ıçğüş) -- assertEqual(f.clean('ıçğüş'), 'ıçğüş') -./tests/forms_tests/tests/test_error_messages.py:132:54 - Unknown word (abcdefgh) -- INVALID'], f.clean, 'abcdefgh') ./tests/forms_tests/tests/test_forms.py:1360:25 - Unknown word (reuired) -- ({'class': 'reuired'}, {'class': 'required ./tests/forms_tests/tests/test_forms.py:1391:38 - Unknown word (unspec) -- _init__(self, allow_unspec_gender=False, *args ./tests/forms_tests/tests/test_forms.py:1641:64 - Unknown word (Contraseña) -- PasswordInput, label='Contraseña (de nuevo)') @@ -1379,6 +1378,7 @@ Lines: ./tests/gis_tests/geoapp/test_functions.py:176:14 - Unknown word (aswkt) -- def test_aswkt(self): ./tests/gis_tests/geoapp/test_functions.py:28:14 - Unknown word (asgeojson) -- def test_asgeojson(self): ./tests/gis_tests/geoapp/test_functions.py:453:15 - Unknown word (yfac) -- xfac, yfac = 2, 3 +./tests/gis_tests/geoapp/test_functions.py:453:9 - Unknown word (xfac) -- xfac, yfac = 2, 3 ./tests/gis_tests/geoapp/test_functions.py:476:28 - Unknown word (Marino) -- # Boundary for San Marino, courtesy of Bjorn Sandvik ./tests/gis_tests/geoapp/test_functions.py:476:48 - Unknown word (Bjorn) -- Marino, courtesy of Bjorn Sandvik of thematicmapping ./tests/gis_tests/geoapp/test_functions.py:476:54 - Unknown word (Sandvik) -- Marino, courtesy of Bjorn Sandvik of thematicmapping.org @@ -1779,6 +1779,7 @@ Lines: ./tests/queries/tests.py:2667:9 - Unknown word (objectcs) -- objectcs = [] ./tests/queries/tests.py:2678:56 - Unknown word (zwei) -- 2], objectbs[2]), ('zwei', objectas[1], objectbs ./tests/queries/tests.py:2701:16 - Unknown word (objectc) -- Q2 = Q(objectc__objectb__name='deux +./tests/queries/tests.py:2709:18 - Unknown word (BACB) -- def test_BAB_BACB(self): ./tests/queries/tests.py:3322:14 - Unknown word (revo) -- def test_revo2o_reuse(self): ./tests/queries/tests.py:3326:14 - Unknown word (revfk) -- def test_revfk_noreuse(self): ./tests/queries/tests.py:3326:20 - Unknown word (noreuse) -- def test_revfk_noreuse(self): @@ -1807,6 +1808,7 @@ Lines: ./tests/requests/tests.py:536:49 - Unknown word (Cnter) -- 'name=Hello%20G%C3%BCnter', ./tests/requests/tests.py:540:69 - Unknown word (nter) -- 'Hello G\u0102\u0152nter']}) ./tests/requests/tests.py:568:23 - Unknown word (recovermypassword) -- 'example.com: recovermypassword.com', +./tests/requests/tests.py:575:25 - Unknown word (feee) -- '[2001:19f0:feee::dead:beef:cafe]', ./tests/requests/tests.py:919:53 - Unknown word (Proto) -- PROTO', 'X-Forwarded-Proto'), ./tests/responses/test_fileresponse.py:41:16 - Unknown word (mkfifo) -- os.mkfifo(pipe_file) ./tests/responses/test_fileresponse.py:42:53 - Unknown word (RDONLY) -- open(pipe_file, os.O_RDONLY | os.O_NONBLOCK) @@ -1839,6 +1841,7 @@ Lines: ./tests/select_related/tests.py:36:36 - Unknown word (Plantae) -- create_tree("Eukaryota Plantae Magnoliophyta Magnoliopsida ./tests/select_related/tests.py:36:44 - Unknown word (Magnoliophyta) -- tree("Eukaryota Plantae Magnoliophyta Magnoliopsida Fabales ./tests/select_related/tests.py:36:58 - Unknown word (Magnoliopsida) -- Plantae Magnoliophyta Magnoliopsida Fabales Fabaceae Pisum +./tests/select_related/tests.py:36:80 - Unknown word (Fabaceae) -- Magnoliopsida Fabales Fabaceae Pisum sativum") ./tests/select_related/tests.py:36:89 - Unknown word (Pisum) -- agnoliopsida Fabales Fabaceae Pisum sativum") ./tests/select_related/tests.py:36:95 - Unknown word (sativum) -- Fabales Fabaceae Pisum sativum") ./tests/select_related/tests.py:37:42 - Unknown word (Basidiomycota) -- tree("Eukaryota Fungi Basidiomycota Homobasidiomycatae Agaricales @@ -1948,9 +1951,12 @@ Lines: ./tests/template_tests/syntax_tests/test_cache.py:109:65 - Unknown word (jurtles) -- bitled out/Its earted jurtles/' ./tests/template_tests/syntax_tests/test_cache.py:110:79 - Unknown word (gobberwarts) -- shall rend thee in the gobberwarts' ./tests/template_tests/syntax_tests/test_cache.py:111:30 - Unknown word (blurglecruncheon) -- 'with my blurglecruncheon/See if I don\'t.' +./tests/template_tests/syntax_tests/test_cycle.py:146:35 - Unknown word (bcabcabcccaa) -- assertEqual(output, 'bcabcabcccaa') +./tests/template_tests/syntax_tests/test_cycle.py:40:35 - Unknown word (abca) -- assertEqual(output, 'abca') ./tests/template_tests/syntax_tests/test_if.py:113:21 - Unknown word (noteq) -- @setup({'if-tag-noteq01': '{% if foo != bar ./tests/template_tests/syntax_tests/test_if_changed.py:26:41 - Unknown word (numx) -- '{% for x in numx %}{% ifchanged %}{{ ./tests/template_tests/syntax_tests/test_if_changed.py:48:41 - Unknown word (numy) -- '{% for y in numy %}{% ifchanged %}{{ +./tests/template_tests/syntax_tests/test_if_changed.py:62:35 - Unknown word (accd) -- assertEqual(output, 'accd') ./tests/template_tests/syntax_tests/test_include.py:240:14 - Unknown word (tmpl) -- 'tmpl': engine.from_string ./tests/template_tests/syntax_tests/test_list_index.py:53:41 - Unknown word (dict's) -- lookup wins out when dict's key is a string. ./tests/template_tests/syntax_tests/test_numpy.py:13:26 - Unknown word (Numpy) -- skipIf(numpy is False, "Numpy must be installed to @@ -2070,6 +2076,7 @@ Lines: ./tests/view_tests/tests/test_i18n.py:380:47 - Unknown word (cette) -- = 'il faut traduire cette cha\\u00eene de caract ./tests/view_tests/tests/test_i18n.py:380:61 - Unknown word (eene) -- traduire cette cha\\u00eene de caract\\u00e8res ./tests/view_tests/tests/test_i18n.py:404:49 - Unknown word (texto) -- ssertContains(response, 'este texto de app3 debe ser traducido +./tests/view_tests/tests/test_i18n.py:404:63 - Unknown word (debe) -- 'este texto de app3 debe ser traducido') ./tests/view_tests/tests/test_i18n.py:444:38 - Unknown word (Entfernen) -- assertEqual(elem.text, "Entfernen") ./tests/view_tests/tests/test_i18n.py:448:42 - Unknown word (Elemente) -- assertEqual(elem.text, "455 Elemente") ./tests/view_tests/tests/test_i18n.py:449:59 - Unknown word (onnonplural) -- element_by_id("ngettext_onnonplural") diff --git a/integration-tests/snapshots/googleapis/google-cloud-cpp/snapshot.txt b/integration-tests/snapshots/googleapis/google-cloud-cpp/snapshot.txt index c809fa13fbf8..ca158a1e180a 100644 --- a/integration-tests/snapshots/googleapis/google-cloud-cpp/snapshot.txt +++ b/integration-tests/snapshots/googleapis/google-cloud-cpp/snapshot.txt @@ -3,7 +3,7 @@ Repository: googleapis/google-cloud-cpp Url: "https://github.com/googleapis/google-cloud-cpp.git" Args: ["-c","ci/cspell.json","**/*","-e","{*.BUILD,BUILD,CHANGELOG.md,*.sh,*.cfg,*.ps1,Dockerfile.*,*.Dockerfile,*.{yaml,xml,json,cmake}}"] Lines: - CSpell: Files checked: 1762, Issues found: 3102 in 237 files + CSpell: Files checked: 1763, Issues found: 3105 in 238 files exit code: 1 ./ARCHITECTURE.md:186:1 - Unknown word (discoverability) -- discoverability of available option ./ARCHITECTURE.md:22:61 - Unknown word (retriable) -- RPCs that fail with a retriable error, @@ -97,6 +97,7 @@ Lines: ./doc/adr/2019-03-26-binary-distributions.md:10:75 - Unknown word (dpkg) -- might want to use (e.g., dpkg, ./doc/adr/2019-03-26-binary-distributions.md:11:6 - Unknown word (vcpkg) -- rpm, vcpkg). ./doc/adr/2019-03-26-binary-distributions.md:16:64 - Unknown word (packageable) -- make our code easily packageable by +./doc/adr/2021-05-18-credential-failures-participate-in-retry-loop.md:18:19 - Unknown word (retryable) -- refreshes **are** retryable, even if the operation ./doc/contributor/README.md:62:68 - Unknown word (pkgs) -- that distro: search on pkgs.org, ./doc/contributor/README.md:63:1 - Unknown word (repology) -- repology.org, or Google; or just ./doc/contributor/howto-guide-forks-and-pull-requests.md:88:14 - Unknown word (Googler) -- If you are a Googler, when you submit your diff --git a/integration-tests/snapshots/graphql/graphql-js/snapshot.txt b/integration-tests/snapshots/graphql/graphql-js/snapshot.txt index 8e8444683a75..3566b052e376 100644 --- a/integration-tests/snapshots/graphql/graphql-js/snapshot.txt +++ b/integration-tests/snapshots/graphql/graphql-js/snapshot.txt @@ -3,5 +3,8 @@ Repository: graphql/graphql-js Url: "https://github.com/graphql/graphql-js.git" Args: ["**/*.*"] Lines: - CSpell: Files checked: 302, Issues found: 0 in 0 files - exit code: 0 + CSpell: Files checked: 302, Issues found: 5 in 1 files + exit code: 1 +./src/jsutils/__tests__/suggestionList-test.ts:25:33 - Unknown word (aaab) -- expectSuggestions('aaaa', ['aaab']).to.deep.equal(['aaab +./src/jsutils/__tests__/suggestionList-test.ts:26:33 - Unknown word (aabb) -- expectSuggestions('aaaa', ['aabb']).to.deep.equal(['aabb +./src/jsutils/__tests__/suggestionList-test.ts:27:33 - Unknown word (abbb) -- expectSuggestions('aaaa', ['abbb']).to.deep.equal([] diff --git a/integration-tests/snapshots/liriliri/licia/snapshot.txt b/integration-tests/snapshots/liriliri/licia/snapshot.txt index 7b969b5ca2c6..2008fe91d042 100644 --- a/integration-tests/snapshots/liriliri/licia/snapshot.txt +++ b/integration-tests/snapshots/liriliri/licia/snapshot.txt @@ -3,7 +3,7 @@ Repository: liriliri/licia Url: "https://github.com/liriliri/licia.git" Args: ["**/*.*"] Lines: - CSpell: Files checked: 1345, Issues found: 326 in 81 files + CSpell: Files checked: 1345, Issues found: 351 in 87 files exit code: 1 ./CHANGELOG.md:207:26 - Unknown word (unenumerable) -- feat(allKeys): support unenumerable and symbol ./CHANGELOG.md:65:22 - Unknown word (eval) -- fix(Class): unsafe-eval CSP violation @@ -15,6 +15,7 @@ Lines: ./DOC.md:9630:10 - Unknown word (dasherize) -- Create a dasherize version. ./DOC_CN.md:10158:5 - Unknown word (substr) -- substr: string, ./DOC_CN.md:10159:8 - Unknown word (Substr) -- newSubstr: string +./DOC_CN.md:10340:30 - Unknown word (abcab) -- abc', 5, 'ab'); // -> 'abcab' ./DOC_CN.md:11266:20 - Unknown word (mcake) -- stripAnsi('\u001b[4mcake\u001b[0m'); // -> 'cake ./DOC_CN.md:11306:22 - Unknown word (mred) -- stripColor('\u001b[31mred\u001b[39m'); // -> ./DOC_CN.md:11898:43 - Unknown word (mouseup) -- getElementById('test'), 'mouseup'); @@ -33,8 +34,12 @@ Lines: ./DOC_CN.md:5728:5 - Unknown word (readdir) -- readdir(path: string): Promise ./DOC_CN.md:6799:44 - Unknown word (Fdvcmxk) -- plain;base64,SGVsbG8sIFdvcmxkIQ%3D%3D'); // -> true ./DOC_CN.md:687:24 - Unknown word (instanceof) -- return obj instanceof Student; +./DOC_CN.md:8279:30 - Unknown word (ababc) -- abc', 5, 'ab'); // -> 'ababc' ./DOC_CN.md:8559:2 - Unknown word (metas) -- |metas|包含所有 meta 键值对的对象| ./DOC_CN.md:8934:18 - Unknown word (etag) -- normalizeHeader('etag'); // -> 'ETag' +./DOC_CN.md:9272:29 - Unknown word (babca) -- abc', 5, 'ab'); // -> 'babca' +./DOC_CN.md:9273:28 - Unknown word (ababa) -- ab', 5, 'ab'); // -> 'ababa' +./DOC_CN.md:9890:28 - Unknown word (cbbcb) -- randomId(5, 'abc'); // -> 'cbbcb' ./README.md:26:141 - Unknown word (mout) -- such as underscore, mout, which strictly separates ./README_CN.md:32:9 - Unknown word (zepto) -- 你不再需要引入 zepto 了,因为已经有个类 jQuery 的模 ./demo/MediaQuery.demo.html:6:20 - Unknown word (unmatch) -- mediaQuery.on('unmatch', () => console.log @@ -69,6 +74,7 @@ Lines: ./src/isMobile.js:23:329 - Unknown word (xiino) -- vodafone|wap|windows ce|xda|xiino/i; ./src/isMobile.js:23:38 - Unknown word (meego) -- egMobileAll = /(android|bb\d+|meego).+mobile|avantgo|bada ./src/isMobile.js:23:53 - Unknown word (avantgo) -- bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer +./src/isMobile.js:23:61 - Unknown word (bada) -- meego).+mobile|avantgo|bada\/|blackberry|blazer ./src/isMobile.js:24:1006 - Unknown word (pdxg) -- owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil ./src/isMobile.js:24:1034 - Unknown word (pire) -- 13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck ./src/isMobile.js:24:1072 - Unknown word (psio) -- 2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12| @@ -105,6 +111,7 @@ Lines: ./src/isMobile.js:24:638 - Unknown word (jemu) -- ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( ./src/isMobile.js:24:653 - Unknown word (keji) -- jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt ./src/isMobile.js:24:668 - Unknown word (klon) -- kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le +./src/isMobile.js:24:73 - Unknown word (abac) -- -6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn ./src/isMobile.js:24:732 - Unknown word (libw) -- k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\ ./src/isMobile.js:24:812 - Unknown word (mmef) -- rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t ./src/isMobile.js:24:863 - Unknown word (mwbp) -- v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2 @@ -138,6 +145,7 @@ Lines: ./test/abbrev.js:18:10 - Unknown word (foom) -- 'foom', ./test/abbrev.js:54:13 - Unknown word (foldi) -- foldi: 'folding', ./test/abbrev.js:55:13 - Unknown word (foldin) -- foldin: 'folding', +./test/abbrev.js:67:10 - Unknown word (acde) -- 'acde', ./test/ajax.js:159:72 - Unknown word (sinon's) -- environment because of sinon's implementation details ./test/css.js:136:47 - Unknown word (webfont) -- fonts/OpenSans-Regular-webfont.woff2") format("woff ./test/detectBrowser.js:37:63 - Unknown word (KHTML) -- AppleWebKit/537.36 (KHTML, like Gecko) Chrome @@ -148,6 +156,7 @@ Lines: ./test/isMobile.js:12:170 - Unknown word (Xiao) -- Mobile Safari/537.36 XiaoMi/MiuiBrowser/8.0.1 ./test/isMobile.js:12:177 - Unknown word (Miui) -- Safari/537.36 XiaoMi/MiuiBrowser/8.0.11'; ./test/isMobile.js:12:51 - Unknown word (Redmi) -- Android 5.0.2; zh-cn; Redmi Note 2 Build/LRX22G +./test/pad.js:6:22 - Unknown word (babab) -- ['ab', 5, 'ab', 'babab'], ./test/raf.js:3:5 - Unknown word (borwser) -- it('borwser', function() { ./test/stringifyAll.js:149:9 - Unknown word (inifinity) -- inifinity: Number.POSITIVE_INFINITY ./test/stringifyAll.js:150:17 - Unknown word (Inifinity) -- negativeInifinity: Number.NEGATIVE_INFINITY diff --git a/integration-tests/snapshots/microsoft/TypeScript-Website/snapshot.txt b/integration-tests/snapshots/microsoft/TypeScript-Website/snapshot.txt index d90a981b9522..7116814c7c1c 100644 --- a/integration-tests/snapshots/microsoft/TypeScript-Website/snapshot.txt +++ b/integration-tests/snapshots/microsoft/TypeScript-Website/snapshot.txt @@ -3,7 +3,7 @@ Repository: microsoft/TypeScript-Website Url: "https://github.com/microsoft/TypeScript-Website.git" Args: ["--config=../../../../config/repositories/microsoft/TypeScript-Website/cspell.json","**/*.*"] Lines: - CSpell: Files checked: 725, Issues found: 649 in 147 files + CSpell: Files checked: 725, Issues found: 653 in 148 files exit code: 1 ./docs/Deprecating a page.md:3:109 - Unknown word (Dont) -- deleting because [Cool URIs Dont Change](https://www ./docs/New TypeScript Version.md:115:67 - Unknown word (schemastore) -- schemastore.git /tmp/schemastore @@ -56,6 +56,7 @@ Lines: ./packages/documentation/copy/en/reference/Type Compatibility.md:48:42 - Unknown word (Weatherwax) -- Lassie", owner: "Rudd Weatherwax" }; ./packages/documentation/copy/en/reference/Utility Types.md:393:263 - Unknown word (uppercasestringtype) -- template-literal-types.html#uppercasestringtype) documentation. ./packages/documentation/copy/en/reference/Utility Types.md:99:39 - Unknown word (Shorthair) -- 16, breed: "British Shorthair" }, +./packages/documentation/copy/en/release-notes/Overview.md:160:5 - Unknown word (badda) -- badda() {} ./packages/documentation/copy/en/release-notes/Overview.md:1796:72 - Unknown word (comformant) -- this rule to be more comformant. ./packages/documentation/copy/en/release-notes/Overview.md:1799:117 - Unknown word (Zacher) -- enforcing this from [Brad Zacher](https://github.com ./packages/documentation/copy/en/release-notes/Overview.md:1898:98 - Unknown word (pathurs) -- ) from GitHub user [pathurs](https://github.com @@ -113,6 +114,7 @@ Lines: ./packages/playground/src/ds/createDesignSystem.ts:334:15 - Unknown word (childers) -- const childers = document.createElement ./packages/sandbox/script/downloadReleases.js:15:23 - Unknown word (prereleases) -- // Look through the prereleases to see if the beta and ./packages/sandbox/src/index.ts:27:32 - Unknown word (plaayground) -- default file for the plaayground */ +./packages/sandbox/src/theme.ts:12:53 - Unknown word (fffffe) -- 0000", background: "fffffe" }, ./packages/sandbox/src/tsWorker.ts:44:5 - Unknown word (postion) -- postion: number, ./packages/sandbox/src/tsWorker.ts:50:5 - Unknown word (positon) -- positon: number, ./packages/sandbox/src/vendor/lzstring.min.js:6:28 - Unknown word (Hocevar) -- Copyright (C) 2004 Sam Hocevar @@ -121,6 +123,7 @@ Lines: ./packages/ts-twoslasher/src/index.ts:456:11 - Unknown word (lsped) -- const lspedQueries = updates.queries ./packages/tsconfig-reference/copy/en/options/preserveSymlinks.md:8:50 - Unknown word (Webpack’s) -- opposite behavior to Webpack’s `resolve.symlinks` option ./packages/tsconfig-reference/copy/en/options/sourceMap.md:37:28 - Unknown word (UAAU) -- mappings": ";;AAAa,QAAA,UAAU,GAAG,IAAI,CAAA" +./packages/tsconfig-reference/copy/en/options/sourceMap.md:37:43 - Unknown word (CAAA) -- QAAA,UAAU,GAAG,IAAI,CAAA" ./packages/tsconfig-reference/scripts/msbuild/Microsoft.TypeScript.targets:133:113 - Unknown word (codepage) -- eScriptBuildConfigurations) --codepage $(TypeScriptCodePage ./packages/tsconfig-reference/scripts/msbuild/Microsoft.TypeScript.targets:198:25 - Unknown word (Cordova) --