Jump to content
The Dark Mod Forums

Search the Community

Searched results for '/tags/forums/game error/' or tags 'forums/game error/q=/tags/forums/game error/&'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • News & Announcements
    • The Dark Mod
    • Fan Missions
    • Off-Topic
  • Feedback and Support
    • TDM Tech Support
    • DarkRadiant Feedback and Development
    • I want to Help
  • Editing and Design
    • TDM Editors Guild
    • Art Assets
    • Music & SFX

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. After some amount of work I'm happy to be able to share my Christmas gift for TDM! Or at least half of it, considering the other half is still only in design phase. I created an addon that implements detailed player functionality, inspired by the first DeusEx game (The Conspiracy). It's NOT a mission script but an addon, meaning you place the pk4 in your TDM directory to enable the system and it will automatically work in each and every FM. Note that due to using tdm_user_addons.script / user_addon_init() it may disable or get disabled by other addons you have installed... this is a design limitation which can hopefully be lifted at some point in the future. This plugin will be included in my cyberpunk total conversion The Dark Module and automatically active with it, but first I shall design it and make it available as a small independent addon for vanilla TDM. In the current initial release it implements just per-limb damage; The upcoming plan is to add a skill / augmentation system, allowing the player to use loot as skill points to enhance various body parts and gain new or improved abilities. Due to the scripting system being very limited in what it lets me modify, I'm still gathering documentation on how to implement those skills and which I can have. So until then detailed body damage with penalties remains the only part that's theoretically finished so far (further improvements are required here too)... including a HUD component above the lightgem showing the status of each body part: Green = full health, yellow = half health, red = (close to) no health, black = no health left. The individual limbs available: Head, Torso, Left Arm, Right Arm, Left Leg, Right Leg... arms and legs work in unity however. They each take damage with the player as well as healing together with them. The more damaged a group is, the more a respective penalty is applied to the player. Groups and penalties include: Head: When the head is damaged, the player begins to get dizzy and has their vision impaired. Currently the only effect replicates the flashbomb, causing white dots to appear around the player and disrupt their view until the head is healed. As the player can't live without a head, reaching 0 will cause instant death. More effects are possible and pending. Torso: Damage to the torso translates to damage to the cloak, increasing the player's lightgem and rendering them more visible even in dark spots. As the player can't live without a torso, reaching 0 will cause instant death. Given script limitations I'm unable to simulate lung damage and decrease / limit the amount of air the player has. Arms: Arm damage makes it difficult for the player to hold items: In-world objects being held will probabilistically get dropped, more often the worse your arms are hurt. When both arms reach 0 health, the player can no longer pick up anything in the world without instantly dropping it... you also become unable to use any weapons. Due to limitations in the scripting system, I'm unable to decrease the speed or accuracy of the blackjack / sword / bow as was desired. Legs: As expected leg damage will make the player walk more slowly. It was desired that when one leg is lost the player can no longer jump, whereas when both legs are gone you remain stuck in crouch mode until healed... due to limitations in the scripting system this part is also not possible at the moment. A crude limitation is the fact that limb damage is primarily based on the direction the player is walking toward... for example, increased likelihood of suffering damage to your right arm and leg if strafing right the moment you take the damage. The script system doesn't let you extract the vector direction of the last damage event, thus I can't use the real direction the hit came from when calculating which body part should absorb the most health loss. This means that even if an arrow comes from above and hits the player's head area, the player will only take damage to the legs if they're falling downward the moment they got hit... for the time being this provides a bare minimum amount of realism but is a very bitter implementation. For this reason it would be greatly appreciated if any of the code developers could join this discussion and verify if they can help with adding the necessary hooks to external scripts: With 2.09 getting periodic beta releases at this point in time, it would be a great opportunity to make changes to the builtin player script that allow an external function to modify more player variables. This includes the efficiency of weapons, if the player is allowed to jump or forced to always crouch, and I'd also really appreciate a hook to manipulate the breath so air can be lowered as if the player is underwater. I understand other priorities exist or if the work may be considered too much, however this would help in being able to finish this mod with the proper functionality and planned skill set. In the meantime let me know what you think of this idea and how I went about it! So far no new assets are included except the GUI graphics: Everything is done with less than 250 lines of script which I'd say is a good achievement I've attached the pk4 and since it's so lightweight I'll also add the main script straight in this post. player_damage_1.0.pk4 #define DAMAGE_WAIT 0.0166667 #define EXPOSURE_ARM_LEFT 2 #define EXPOSURE_ARM_RIGHT 2 #define EXPOSURE_LEG_LEFT 2 #define EXPOSURE_LEG_RIGHT 2 #define EXPOSURE_HEAD 3 #define EXPOSURE_TORSO 1 #define PENALTY_TORSO_LIGHTGEM 4 player self; float damage_gui; boolean dizzy; entity dizzy_particles; float bound(float val, float min, float max) { if(val < min) return min; if(val > max) return max; return val; } // Range based probability: Calculates a probability per frame independent of wait time (0 - 1 range at 1 chance per second) boolean prob(float x) { return sys.random(1) > x && sys.random(1) < DAMAGE_WAIT; } // Directional exposure calculator float dex(vector dir, float ex_front, float ex_back, float ex_right, float ex_left, float ex_up, float ex_down) { float maxvel = 100; float dir_front = bound(dir_x / maxvel, 0, 1) * ex_front; float dir_back = bound(-dir_x / maxvel, 0, 1) * ex_back; float dir_right = bound(dir_y / maxvel, 0, 1) * ex_right; float dir_left = bound(-dir_y / maxvel, 0, 1) * ex_left; float dir_up = bound(dir_z / maxvel, 0, 1) * ex_up; float dir_down = bound(-dir_z / maxvel, 0, 1) * ex_down; return dir_front + dir_back + dir_right + dir_left + dir_up + dir_down; } void player_damage_update_arm(float dmg_l, float dmg_r) { float hl_l = self.getFloatKey("health_arm_left"); float hl_r = self.getFloatKey("health_arm_right"); float hl = (hl_l + hl_r) / 2; if(dmg_l != 0 || dmg_r != 0) { hl_l = bound(hl_l - dmg_l, 0, 1); hl_r = bound(hl_r - dmg_r, 0, 1); hl = (hl_l + hl_r) / 2; self.setKey("health_arm_left", hl_l); self.setKey("health_arm_right", hl_r); self.setGuiFloat(damage_gui, "PlayerDamage_ItemArmLeft", hl_l); self.setGuiFloat(damage_gui, "PlayerDamage_ItemArmRight", hl_r); // Penalty #1: Disable the weapon once the arm are damaged to minimum health if(hl == 0) { self.selectWeapon(WEAPON_UNARMED); self.disableWeapon(); } else { self.enableWeapon(); } } // Penalty #2: Probabilistically drop held items based on arm damage if(hl == 0 || prob(hl)) if(self.heldEntity() != $null_entity) self.holdEntity($null_entity); } void player_damage_update_leg(float dmg_l, float dmg_r) { float hl_l = self.getFloatKey("health_leg_left"); float hl_r = self.getFloatKey("health_leg_right"); float hl = (hl_l + hl_r) / 2; if(dmg_l != 0 || dmg_r != 0) { hl_l = bound(hl_l - dmg_l, 0, 1); hl_r = bound(hl_r - dmg_r, 0, 1); hl = (hl_l + hl_r) / 2; self.setKey("health_leg_left", hl_l); self.setKey("health_leg_right", hl_r); self.setGuiFloat(damage_gui, "PlayerDamage_ItemLegLeft", hl_l); self.setGuiFloat(damage_gui, "PlayerDamage_ItemLegRight", hl_r); // #Penalty #1: Make movement slower self.setHinderance("health", 0.25 + hl * 0.75, 1); } } void player_damage_update_head(float dmg) { float hl = self.getFloatKey("health_head"); float time_current = sys.getTime(); if(dmg != 0) { hl = bound(hl - dmg, 0, 1); self.setKey("health_head", hl); self.setGuiFloat(damage_gui, "PlayerDamage_ItemHead", hl); // Penalty #1: Without a head the player dies if(hl == 0) self.damage(self, self, self.getOrigin(), "damage_suicide", 1); // Penalty #2: Simulate dizzyness starting at half health if(hl <= 0.5) { if(!dizzy) { dizzy_particles = sys.spawn("func_emitter"); dizzy_particles.setModel("flashbomb.prt"); dizzy_particles.setOrigin(self.getEyePos()); dizzy_particles.bind(self); dizzy = true; } } else { if(dizzy) { dizzy_particles.remove(); dizzy = false; } } } } void player_damage_update_torso(float dmg) { float hl = self.getFloatKey("health_torso"); if(dmg != 0) { hl = bound(hl - dmg, 0, 1); self.setKey("health_torso", hl); self.setGuiFloat(damage_gui, "PlayerDamage_ItemTorso", hl); // Penalty #1: Without a torso the player dies if(hl == 0) self.damage(self, self, self.getOrigin(), "damage_suicide", 1); // Penalty #2: Torso damage negatively affects the lightgem self.setLightgemModifier("damage", (1 - hl) * PENALTY_TORSO_LIGHTGEM); } } void player_damage() { sys.waitFrame(); self = $player1; damage_gui = self.createOverlay("guis/player_damage.gui", 1); float health_old = 100; // Init by sending a heal event filling the limbs to full health player_damage_update_arm(-1, -1); player_damage_update_leg(-1, -1); player_damage_update_head(-1); player_damage_update_torso(-1); while(1) { // sys.waitFrame(); sys.wait(DAMAGE_WAIT); float health_current = self.getHealth(); float dmg = (health_old - health_current) / 100; float dmg_arm_left = dmg * EXPOSURE_ARM_LEFT; float dmg_arm_right = dmg * EXPOSURE_ARM_RIGHT; float dmg_leg_left = dmg * EXPOSURE_LEG_LEFT; float dmg_leg_right = dmg * EXPOSURE_LEG_RIGHT; float dmg_head = dmg * EXPOSURE_HEAD; float dmg_torso = dmg * EXPOSURE_TORSO; // If this is damage and not healing, apply directional damage to each limb if(dmg > 0) { // Currently we estimate damage direction based on the player's velocity, we should fetch the real direction of a damage event when this becomes possible vector dir = self.getMove(); vector ang = self.getViewAngles(); // Protections based on the player's position and relation to the environment // protection_look: 1 when looking up, 0 when looking down // protection_low: Higher as the lower part of the body is exposed float protection_look = 1 - (90 + ang_x) / 180; float protection_low = 1; if(self.AI_CROUCH) protection_low = 0; else if(self.AI_ONGROUND) protection_low = 0.75; // Use the dex function to calculate directional exposure patterns, direction order: Front, back, right, left, up, down // Arms: Somewhat likely to be hit, no added protection // Legs: Somewhat likely to be hit, added protection when the player is crouching // Head: Unlikely to be hit, added protection when the player is looking down // Torso: Likely to be hit, no added protection float exposure_arm_left = bound(sys.random(0.375) + dex(dir, 0.5, 0.25, 0.0, 1.0, 0.0, 0.25), 0, 1); float exposure_arm_right = bound(sys.random(0.375) + dex(dir, 0.5, 0.25, 1.0, 0.0, 0.0, 0.25), 0, 1); float exposure_leg_left = bound(sys.random(0.375) + dex(dir, 0.75, 0.5, 0.0, 0.5, 0.0, 1.0) * protection_low, 0, 1); float exposure_leg_right = bound(sys.random(0.375) + dex(dir, 0.75, 0.5, 0.5, 0.0, 0.0, 1.0) * protection_low, 0, 1); float exposure_head = bound(sys.random(0.25) + dex(dir, 0.25, 0.75, 0.5, 0.5, 1.0, 0.0) * protection_look, 0, 1); float exposure_torso = bound(sys.random(0.5) + dex(dir, 0.75, 1.0, 0.0, 0.0, 0.0, 0.0), 0, 1); // Apply the exposure to damage, multiplied to simulate the sensitivity / resistance of each limb dmg_arm_left = exposure_arm_left * dmg * EXPOSURE_ARM_LEFT; dmg_arm_right = exposure_arm_right * dmg * EXPOSURE_ARM_RIGHT; dmg_leg_left = exposure_leg_left * dmg * EXPOSURE_LEG_LEFT; dmg_leg_right = exposure_leg_right * dmg * EXPOSURE_LEG_RIGHT; dmg_head = exposure_head * dmg * EXPOSURE_HEAD; dmg_torso = exposure_torso * dmg * EXPOSURE_TORSO; } player_damage_update_arm(dmg_arm_left, dmg_arm_right); player_damage_update_leg(dmg_leg_left, dmg_leg_right); player_damage_update_head(dmg_head); player_damage_update_torso(dmg_torso); health_old = health_current; } }
  2. WOAH! Great work!! It's kinda funny that you have to take a potion, but that could actually be an interesting thing you buy at an in-game shop. maybe to herd zombie AIs? Anyway, this is cool and I hope you share a test map please
  3. I get this message when the game starts:
  4. @Petike the Taffer Well that was challenging, but I managed to get it to work with a dummy AI (but with a warning message). Using hide doesn't work on the dummy, as each time it moves it un-hides. You need to use an invisible model. I used the atdm:ai_base, which surprisingly worked with these spawn args so it doesn't interfere with the player position and is inert as possible. Then you just need to trigger a follow script, e.g.: void follow_dummy() { $dummy.setOrigin($player1.getOrigin()); $dummy.hide(); //not sure why this is needed, but it stopped working when I deleted it sys.wait(0.2); //needed to prevent game from hanging thread follow_dummy(); } Alternatively, I tried to just bind the dummy to the player instead, but then the follower ai wouldn't follow me.
  5. Do we have one of these? I know we kind of have one for upcoming TDM projects, but not a general game thread. I'll start. Elden Ring:
  6. Author Note: Shadows of Northdale is a new campaign that takes place in a city called Northdale that is situated up in the mountains of the western empire. Across the campaign the player will traverse through the varying districts of the city with each mission featuring it's own unique location as well as different locations in the city hub to access. ACT I is the first mission which is designed to introduce the player to the city hub area and the new mechanics available to them. During the first night in the city hub section there are a couple of places to explore however this will expand and open up further as you progress through the campaign's missions. This mission features some aspects which are different to the usual dark mod FM experience which are: - Food is an item that is picked up and stored in your inventory, pressing the use key with the food item highlighted will cause the player to eat it and gain 5hp - There is an ingame fence where you can purchase gear using any loot you may have found during the mission, you can visit him as many times as you wish but do be mindful of your loot goals - Also inside the fence's shop are contracts, these are readables which detail tasks that a client wishes you to complete for an agreed sum of gold. Upon completing them you will be rewarded with the designated sum immediately - Because you are not a wanted criminal (yet) the citywatch will only attack you if they catch you breaking the law or find you near the scene of a crime - Candles are pinchable in this mission, frobbing them causes Corbin to pinch them to put them out rather than pick them up The mission was designed and tested on 2.05, if you are playing on any other version there may be bugs present. If you enjoyed the mission please feel free to leave a review, I enjoy reading them and it gives me inspiration for my next projects. Tell me what you felt worked and what you felt could be improved for next time. Have fun taffers! - Goldwell. 2.06 UPDATE INFO: If you are experiencing any path finding issues (AI walking around in circles or getting stuck) on 2.06 then please enter the following console command to resolve these issues cm_backFaceCull 0. Thanks goes to Nbohr1more for solving that! Testers Crowind Epifire Kingsal Random_Taffer Skacky SquadaFroinx Voice Actors AndrosTheOxen Goldwell SlyFoxx Custom assets Andreas Rocha Bentraxx Bob Necro Dragofer Epifire Freesound Kingsal MalachiAD Tannar And a very special thank you to the following people without whom the mission would not exist: Epifire for creating some amazing detailed custom models that help bring a unique layer that wouldn't be possible without it. Seriously go check out his modeling page! Dude is very talented https://sketchfab.com/Epifire Grayman for helping to debug a lot of critical bugs in the mission, without him there wouldnt be a mission Kingsal and Skacky for helping out with excellent tips on level design, flow and lighting Moonbo for lending his writing talents to help optimize the briefing video script Obsttorte for making the majority of the scripts featured in this mission, and for dealing with my constant nagging about issues and bugs, you are awesome! SlyFoxx for lending his vocal talents and making the fence character come to life and sound great SquadaFroinx for providing thorough beta reports (that are equally hilarious as they are useful) And finally a huge thank you to Tannar for drawing the fantastic looking ingame map Available via in-game downloader MIRROR File Size: 295 mb
  7. Since hightide obtained it, it must be Also, why is nobody mentioning the elephant in the room and that is - why does Jonathan Taylor Thomas have to move and why is there no poster of him in the game, yet on the main menu screen there is?
  8. Hello again I just want you guys to double check fms because i think files got mixed up Localization Packs: Vengeance for a Thief Part 1 its says it is for a pawn in the game localization pack String table English (iso-8859-1) for: Vengeance for a Thief Part 1: A Pawn in the Game But it is under VFAT1: The Angel's Tear download I have looked in my fm archieve and i foun fm named The Accountant: Part 1 - A Noble Home (prologue) It is not listed in download section. any idea about this one ?? is it a part of accountant campaign ? Is it obsolete ? or it is missed ? Also i came across Samhain Night on Bone Hill By PranQster Version: 0.9.7 Back again to version matter. Maybe it is not important to keep versions, maybe it is. For me it is important as i am updating my archive of fms so it is nice to just see version straight away than looking in every pk4 file for it. Also it would be very helpful just to add in download section beside released date, update date as well Maybe Sir You just like me. You look but you can not see TDM Fan Mission Lists: Released and Upcoming Thread https://wiki.thedarkmod.com/index.php?title=Fan_Missions_for_The_Dark_Mod
  9. Tried, I updated to that revision but can't build: 1>------ Build started: Project: ExtLibs, Configuration: Release x64 ------ 1>amigaos.c 1>asyn-ares.c 1>asyn-thread.c 1>base64.c 1>bundles.c 1>conncache.c 1>connect.c 1>content_encoding.c 1>cookie.c 1>curl_addrinfo.c 1>curl_fnmatch.c 1>curl_gethostname.c 1>curl_gssapi.c 1>curl_memrchr.c 1>curl_multibyte.c 1>curl_ntlm.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\asyn-ares.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_multibyte.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\amigaos.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_memrchr.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\bundles.c) 1>curl_ntlm_core.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_ntlm.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_fnmatch.c) 1>curl_ntlm_msgs.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_gethostname.c) 1>curl_ntlm_wb.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\base64.c) 1>curl_rtmp.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_gssapi.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\cookie.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\content_encoding.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_addrinfo.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\asyn-thread.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\conncache.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\connect.c) 1>curl_sasl.c 1>curl_sasl_sspi.c 1>curl_sspi.c 1>curl_threads.c 1>dict.c 1>dotdot.c 1>easy.c 1>escape.c 1>file.c 1>fileinfo.c 1>formdata.c 1>ftp.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_rtmp.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_sasl.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_ntlm_wb.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_ntlm_msgs.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_ntlm_core.c) 1>ftplistparser.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_sspi.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_sasl_sspi.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\curl_threads.c) 1>getenv.c 1>getinfo.c 1>gopher.c 1>hash.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\dotdot.c) 1>hmac.c 1>hostasyn.c 1>hostcheck.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\fileinfo.c) 1>hostip.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\dict.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\file.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\escape.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\easy.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\formdata.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\ftp.c) 1>hostip4.c 1>hostip6.c 1>hostsyn.c 1>http.c 1>http2.c 1>http_chunks.c 1>http_digest.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\ftplistparser.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\getenv.c) 1>http_negotiate.c 1>http_negotiate_sspi.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\gopher.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hash.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hostasyn.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hmac.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\getinfo.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hostip.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hostcheck.c) 1>http_proxy.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hostip4.c) 1>idn_win32.c 1>if2ip.c 1>imap.c 1>inet_ntop.c 1>inet_pton.c 1>krb5.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hostsyn.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\hostip6.c) 1>ldap.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http2.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http_digest.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http_chunks.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http.c) 1>llist.c 1>md4.c 1>md5.c 1>memdebug.c 1>mprintf.c 1>multi.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http_negotiate_sspi.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http_negotiate.c) 1>netrc.c 1>non-ascii.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\imap.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\inet_ntop.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\idn_win32.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\http_proxy.c) 1>nonblock.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\inet_pton.c) 1>nwlib.c 1>nwos.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\ldap.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\if2ip.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\krb5.c) 1>openldap.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\llist.c) 1>parsedate.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\md4.c) 1>pingpong.c 1>pipeline.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\mprintf.c) 1>pop3.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\memdebug.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\md5.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\multi.c) 1>progress.c 1>rawstr.c 1>rtsp.c 1>security.c 1>select.c 1>sendf.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\non-ascii.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\netrc.c) 1>share.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\nonblock.c) 1>slist.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\nwos.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\nwlib.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\openldap.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\parsedate.c) 1>smtp.c 1>socks.c 1>socks_gssapi.c 1>socks_sspi.c 1>speedcheck.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\pipeline.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\pingpong.c) 1>splay.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\progress.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\pop3.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\rawstr.c) 1>ssh.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\security.c) 1>strdup.c 1>strequal.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\select.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\sendf.c) 1>strerror.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\rtsp.c) 1>strtok.c 1>strtoofft.c 1>telnet.c 1>tftp.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\share.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\slist.c) 1>timeval.c 1>transfer.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\smtp.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\socks_gssapi.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\socks.c) 1>url.c 1>version.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\socks_sspi.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\speedcheck.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\splay.c) 1>axtls.c 1>curl_darwinssl.c 1>curl_schannel.c 1>cyassl.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\ssh.c) 1>gskit.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\strdup.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\strequal.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\strerror.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\strtoofft.c) 1>gtls.c 1>nss.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\telnet.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\tftp.c) 1>openssl.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\strtok.c) 1>polarssl.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\transfer.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\timeval.c) 1>polarssl_threadlock.c 1>vtls.c 1>warnless.c 1>wildcard.c 1>x509asn1.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\url.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\version.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\axtls.c) 1>cdjpeg.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\curl_schannel.c) 1>jaricom.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\curl_darwinssl.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\cyassl.c) 1>jcapimin.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\gskit.c) 1>jcapistd.c 1>jcarith.c 1>jccoefct.c 1>jccolor.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\gtls.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\nss.c) 1>jcdctmgr.c 1>jchuff.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\polarssl.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\openssl.c) 1>jcinit.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\vtls.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\warnless.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\x509asn1.c) 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\vtls\polarssl_threadlock.c) 1>jcmainct.c 1>e:\darkmodsrc\lib\curl\curl_setup.h(245): fatal error C1083: Cannot open include file: 'windows.h': No such file or directory (compiling source file ..\lib\curl\wildcard.c) 1>jcmarker.c 1>jcmaster.c 1>jcomapi.c 1>jcparam.c 1>jcprepct.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jaricom.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\cdjpeg.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcapimin.c) 1>jcsample.c 1>jctrans.c 1>jdapimin.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcapistd.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jccoefct.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcarith.c) 1>jdapistd.c 1>jdarith.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jccolor.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcdctmgr.c) 1>jdatadst.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jchuff.c) 1>jdatasrc.c 1>jdcoefct.c 1>jdcolor.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcinit.c) 1>jddctmgr.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcmainct.c) 1>jdhuff.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcprepct.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcmaster.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcmarker.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcomapi.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcparam.c) 1>jdinput.c 1>jdmainct.c 1>jdmarker.c 1>jdmaster.c 1>jdmerge.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jcsample.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jctrans.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdapimin.c) 1>jdpostct.c 1>jdsample.c 1>jdtrans.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdapistd.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdarith.c) 1>jerror.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdatadst.c) 1>jfdctflt.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdcolor.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdcoefct.c) 1>jfdctfst.c 1>jfdctint.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdatasrc.c) 1>jidctflt.c 1>jidctfst.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jddctmgr.c) 1>jidctint.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdhuff.c) 1>jmemmgr.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdmainct.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdinput.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdmarker.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdmaster.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdmerge.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdsample.c) 1>jmemnobs.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdpostct.c) 1>jquant1.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jerror.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jdtrans.c) 1>jquant2.c 1>jutils.c 1>transupp.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jfdctflt.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jfdctfst.c) 1>png.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jfdctint.c) 1>pngerror.c 1>pngget.c 1>pngmem.c 1>pngpread.c 1>pngread.c 1>pngrio.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jidctflt.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jidctfst.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jidctint.c) 1>pngrtran.c 1>pngrutil.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jmemmgr.c) 1>pngset.c 1>pngtrans.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\png.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngerror.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jquant1.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jmemnobs.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngmem.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngget.c) 1>pngwio.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngread.c) 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jquant2.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngrio.c) 1>pngwrite.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\jutils.c) 1>pngwtran.c 1>e:\darkmodsrc\include\libjpeg\jinclude.h(35): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\lib\libjpeg\transupp.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngrutil.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngpread.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngset.c) 1>pngwutil.c 1>bitwise.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngrtran.c) 1>framing.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngtrans.c) 1>analysis.c 1>barkmel.c 1>bitrate.c 1>block.c 1>codebook.c 1>envelope.c 1>floor0.c 1>floor1.c 1>info.c 1>lookup.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngwio.c) 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngwrite.c) 1>lpc.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngwutil.c) 1>lsp.c 1>e:\darkmodsrc\sound\oggvorbis\oggsrc\bitwise.c(21): fatal error C1083: Cannot open include file: 'string.h': No such file or directory 1>mapping0.c 1>e:\darkmodsrc\include\zlib\zconf.h(364): fatal error C1083: Cannot open include file: 'sys/types.h': No such file or directory (compiling source file ..\lib\libpng\pngwtran.c) 1>e:\darkmodsrc\sound\oggvorbis\oggsrc\framing.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>mdct.c 1>psy.c 1>registry.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\bitrate.c(18): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\analysis.c(18): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\barkmel.c(18): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\block.c(21): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>res0.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\info.c(21): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>sharedbook.c 1>smallft.c 1>synthesis.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\lookup.c(18): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\envelope.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\codebook.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\floor0.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\floor1.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>vorbisenc.c 1>vorbisfile.c 1>windowvb.c 1>ALc.c 1>alcConfig.c 1>alcRing.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\lpc.c(46): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>ALu.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\mapping0.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\lsp.c(35): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\mdct.c(40): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>ambdec.c 1>base.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\psy.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>loopback.c 1>e:\darkmodsrc\sound\oggvorbis\ogg\os_types.h(26): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file ..\sound\OggVorbis\vorbissrc\registry.c) 1>mmdevapi.c 1>wave.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\res0.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\smallft.c(31): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\sharedbook.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\synthesis.c(18): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\vorbisenc.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>winmm.c 1>bformatdec.c 1>bs2b.c 1>converter.c 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\vorbisfile.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>chorus.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\alcring.c(23): fatal error C1083: Cannot open include file: 'string.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\alcconfig.c(31): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\alu.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\alc.c(25): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\sound\oggvorbis\vorbissrc\windowvb.c(18): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>compressor.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\alstring.h(4): fatal error C1083: Cannot open include file: 'string.h': No such file or directory (compiling source file openal-soft\Alc\ambdec.c) 1>e:\darkmodsrc\extlibs\openal-soft\alc\backends\base.c(4): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>dedicated.c 1>distortion.c 1>echo.c 1>equalizer.c 1>flanger.c 1>modulator.c 1>reverb.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\backends\mmdevapi.c(24): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\backends\loopback.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\backends\wave.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>helpers.c 1>hrtf.c 1>mastering.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\bs2b.c(26): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\include\almain.h(4): fatal error C1083: Cannot open include file: 'string.h': No such file or directory (compiling source file openal-soft\Alc\bformatdec.c) 1>e:\darkmodsrc\extlibs\openal-soft\alc\backends\winmm.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\include\almain.h(4): fatal error C1083: Cannot open include file: 'string.h': No such file or directory (compiling source file openal-soft\Alc\converter.c) 1>mixer.c 1>mixer_c.c 1>mixer_sse.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\chorus.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\compressor.c(21): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>mixer_sse2.c 1>mixer_sse3.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\dedicated.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>mixer_sse41.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\distortion.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>nfcfilter.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\equalizer.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\echo.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\reverb.c(23): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\modulator.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\effects\flanger.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>panning.c 1>uhjfilter.c 1>almalloc.c 1>atomic.c 1>rwlock.c 1>threads.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\helpers.c(31): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\hrtf.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\mastering.c(3): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>uintmap.c 1>alAuxEffectSlot.c 1>alBuffer.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\mixer.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\alc\mixer_c.c(3): fatal error C1083: Cannot open include file: 'assert.h': No such file or directory 1>alEffect.c 1>c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xmmintrin.h(79): fatal error C1083: Cannot open include file: 'malloc.h': No such file or directory (compiling source file openal-soft\Alc\mixer_sse.c) 1>alError.c 1>c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xmmintrin.h(79): fatal error C1083: Cannot open include file: 'malloc.h': No such file or directory (compiling source file openal-soft\Alc\mixer_sse2.c) 1>alExtension.c 1>e:\darkmodsrc\extlibs\openal-soft\openal32\include\almain.h(4): fatal error C1083: Cannot open include file: 'string.h': No such file or directory (compiling source file openal-soft\Alc\nfcfilter.c) 1>c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xmmintrin.h(79): fatal error C1083: Cannot open include file: 'malloc.h': No such file or directory (compiling source file openal-soft\Alc\mixer_sse41.c) 1>c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xmmintrin.h(79): fatal error C1083: Cannot open include file: 'malloc.h': No such file or directory (compiling source file openal-soft\Alc\mixer_sse3.c) 1>alFilter.c 1>e:\darkmodsrc\extlibs\openal-soft\alc\panning.c(23): fatal error C1083: Cannot open include file: 'math.h': No such file or directory 1>alListener.c 1>alSource.c 1>alState.c 1>alThunk.c 1>e:\darkmodsrc\extlibs\openal-soft\common\almalloc.h(4): fatal error C1083: Cannot open include file: 'stddef.h': No such file or directory (compiling source file openal-soft\common\almalloc.c) 1>e:\darkmodsrc\extlibs\openal-soft\common\static_assert.h(4): fatal error C1083: Cannot open include file: 'assert.h': No such file or directory (compiling source file openal-soft\common\atomic.c) 1>e:\darkmodsrc\extlibs\openal-soft\openal32\include\alu.h(5): fatal error C1083: Cannot open include file: 'math.h': No such file or directory (compiling source file openal-soft\Alc\uhjfilter.c) 1>e:\darkmodsrc\extlibs\openal-soft\common\static_assert.h(4): fatal error C1083: Cannot open include file: 'assert.h': No such file or directory (compiling source file openal-soft\common\rwlock.c) 1>sample_cvt.c 1>e:\darkmodsrc\extlibs\openal-soft\common\threads.h(4): fatal error C1083: Cannot open include file: 'time.h': No such file or directory (compiling source file openal-soft\common\threads.c) 1>e:\darkmodsrc\extlibs\openal-soft\openal32\alauxeffectslot.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\albuffer.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\common\static_assert.h(4): fatal error C1083: Cannot open include file: 'assert.h': No such file or directory (compiling source file openal-soft\common\uintmap.c) 1>e:\darkmodsrc\extlibs\openal-soft\openal32\aleffect.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\alerror.c(23): fatal error C1083: Cannot open include file: 'signal.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\alextension.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\alfilter.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\include\almain.h(4): fatal error C1083: Cannot open include file: 'string.h': No such file or directory (compiling source file openal-soft\OpenAL32\alListener.c) 1>e:\darkmodsrc\extlibs\openal-soft\openal32\alsource.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\althunk.c(23): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\alstate.c(25): fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory 1>e:\darkmodsrc\extlibs\openal-soft\openal32\include\almain.h(4): fatal error C1083: Cannot open include file: 'string.h': No such file or directory (compiling source file openal-soft\OpenAL32\sample_cvt.c) 1>Done building project "ExtLibs.vcxproj" -- FAILED. 2>------ Build started: Project: idLib, Configuration: Release x64 ------ 2>Insert SVN revision number into svnversion.h 2>Inserted SVN revision number into svnversion.h 2>precompiled.cpp 2>c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\atlmfc\include\afx.h(62): fatal error C1083: Cannot open include file: 'new.h': No such file or directory 2>Done building project "idlib.vcxproj" -- FAILED. 3>------ Build started: Project: TypeInfo, Configuration: Release x64 ------ 4>------ Skipped Build: Project: MayaImport, Configuration: Release x64 ------ 4>Project not selected to build for this solution configuration 3>ioapi.c 3>e:\darkmodsrc\framework\minizip\ioapi.h(47): fatal error C1083: Cannot open include file: 'stdio.h': No such file or directory 3>Done building project "typeinfo.vcxproj" -- FAILED. 5>------ Build started: Project: DarkModTools, Configuration: Release x64 ------ 5>precompiled.cpp 5>c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\atlmfc\include\afx.h(62): fatal error C1083: Cannot open include file: 'new.h': No such file or directory 5>Done building project "engine.vcxproj" -- FAILED. ========== Build: 0 succeeded, 4 failed, 0 up-to-date, 1 skipped ==========
  10. The coin is a little joke in the mission end stats. It exists solely to mock you, similar to the newspaper stating it's missing. There is no actual coin in the mission. Because it's missing, just like the newspaper says. You can clearly see how TDM players do not believe much in thieving-free missions. There has to be loot, right? Rather than pack their belongings and leave, they chase after a coin that does not exist, only because the stat screen tells them there is a coin even though there is none. TDM is a game about stealing, after all. There's no room left for locking your apartment, stacking your furniture onto a cart, and leaving. But perhaps sometimes that's all you can do. Maybe that is what you should do. Ignore the coin. Ignore the ugly stain on the wall, it's no good. Don't even look at it. Pack your belongings and forget. Ignorance is bliss.
  11. NOTE (3 March 2024): This mission has problems running on DarkMod 2.11. Be sure you are running the DarkMod 2.12 or later. A rare artifact, the Builder's Chalice, is available for the taking. Looks pretty straightforward, but looks can be deceiving... Yes, another mission for 2022. I think this makes eight this year already; we had eight for all of 2021! Great work, everyone! This is a smallish mission. It does not have any spiders or undead. It is a puzzle-heavy mission, with a built-in hints system in case you get stuck. This mission contains a couple of small homages to Grayman. This mission requires TDM 2.10. It uses some 2.10 features (subtitles, secrets, volumetric lights). Note that the volumetric lights are used in a specific way, such that your "Shadows Implementation" can be either Maps or Stencils, the volumetric lights will work either way. Version 2 of the mission is here: https://www.dropbox.com/s/pbz6spmqpo4vrg4/byanyothernameV2.pk4?dl=1 This fixes the "Open Doors on Unlock" problem. Have fun! Special thanks to JackFarmer, who created some wonderful and appropriate ambient sounds. He also did some Alpha testing to catch some early mistakes. Also thanks to the Beta testers, who struggled with some frustratingly-hard (or impossible) early variations: Cambridge Spy, Acolytesix, wesp5, datiswous, Bienie, Shadow Thanks to Chloe for some great voice work. I made plentiful use of sounds from freesound.org: https://freesound.org/people/HerbertBoland/sounds/75194/ https://freesound.org/people/craigsmith/sounds/482781/ https://freesound.org/people/InspectorJ/sounds/403005/ https://freesound.org/people/rhodesmas/sounds/322930/ https://freesound.org/people/fisch12345/sounds/325112/ https://freesound.org/people/BockelSound/sounds/489507/ https://freesound.org/people/ultradust/sounds/167747/ https://freesound.org/people/Crinkem/sounds/496328/ https://freesound.org/people/LucasDuff/sounds/467697/ https://freesound.org/people/RuidosoSoundFX/sounds/507161/ As always I've used some of Springheel's modules and Orbweaver's ambient sounds. And finally, huge thanks to the developers of The Dark Mod, especially 2.10, another milestone in this fantastic game. A few more screenshots
  12. @snatcher I understand that when you feel your work doesn't live up to your goals that you don't want it out in the wild advertising your own perceived shortcomings but that leads to a troubling dilemma of authors who are never satisfied with their work offering fleeting access to their in-progress designs then rescinding them or allowing them to be lost. When I was a member of Doom3world forums, I would often see members do interesting experiments and sometimes that work would languish until someone new would examine it and pickup the torch. This seemed like a perfectly viable system until Doom3world was killed by spambots and countless projects and conceptual works were lost. I guess what I am trying to say is that mods don't need to be perfect to be valuable. If they contain some grain of a useable feature they might be adapted by mission authors in custom scenarios. They might offer instructive details that others trying to achieve the same results can examine. It would be great if known compelling works were kept somewhere safe other than via forum attachments and temporary file sharing sites. I suppose we used to collect such things in our internal SVN for safe keeping but even that isn't always viable. If folks would rather not post beta or incomplete mods to TDM's Moddb page, perhaps they would consider creating their own Moddb page or allow them to be added to my page for safe keeping. Please don't look at this as some sort of pressure campaign or anything. I fully understand anyone not willing to put their name next to something they aren't fully happy with. As a general proviso, ( if possible \ permitted ) I just want to prevent the loss of some valuable investigations and formative works. The end of Doom3world was a digital apocalypse similar to the death of photobucket. It is one of my greatest fears that TDM will become a digital memory with only the skeletons of old forum threads at the wayback archive site.
  13. Hello, all. I've decided to post some lists of royalty-free music from Kevin MacLeod's well-known site Incompetech.com, lists that include tracks and themes chosen as potentially useful for The Dark Mod mission creators. Mr. MacLeod's made plenty of really good royalty-free music over the years, including various ambient themes and other music that could work pretty well in The Dark Mod. From what I know and remember, there's already been a fair few released FMs that used a few tracks from MacLeod's archive, so he is not unknown to the TDM community. The older (and fully usable) version of MacLeod's site is here and another archive of his royalty-free music can be found here (on Wikimedia Commons). I've added the links as well. As of April 2024, I have also added links to the official YouTube uploads of the individual tracks, all part of MacLeod's official YouTube channel. For the sake of easier reading and finding a song in the lists below, I've arranged them all in alphabetical order. Religious / churchly ambients Types of settings: Builder churches, chapels, cathedrals, monasteries, abbeys, etc. Various solemn and calm religious ambients. - Agnus Dei X (YT link. Somber but livelier in places, male and female choir vocals in muffled Latin.) - Bathed in Light (YT link. A rather soothing ambient, I suppose it could work inside a pleasant-seeming Builder church, including as a place of relief in a scary mission.) - Gregorian Chant (YT link) - Lasting Hope (YT link) - Midnight Meeting (YT link) - Organic Meditations 1 (YT link) and Organic Meditations 2 (YT link) - Rites (YT link) - Private reflection (YT link) - Supernatural (YT link. Good for an abandoned church, spooky candle-lit catacombs, etc.) - Virtutes Vocis (YT link) Potentially: - Tiny Fugue (YT link) - Toccata and Fugue in D Minor (YT link. Famous organ composition by Bach, IMHO might sound too Barocque for a late-medieval style setting, but good for a hint of eerieness.) Spooky / horror / ominous ambients Types of settings: Crypts, catacombs, haunted caves, eerie ruins, lairs and places where undead and other monsters roam, etc. Some of the more industrial-sounding ones could also be useful for missions set at factories or warehouses occupied by criminal gangs, and so on (i.e. also for non-supernatural threats and non-supernatural creepiness). - Aftermath (YT link), WiCo link) - Ancient Rite (YT link, WiCo link) - Anxiety (YT link, WiCo link) - Apprehension (YT link, WiCo link) - Blue Sizzle (YT link, WiCo link) - Bump in the Night (YT link, WiCo link) - Chase Pulse (YT link, WiCo link) and Chase Pulse Faster (YT link, WiCo link. Both could work in some ghost-haunted location, with ghosts pursuing the player.) - Classic Horror 3 (YT link, WiCo link. Good for a haunted house, manor house or other private household interior.) - Crypto (YT link) - Dark Pad (YT link) - Dark Standoff (YT link) - Darkness Speaks (YT link. Shorter sting, good for a scripted creepy event.) - Decay (YT link, WiCo link) - Deep Noise (YT link, WiCo link) - Digital Bark (YT link, WiCo link) - Distant Tension (YT link, WiCo link) - Dopplerette (YT link, WiCo link) - Echoes of Time 1 (YT link, WiCo link) - Echoes of Time 2 (YT link, WiCo link) - Fire Prelude (YT link) - Gathering Darkness (YT link, WiCo link) - Ghostpocalypse 1 - The Departure (YT link) - Ghost Processional (YT link) - Ghost Story (YT link, WiCo link) - Grave Matters (YT link) - Heart of the Beast (YT link, WiCo link) - Himalayan Atmosphere (YT link. Eerie theme, could work in some ancient ruins.) - Ice Demon (YT link, WiCo link) - Irregular (YT link) - Land of Phantoms (YT link) - Lithium (YT link) - Long Note 1, Long Note 2 and Long Note 3 - Medusa (YT link) - Mind Scrape (YT link) - Mirage (YT link) - Nervous (YT link, WiCo link) - Night Break (YT link, WiCo link) - Ominous (YT link. Shorter ambient, but pretty spooky.) - One of Them (YT link, WiCo link) - Ossuary 1 (YT link) - Ossuary 5 (YT link) - Ossuary 6 (YT link) - Penumbra (YT link, WiCo link) - Political Action Ad (YT link. Yes, a song for this concept has such an ominous atmosphere. ) - Redletter (YT link, WiCo link) - Right Behind You (YT link, WiCo link) - Satiate - strings version (YT link) - Spacial Harvest (YT link) - Spacial Winds (YT link, WiCo link. Might be good for Middle Eastern themed scares.) - Spider Eyes (YT link. This could work well inside a household, or inside some public building.) - Supernatural (YT link. Calmer melody, good for a haunted religious buldings and its grounds.) - Sunset at Glengorm (YT link and YT remastered link) - Steel and Seething (YT link) - Tenebrous Brothers Carnival - Mermaid (YT link. Sounds serene, but is rather creepy and tense, maybe underground/underwater ruins.) - The Dread (YT link, WiCo link) - The Hive (YT link, WiCo link) - The Voices (YT link, WiCo link 1, WiCo link 2. Very otherworldly, good for some haunted area or other dimension.) - Unnatural Situation (YT link) - Unease (YT link, WiCo link. Would sound best in a manor house, museum, or other fancy interiors.) - Unseen Horrors (YT link, WiCo link) - Very Low Note (YT link, WiCo link) Tension-building / mysterious / general ambients Type of setting/situation: General ambients, especially in parts of FMs where the plot thickens and some coded development is triggered that makes for a new "act" in the overall story of the mission. (Imagine the likes of moonbo's missions and how they're structured and you get a bit of an idea.) - Air Prelude (YT link) - Awkward Meeting (YT link, WiCo link. Our thief hero or heroine meets an ally or informant for a bit of chit-chat.) - Blue Sizzle (YT link, WiCo link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Calmant (YT link. A calm, quiet piano theme, but it has an air of mystery and isolation. An emotionally neutral, uncertain theme.) - Crypto (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Dama-May (YT link. A bit of a peculiar tense theme, but some might find some uses for it.) - Dark Times (YT link) - Disappointment (YT link) - Disconcerned (YT link) - Dopplerette (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Dragon and Toast (YT link) - Enter the Maze (YT link) - Fantastic Dim Bar (YT link) - Fire Prelude (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Frozen Star (YT link. Exploring some long-lost ruins, mysterious compound or complex, it's soothing but creepy.) - Ghost Processional (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Gloom Horizon (YT link) - Grave Matters (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Greta Sting (YT link. A short sting, under twenty seconds, useful for revelatory scripted scenes and building suspense.) - Grim League (YT link) - Heavy Heart (YT link) - Industrial Music Box (YT link. Somber and personal, reminds me of the music box theme we already have in the game.) - Interloper (YT link) - Invariance (YT link) - Irregular (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness/mysteriousness.) - Isolated (YT link. A calm, somber ambient, for thoughtful situations. A bit more modern and guitarry-sounding, but could work in TDM.) - It Is Lost (YT link, WiCo link. Maybe a theme for exploring some mysterious underground ruins ?) - Lamentation (YT link. Maybe a castle or manor house household where bad events transpired.) - Lasting Hope (YT link) - Lithium (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Long Note 1, Long Note 2 and Long Note 3 (YT link 1, YT link 2, YT link 3. These are IMHO versatile enough both for tension-building and mild creepiness.) - Lord of the Land (YT link. Maybe usable as a quiet background theme while sneaking through a busier castle or manor house.) - Lost Frontier (YT link. Exploring some city or castle ruins in The Empire that seem majestic at first glance but could hide a darker secret.) - Mourning Song (YT link) - New Direction (YT link. Very interesting ambient, could work well for a slow-burning urban noir atmosphere and doesn't sound modern.) - Night of Chaos (YT link) - Night on the Docks - piano version (YT link. Part of a trio of slow noir themes, the others use a sax and trumpet. This is the only one of the three that sounds pre-1900 compatible.) - On The Passing of Time (YT link, WiCo link) - Oppressive Gloom (YT link) - Overheat (YT link) - Quiet Panic (YT link. Short and quiet, good for tension-building, including for scripted events.) - Relent (YT link. The clarinet in this one might be slightly anachronistic, but it's an interesting contemplative melody.) - Road to Hell (YT link) - Satiate - strings version (YT link. This one's IMHO versatile enough both for tension-building and mild horror.) - Satiate - percussion version (YT link. This one's IMHO better purely as a tension-building theme.) - Scissors (YT link. This would be an excellent theme for a mission set at a factory, inventor's workshop or a warehouse.) - Shores of Avalon (YT link. Quieter tension-builder.) - Simplex (YT link. A pretty good one, though some of the quieter beats are a bit more electronic.) - Spacial Harvest (YT link. This one's IMHO versatile enough both for tension-building and mild horror.) - Spring Thaw (YT link) - Stay the Course (YT link) - Sunset at Glengorm (YT link and YT remastered link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Temple of the Manes (YT link. I'd imagine this could work in an atmospheric mission set inside a castle or fortified manor house.) - Tempting Secrets (YT link) - Tenebrous Brothers Carnival - Intermission (YT link. Tense but melodic theme, with some heavy background percussions.) - The North (YT link) - Thunder Dreams (YT link) - Tranquility (YT link. A longer and very calm ambient theme, but has an air of mystery and strangeness.) - Unanswered Questions (YT link) - Unnatural Situation (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness.) - Unpromised (YT link. Can work both in an urban and a rural/wilderness environment.) - Very Low Note (YT link. This one's IMHO versatile enough both for tension-building and mild creepiness, would be ideal for a cave or basement.) - Winter Reflections (YT link. Good for a mission set during a snowed-in winter night.) Period instrument background music (stylistically European) Types of settings: Taverns, village scenes, town life, feasts, scenes among commoners or nobles. Mostly stuff with a calm and cosy atmosphere. - Achaidh Cheide (YT link) - Angevin B (YT link. This one sounds a bit more aristocratic or courtly, good for a feast or public event.) - Danse Macabre - harp version - Errigal (YT link. This one sounds a bit more aristocratic or courtly, but it's a good secular piece of music.) - Evening Fall - harp (YT link) - Folk Round (YT link) - Heavy Interlude (YT link. Short but really cool, IMHO could also work for a background scene of two AI characters sparring for fun.) - Master of the Feast (YT link. Good for a scene with at least two or three musicians and multiple noble/patrician characters attending a feast.) - Minstrel Guild (YT link) - Midnight Tale (YT link) - Old Road (YT link) - Pale Rider (YT link) - Pippin the Hunchback (YT link) - Suonatore di Liuto (YT link) - Teller of the Tales (YT link) North African, Middle Eastern and other "exotic" background music Types of settings: The TDM universe's analogues of the Mediterranean, North African, Middle Eastern regions, and other "exotic" locations. - Asian Drums (YT link. Could work for a Middle Eastern or North African style mission, good slow, tension-building ambient theme.) - Cambodian Odyssey (YT link. This is better suited to a south Asian or southeast Asian setting, but could work in a Middle Eastern locale as well. Tense theme, quiet percussions.) - Desert City (YT link. Could work for a Middle Eastern or North African style mission, good all-around urban ambient theme.) - Drums of the Deep (YT link (shorter) and YT link (longer). Could work for a Middle Eastern or North African style mission, good tension-building ambient theme.) - East of Tunesia (YT link. Could work in a mission with either a Mediterranean or North African style environment, e.g. a port city.) - Ibn Al-Noor (YT link. Good for a Middle Eastern or North African style mission, especially for a palace or public event environment.) - Lotus (YT link. Good as a general ambient theme for a Middle Eastern or North African style mission, or some other exotic locale.) - Mystery Bazaar (YT link. Another good one for a Middle Eastern or North African style mission, ideally some marketplace or square.) - Perigrine Grandeur (YT link. Middle Eastern style percussions interspersed with a grunge-like tune reminescent of those from Thief.) - Tabuk (YT link. Slow, but slightly more dramatic theme for a Middle Eastern or North African style environment.) - Tenebrous Brothers Carnival - Snake Lady (YT link. Has a Middle Eastern feel to it, very good for building suspense and tension.) Wilderness / nature ambients Types of settings: Outdoor areas with groves, forests, rivers, small lakes, mountain valleys, caves. Potentially also some Pagan villages and camps. - Black Bird (YT link. Tribal type stuff.) - Dewdrop Fantasy (YT link and YT link) - Kalimba Relaxation Music (YT link. Maybe could work in a cave or similar environment ?) - Evening Fall - harp (YT link) - Firesong (YT link. Tribal type stuff.) - Intuit (YT link. Tribal type stuff.) - Healing (YT link. I think this one could also work in an urban environment.) - Heavy Heart (YT link. Also works as a general ambient theme.) - Magic Forest (YT link) - River Flute (YT link) - Moorland (YT link. Could work for an isolated Pagan tribe village.) - Shamanistic (YT link) - Spirit of the Girl (YT link) - Thunderbird (YT link) - The North (YT link. A very short but looping theme, IMHO also works as a general ambient theme.) - The Pyre (YT link) - The Sky of Our Ancestors (YT link) - Unpromised (YT link) - Very Low Note (YT link. IMHO very good for a cave or cave system.) - Virtutes Instrumenti (YT link) - Willow and the Light (YT link) - Winter Reflections (YT link. Good for a mission set in winter or in some cavern strewn with magic crystals.) Non-serious bonus suggestion - Crunk Knight (YT link. When the Bridgeport City Watch throw an annual office party :-))) ) Giving MacLeod proper attribution if you chose to use this music in your mission Each song comes with an attribution quote that you need to include if you're going to use any of this music in your fan mission. If there is a final credits sequence in your mission, or you can include this quote at least as part of the mission's release notes, please do so. Though you can buy a license from Kevin and don't need to use attribution, all of this music is for free, as long as you give him credit. The credit-giving (attribution) is as follows: Name of Song Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/ Replace "Name of Song" with the actual name of the song, keep the rest of the quote in this format and include it in your "free music used" credits for your mission, and you're golden. Final note from me If you've found some other good tracks in Kevin's musical archives that could fit the tone of The Dark Mod and its setting and would like to include them in this list, please let me know and I'll update this post. Don't send me a personal message, just post your suggestion in this thread. Thank you ! I sincerely hope these lists will be of at least some use to mission builders. Good luck ! If you want to seek out non-MacLeod royalty-free music and public domain music, I've started a thread for that as well. Not too many download links yet, but it's meant to give you inspiration what sort of ambients or period music you could search for.
  14. Congrats on the release! Remember to check ThiefGuild as well as the DarkFate forums (via Google Translate) for additional feedback.
  15. It was a weird mission, that's for sure. And you put a lot of original ideas into it. I appreciate that. The machines were very convincing. I don't know if you made them or if they're part of the new edition, but they are excellent quality. The game needs dirty water texture for its canals. And dirty building blocks. It's very cool that the doors consume the keys. The floor textures look strange on walls and ceilings. It took me a little bit more than 9 hours to finish it.
  16. All speakers are defined as spheres, with a customisable inner and outer radius. There is no way to change them into any other shape. Implementing support for rectangular speakers would need changes to the core game code.
  17. Losing the option for stencil shadows would be extremely sad. TDM has the best stencil shadows implementation I've ever seen, and they look far better than shadow maps. They also perform wonderfully. Stencil shadows not supporting shadows on translucent surfaces is a bummer, but that's a fine tradeoff. Personally, I'd rather not see alpha-tested shadow occluders, because they look awful and are distracting. Shadow maps in general look bad and pixelated -- quite immersion breaking. Another issue with shadow maps is that they substantially increase the usage of the GPU. For those using laptops or integrated GPUs, it could cause performance or heat issues. For those with decent dedicated GPUs, increased wattage (and therefore heat) can and does turn on its GPU fans. The wattage on my AMD RX 6700 XT can become tripled when using shadow maps. That's undesirable. The advice I give players is: There really isn't a "best" shadows implementation these days. Some devs and players prefer one over the other. Regardless of which is chosen, stencil shadows and maps are used where needed. So, I'd try out both and pick the one you prefer. Here's Fen complaining about shadow maps. Complaint #1 (7:28): Complaint #2 (23:46): In his next video (Written in Stone - 4 - Chocolate Coated Brendel Bar), he turned on stencil shadows, and as far as I know, he never complained again. The following area in Written in Stone shows a good example of alpha-tested shadow occluders. Yes, technically the moving leaves cast shadows, but it looks awful in game, in my opinion. I know others like it. The same scene using stencil shadows looks amazing in game. (The screenshots don't do a good job demonstrating how it looks in game.) The current hybrid system is fantastic. It gives people choice. Those who prefer stencil shadows can use them; those who prefer shadow maps can use them. People become attached to the "art" and "style" of a mission, and changing the shadow implementation changes the art and style. If one must be dropped, I'd say shadow maps should be dropped from the menu settings. Use shadow maps for volumetric lights and stencil shadows everywhere else. And, I agree with nbohr1more that defaulting to rules consistent with stencil shadows is a good idea.
  18. Just curious, based on this discussion: http://forums.thedarkmod.com/topic/19239-soft-r-gamma/?p=427350
  19. I played it through in 2014. It's not a bad game, but, it's far from a great game either. Since I played Dishonored the first time, I don't really feel motivated to play Thief 2014 again. The Dishonored games are masterpieces in comparison.
  20. As far as I know, there are no licensing concerns with screenshots or gameplay videos you've made yourself, regardless of the license of the underlying game (otherwise Twitch streaming and games journalism would be impossible). However, Wikipedia articles about games tend not to feature large numbers of screenshots and videos, and it's possible that other Wikipedia editors would consider your videos promotional rather than encyclopedic.
  21. "...to a robber whose soul is in his profession, there is a lure about a very old and feeble man who pays for his few necessities with Spanish gold." Good day, TDM community! I'm proud to release my first FM: "The Terrible Old Man", an adaptation of H.P. Lovecraft's short story of the same name. This is a short, 30-45 minute mission in which you are the getaway driver in a team of three small-time thieves. You and your associates were fortunate enough to overhear rumors of a famously wealthy and frail old man, but things change when your cohorts do not return from what is supposed to be their easiest and most lucrative job. Now it's up to you to brave the old man's house and find your associates. Download: The in-game mission downloader TDM Website's Mission Page Dropbox Special Thanks: The kind beta testers: Cambridge Spy, stgatilov, xlm, wesp5, nbohr1more, and Dragofer. peter_spy and Dragofer for answering my endless barrage of editor questions while learning DR. The TDM Discord for their warm welcome. Ending stinger courtesy of Zapsplat. Content Warnings: Enjoy!
  22. No I mean you licence (for money) those modules for others to use in their game. But they don't own it. What fits the genre best is if someone would steal your code. Bad for you but good for thief.
  23. It seems like more and more "thief" and "thief players" is becoming a short hand to dismiss community members earnest desire to improve the game - which happens to be a barely legally distinct "thief style" game which was made by thief fans for thief fans and is "designed to simulate the stealth gameplay of Thief". Who is the predominant player base of the game supposed to be beyond fans of the thief games? Is there some better avenue to find feedback for the game beyond this forum? FOSS and linux forums? I have seen maybe half a dozen posts from that segment. I am a thief fan, I play thief fms, my association with those games is what drives me to play and make things for this game. Are we supposed to pretend the original games are not a huge reason why most of us are here at all? TL;DR version:
  24. Heya sure, I am distracted because i am very busy with YWA, i am writing a book and have plans beyond that. Its really massive. I simply think that i am not suited to make a game like this rn... maybe in 5 or 10 years. Its hella expensive and you need alot people, i simply cant wait that long. I need to invest in better things.
  25. I'm returning to continue my work, and this silly problem eludes me. Thanks for your help!
×
×
  • Create New...