| Drofder wrote:
|
Not sure of the current stats of CoDUOMaker, or if anything new is being added, but something a lot of mappers I talk to would like to see is the ability to add pause functions in the bat file or a log file after the compile.
In the current state, the compile flies through and any errors you get are hard to pickup upon, so if possible adding a pause ability would be nice
If you are do not know how to add a pause in a compile, a new line under each section with the word "pause" is all it takes
| Code:
|
"C:\Program Files\Call of Duty\tools\bin\Q3map.exe" "c:\program files\call of duty\main\maps\map.map"
"C:\Program Files\Call of Duty\tools\bin\Q3map.exe" -vis -fast "c:\program files\call of duty\main\maps\map.map"
"C:\Program Files\Call of Duty\tools\bin\flare.exe" -fast "c:\program files\call of duty\main\maps\map.map"
|
becomes
| Code:
|
"C:\Program Files\Call of Duty\tools\bin\Q3map.exe" "c:\program files\call of duty\main\maps\map.map"
pause
"C:\Program Files\Call of Duty\tools\bin\Q3map.exe" -vis -fast "c:\program files\call of duty\main\maps\map.map"
pause
"C:\Program Files\Call of Duty\tools\bin\flare.exe" -fast "c:\program files\call of duty\main\maps\map.map"
pause
|
...
|