[Register] [731851 Members] [102221 Online; 1829 Members, 100392 Guests]  
Deus Ex 2
File Search





Deus Ex Downloads > Official Releases > Other:
Deus Ex SDK (2.0)
Filename: deusexsdk1112f.exe


Size:
Version:
Developer:
Downloads:
Date Added:
Requirements:
Type / Category:
6.24 MB
2.0
Ion Storm
3841
02-21-2003
Deus Ex installed
Official Releases > Other


Average User Rating: 8.6
Number of Votes: 17
Related Files:
Latest Official Releases > Other:
  No Files Found!

5 Other Files by Ion Storm:
- DX:IW Trailer Relase
- Deus Ex 2 Lighting
- Deus Ex 2 GameStar Preview
- Deus Ex 2 Flame Thrower
- Deus Ex 2 Granade


 Deus Ex 2
 » Screenshots
 » Overview
 » File Search
 » Deus Ex 2 Downloads
    - Deus Ex 2 Demo
    - Deus Ex 2Patches
    - Deus Ex 2 Utilities
    - Deus Ex 2 Videos
 » Deus Ex 2 Story
 » Preview
 » Concept Art
 » News Archive
 » PotD Archive

 Deus Ex
 » Cheats
 » Screenshots
 » Overview
 » Requirements
 » Story
 » Deus Ex Downloads
    - Demos
    - Maps
    - Mods
    - Patches
    - Utilities




Deus Ex SDK (2.0) - File Description  


Description:
This is a bunch of files that you need to be able to develope mods for DE 1. All you mappers and modders out there, have fun smile Check out the readme below for details of whats in this download.



Deus Ex SDK (2.0) - Screenshots  
Screenshots:
Click to enlarge


Deus Ex SDK (2.0) - File Download Options  

Primary Download Locations:
  Name:
Location:
Provided by:
Worldwide Mirror by FileFront
usa - USA Central USA Central
FileFront.com
 

Download from Worldwide Mirror by FileFront Download Deus Ex SDK!



Deus Ex SDK (2.0) - Readme  
Readme File:
Deus Ex SDK – Version 2.0 (2-13-01)

About This SDK

If you’ve gotten this far, we can safely assume you’ve already installed the Deus Ex SDK.

Deus Ex is based on the Unreal engine, and the majority of its code is written in UnrealScript. A discussion of UnrealScript is beyond the scope of this documentation. For further information about UnrealScript, we recommend visiting http://unreal.epicgames.com on the web.

This SDK contains the following:

1) The modified versions of UnrealEd and UCC used to build Deus Ex.
2) Sample conversation (.con) and DeusExText files from Deus Ex’s training mission and the first two missions in New York City.
3) The ConEdit conversation editor, used to edit dialogue, infolinks and barks within the game.
4) A Lightwave-to-Unreal model converter.
5) All the headers used in development of Deus Ex. (located in Headers/DxHeaders.zip)


About the Deus Ex Packages

The following packages are used by Deus Ex:

• Core.u: The core routines used by the Unreal engine. These have been modified somewhat to work with Deus Ex.
• Engine.u: The baseline Unreal engine code. These have been modified somewhat to work with Deus Ex.
• Editor.u: Files used by UnrealEd.
• Fire.u: Procedural texture routines for Unreal.
• Extension.u: Basic extensions to the Unreal engine for Deus Ex. This includes the user interface and flag system code.
• DeusExUI.u: Textures used by Deus Ex’s user interface.
• ConSys.u: The conversation system.
• DeusExConversations.u: Actual conversations, infolinks, etc. used by Deus Ex. Contains mostly imported .con files.
• DeusExSounds.u: Sound files for Deus Ex.
• DeusExItems.u: Meshes and skins for inventory items in Deus Ex.
• DeusExDeco.u: Meshes and skins for decorations in Deus Ex.
• DeusExCharacters.u: Meshes and skins for all NPCs in Deus Ex.
• DeusExText.u: Contains text for all books, datapads, emails and bulletins in Deus Ex.
• DeusEx.u: The Big Kahuna. This is where all the DX-specific code is kept.


Generating UnrealScript Source Files

To generate the UnrealScript source code for the game, do the following:

1) Run UnrealEd from your System directory.
2) From the Browse combo box (upper right corner of the editor), select “Classes”.
3) Click on the “Export All” button in the lower right corner of the editor. This will generate the entire UnrealScript source tree for Deus Ex.


Building the Game

Before you start building new Unreal packages, it’s a good idea to save off copies of all the original .u files in your System directory.

The UCC executable (modified for Deus Ex) has been included with this SDK so you can build your own UnrealScript classes. However, many of the textures, models, music files, sound effects and subsidiary files have not been included, so you won’t be able to rebuild some of the packages yourself.

The following packages are safe to rebuild:
Core.u
Fire.u
IpDrv.u
ConSys.u
DeusEx.u
IpServer.u

The following packages ARE NOT SAFE to rebuild, due to dependencies on nonexistent files:
Engine.u
Editor.u
Extension.u
DeusExUI.u
DeusExConversations.u
DeusExSounds.u
DeusExItems.u
DeusExDeco.u
DeusExCharacters.u
DeusExText.u

If you want to rebuild any existing packages (such as DeusEx.u), here’s how:

1) Edit the DeusEx.ini file in your System directory. Change the “CdPath=” variable so it points to your top-level Deus Ex directory. (You will only need to do this once.)
2) Delete the package file. UCC will not rebuild files unless they’re missing from your System directory.
3) From a DOS box, cd to the System directory and type “ucc make”. This will automatically regenerate any missing .u files. If you are prompted to rebuild a “.h” file, answer “no.”


Adding New Packages

Although you can modify the existing UnrealScript packages to change the game, it is better (and considerably easier) to add new packages in order to extend the existing behavior in Deus Ex.

