Easy way to load TNM maps in the editor

A refuge for those migrating from the fallen DXEditing.com and a place for general discussion relating to Deus Ex editing (coding, mapping, etc).
Post Reply
User avatar
Neveos
X-51
Posts: 875
Joined: Wed Mar 03, 2010 1:29 am

Easy way to load TNM maps in the editor

Post by Neveos »

So I'm having to go back and forth loading maps from TNM to gank geometry for stuff like that cool hotdog kiosk (will be credited), but I don't want to screw up by messing around with that consys.u and deusex.ini, so I made a command file which switches it between normal deus ex and tnm. Just copy the following text into a new notepad file and save it as "switchTNM.cmd". When you double click on it, it will execute a number of commands for switching to a state which will load TNM maps. The second batch of txt will be a separate cmd file for switching back. Change MyPackage to whatever your package is, or just create a random foldaer to store the original files.

cd C:\DeusEx\System
COPY "C:\DeusEx\System\ConSys.u" "C:\DeusEx\MyPackage\ConSys.u"
COPY "C:\DeusEx\System\DeusEx.ini" "C:\DeusEx\MyPackage\DeusEx.ini"
del DeusEx.ini
del ConSys.u
COPY "C:\DeusEx\TNM\System\DeusEx.ini" "C:\DeusEx\System\DeusEx.ini"
COPY "C:\DeusEx\TNM\System\CaroneElevatorSet.u" "C:\DeusEx\System\CaroneElevatorSet.u"
COPY "C:\DeusEx\TNM\System\ConSys.u" "C:\DeusEx\System\ConSys.u"
COPY "C:\DeusEx\TNM\System\DXOgg.u" "C:\DeusEx\System\DXOgg.u"
COPY "C:\DeusEx\TNM\System\precipitation.u" "C:\DeusEx\System\precipitation.u"
COPY "C:\DeusEx\TNM\System\TNM.u" "C:\DeusEx\System\TNM.u"
COPY "C:\DeusEx\TNM\System\TNMCharacters.u" "C:\DeusEx\System\TNMCharacters.u"
COPY "C:\DeusEx\TNM\System\TNMConvos1.u" "C:\DeusEx\System\TNMConvos1.u"
COPY "C:\DeusEx\TNM\System\TNMConvos2.u" "C:\DeusEx\System\TNMConvos2.u"
COPY "C:\DeusEx\TNM\System\TNMDatavault.u" "C:\DeusEx\System\TNMDatavault.u"
COPY "C:\DeusEx\TNM\System\TNMDeco.u" "C:\DeusEx\System\TNMDeco.u"
COPY "C:\DeusEx\TNM\System\TNMGUI.u" "C:\DeusEx\System\TNMGUI.u"
COPY "C:\DeusEx\TNM\System\TNMItems.u" "C:\DeusEx\System\TNMItems.u"
COPY "C:\DeusEx\TNM\System\TNMText.u" "C:\DeusEx\System\TNMText.u"
COPY "C:\DeusEx\TNM\System\UMenu.u" "C:\DeusEx\System\UMenu.u"
COPY "C:\DeusEx\TNM\System\TNMNative.u" "C:\DeusEx\System\TNMNative.u"
pause

that was switching to tnm, this is switching back to normal- this is a separate file. so call it "switchDX"

cd C:\DeusEx\System
del DeusEx.ini
del ConSys.u
COPY "C:\DeusEx\MyPackage\DeusEx.ini" "C:\DeusEx\System\DeusEx.ini"
COPY "C:\DeusEx\MyPackage\ConSys.u" "C:\DeusEx\System\ConSys.u"
del CaroneElevatorSet.u
del DXOgg.u
del precipitation.u
del TNM.u
del TNMCharacters.u
del TNMConvos1.u
del TNMConvos2.u
del TNMDatavault.u
del TNMDeco.u
del TNMGUI.u
del TNMItems.u
del TNMText.u
del UMenu.u
del TNMNative.u
pause
What I do in my other free time:
http://www.youtube.com/watch?v=e3FfPUKuGsQ
nerdenstein
Illuminati
Posts: 1591
Joined: Thu Apr 24, 2008 7:40 pm
Location: Leicester, England, UK.

Re: Easy way to load TNM maps in the editor

Post by nerdenstein »

Ahh Thanks.
That'll be useful! :D
The real trouble with reality is that there's no background music.
Post Reply