Hello,
I've been browsing this forum for awhile now. For my first post, I'd just like to thank Wyatt, Stryder, Foyleman, Brent, and Redrum for all your work in here. I've built a few multiplayer maps for my friends on thier lan and I couldn't have done it without all the tutorials here.
I bought UO and downloaded Gradiant yesterday. Stryder I read your tutorials on how to set it up and decided to find a third method. This method is very similar to the first one in your tutorial exept you won't have to copy any resources.
Step 1.
First you will need to download a small free application called junction.exe located at
http://www.sysinternals.com
Download the zip NOT the source.
The following link is a link directly to the file.
http://www.sysinternals.com/files/junction.zip
This is a zip file so unzip the executable from the zip into your windows directory. I unzipped to C:winnt
What this program will do is create what's called a symbollic link. Similar to a Windows Shortcut. A Shortcut in Windows however is NOT a sybollic link. View the readme.txt with the file and check out the sysinternals website for more details on how to use the program.
Step 2.
Create a folder called "Game" (no quotes) in your Program Files directory. In other words "C:Program FilesGame" should exist.
Step 3.
Open a command shell in whatever way you want. I use the following:
Start Menu > Run > cmd
I type in "cmd" (no qutoes) then hit the OK buton.
With the shell open we are now going to use the program junction to create a symbollic link between two folders:
C:Program FilesCall of Duty and
C:Program FilesGame
When we are done, it will treat the folder "game" as if it were "Call of Duty". Here's how to do that in the command shell. Type in the following then hit ENTER.
junction -s "C:Program FilesGame" "C:Program FilesCall of Duty"
The symbollic link should be created now.
From here on out you can use the batch files (YOURMAP.bat) right in the uomaps directory.
You need to slightly alter Stryders batch file because it wants to copy files from the "game" directory to the "Call of Duty" directory. Remember we created the symbollic link so basically it will be trying to copy the file to itself. To make things clearer I have here an example batch have made. Just like the tutorial, replace all instances of YOURMAPNAME to the actuall name of your map. Don't copy the asterisks (*), just the text in between. ;)
***********************
"C:Program FilesCall of DutyuoToolsbinq3map" -v -fulldetail -game uo "C:Program FilesCall of DutyuomapsmpYOURMAPNAME"
pause
"C:Program FilesCall of DutyuoToolsbinq3map" -vis -v -game uo "C:Program FilesCall of DutyuomapsmpYOURMAPNAME"
pause
"C:Program FilesCall of DutyuoToolsbinflare" -sundiffusesamples 10 -dumpoptions -game uo "C:Program FilesgameuomapsmpYOURMAPNAME"
pause
***************************
Open Notepad and paste in what I have written above. Once your done save is as YOURMAPNAME.bat in either
C:Program FilesCall of Dutyuomaps
or
C:Program FilesCall of Dutyuomapsmp
(wherever your .map is)
You should now be able to compile your maps including VIS!
I have been sucessfull on Windows 2000. Let me know if you have any problem I wll try to help.
See you in the sights of my Springfield,
Ryan
BTW: Mods, I am writing this on quite possibly the most doomed computers of all time. A cracked LCD screen and all. If this is accurate and anyone finds is helpfull, feel free to make any edits that you think will make this clearer.