Here’s how to add new packages to Deus Ex:

1) Create a new directory in the top-level Deus Ex directory with the same name as your package (for example, “DXMod”).
2) Create a subdirectory called “Classes”.
3) In the Classes directory, add UnrealScript files for any new classes you want to put in this package. These files should have the same name as the classes you wish to create, and should end with a “.uc” extension (for example, “UNATCOZymeDealer.uc”).
4) In the System directory, edit the DeusEx.ini file. Look for a list of packages prefixed by “EditPackages=”. Add your new package to the end of this list (e.g. “EditPackages=DXMod”).
5) From a DOS box, enter the System directory and type “ucc make”. This will create a new package with the name you’ve specified. (If you’ve already created the package once, you’ll need to delete it before you perform this step; otherwise, UCC will not rebuild it.)


Installing ConEdit

Installing ConEdit is easy – simply run the “setup.exe” program inside the ConEdit directory, and follow the prompts. For a description of how to use ConEdit, see ConEditDocumentation.doc..


Editing Deus Ex Levels

Information on how to edit Deus Ex levels using UnrealEd can be found here: EditorDocumentation.doc.


Implementing Music in UnrealEd

Here’s how to incorporate music into a Deus Ex level: MusicDocumentation.doc.


Using LWO23D

LWO23D is a tool that converts Lightwave objects (files ending in “.lwo”) to files compatible with Unreal’s 3D meshes. The Unreal-formatted files can then be imported into a package and used. Multiple Lightwave files can be concatenated to create animations (running, walking, sitting, etc.). LWO23D needs a data file called a CNN file to batch-convert LWO files to the 3D format. Run “lwo23d” with no parameters for more information.


Sample Files

This SDK contains many sample files to get you started. Some of these files include:

• Conversation files (.con): Located in the DeusExConversations directory. These can be read/modified via ConEdit and contain conversations, infolinks and barks for the training mission and missions 1 and 2.
• DeusExText files (.txt): Located in DeusExText\Text. These are text files (written in a pseudo-HTML format) which are displayed when the player reads a datapad, book, email or bulletin. Included are the DeusExText files for the training mission and missions 1 and 2.
• LWO23D batch file (.cnn): Located in the Tools directory. This is a sample data file used by the LWO23D program to convert Lightwave objects to Unreal’s 3D format.

Good luck, and have fun!


Deus Ex SDK (2.0) - User Comments  
The following comments are owned by the user that posted them. Deus Ex 2 Files is not responsible for their content.

Total comments: 1 | Last comment: 06-13-2008 at 11:09

 #1 - 06-13-2008 at 11:09
DarthHK
From:
Joined: January 26th, 2008
Posts: 361
R.I.P. Ion Storm. We will miss you forever



Posting of new comments has been disabled by the Administrator.

Be sure to check out our live and kicking Forums


 Latest Files
 » DXMP_BatteryPark (1.0)
 » Deus Ex Revisio.. (DEMO)
 » Operation Nightfall
 » MIB Dentons (v2) (2.0)
 » Kain Denton (V1)
 » OTP UI Fix (1.0)
 » DuesEx 2027 Trailer
 » Redsun 2020 (1.13)
 » Wan Chai Music Exten..
 » Der Zeit Mann Mo.. (1.0)

 Latest News
 » Weekly Poll Results ..
 » Weekly Poll Results ..
 » First Deus Ex 3 Deta..
 » DeusEx Files is slow..
 » Weekly Poll Results ..
 » Shifter v1.8 Mod for..
 » An Update for you all!
 » Weekly Poll Results ..
 » We Need your help!
 » Weekly Poll Results ..

 The Network
 » Gaming News
 » Game Demos
 » Game Patches
 » Trailer Videos
 » Gaming Forums

 Game Portals:
 » Age of Empires 3
 » Aliens vs Predator 2
 » America's Army
 » ArmA 2
 » Armada 2
 » Battlefield 1943
 » Bridge Commander
 » Brothers in Arms 2
 » Call of Duty 4
 » Command & Conquer
 » Company of Heroes
 » Crysis
 » Counter-Strike: Source
 » Dawn of War Series
 » Day of Defeat: Source
 » Diablo 3
 » Doom 3
 » Elite Force
 » Enemy Territory
 » Fallout 3
 » Far Cry 2
 » F.E.A.R.
 » Flight Simulator X
 » GTA San Andreas
 » Half-Life 2
 » Halo
 » Jedi Knight 3
 » Knights of the Old Republic
 » Left 4 Dead 2
 » LOTR: Battle 4 Middle Earth
 » Medal of Honor
 » Operation Flashpoint
 » Quake 4
 » Red Faction: Guerrilla
 » rFactor
 » Silent Hunter 4
 » Sins of a Solar Empire
 » Soldier of Fortune 2
 » S.T.A.L.K.E.R.
 » Star Trek: Legacy
 » Star Wars Battlefront 2
 » Star Wars Empire at War
 » StarCraft II
 » Starfleet Command III
 » Supreme Commander
 » Team Fortress 2
 » The Elder Scrolls IV
 » The Sims 2
 » TrackMania United
 » Unreal Tournament 3
 » Warcraft III
 » World of Warcraft
 » X3: Terran Conflict

You got served by in 0.0633 seconds using 6 MySQL queries and 13 includes
Copyright © 2013 FileFront, Inc. All rights reserved.
Design by Jos Jongejan aka Pro-Filer & Blumenkohl. Use of Deus Ex 2 Files materials is subject to certain Terms & Conditions.
TM & © 2013 Eidos Interactive. All rights reserved. Deus Ex and Deus Ex 2: Invisible War (DX2) and related marks are trademarks of Ion Storm, Inc. All rights reserved.