1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
|
<!DOCTYPE html>
<head>
<title>Nem's Tools [Batch Compiler - About - About Batch Compiler]</title>
<link rel="shortcut icon" href="../../favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="../../css/default.css">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta name="author" content="Ryan Gregg">
<meta name="description" content="Nem's Half-Life and Half-Life 2 editing tools.">
</head>
<body>
<div class="banner" onclick="location.href='https://nemstools.github.io/'"> </div>
<div class="archived">This is archived copy of currently unavailable <a href="http://nemesis.thewavelength.net">Nem's
Tools website</a>, restored from <a
href="https://web.archive.org/web/20191202151405/http://www.nemesis.thewavelength.net/">Web Archive</a>. <br>
Download section now provides links to both Web Archive and to this unofficial Github mirror.
</div>
<div class="main">
<div class="group">
<div class="separator"></div>
<div class="heading2 menu">
<a href="../../index.html" class="menuitem">Home</a>
<a href="../../pages/GCFScape.html" class="menuitem">GCFScape</a>
<a href="../../pages/Crafty.html" class="menuitem">Crafty</a>
<a href="../../pages/VTFLib.html" class="menuitem">VTFLib</a>
<a href="../../pages/Batch_Compiler.html" class="menuitem">Batch Compiler</a>
<a href="../../pages/Terrain_Generator.html" class="menuitem">Terrain Generator</a>
<a href="../../pages/BSP_Viewer.html" class="menuitem">BSP Viewer</a>
<a href="../../pages/MAP_Viewer.html" class="menuitem">MAP Viewer</a>
<a href="../../pages/virtuAMP.html" class="menuitem">virtuAMP</a>
<a href="../../pages/Miscellaneous.html" class="menuitem">Miscellaneous</a>
</div>
<div class="separator"></div>
<div class="content">
<div class="main_area">
<div class="space"></div>
<div class="main_content">
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p1" href="#p1">About
Batch Compiler</a> - <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: May 26th, 2003 - 4:00:59 pm</span>
<div class="space"></div>
</div>
<div class="content"><b>About:</b>
<p>Batch Compiler is a Front End program designed to compile all your maps in the simplest and fastest
way possible, batch files. The program works on Batch Compiler Specification (BCS) files which are
dynamic configuration files capable of specifying almost everything in Batch Compiler, from the
switches, to the way the batch file is written and what is written where. Batch Compiler comes with
specification files for the current Source Tools, Zoners Tools, the old Quake Tools, HLFix, RESGen,
Map Backup and many other programs. Each switch contains a brief description on what it does to help
make everything easy and centralized.</p>
<b>Screenshots:</b>
<div style="text-align: center">
<br>
<img src="../../images/pages/bc1.png" width="790" height="605" alt="Batch Compiler"
title="Batch Compiler - Source specification.">
<br><br>
<img src="../../images/pages/bc2.png" width="790" height="605" alt="Batch Compiler"
title="Batch Compiler - Zoners specification.">
<br><br>
</div>
<b>Features:</b>
<ul>
<li>Every switch in the current Source Tools and Zoners Tools.</li>
<li>A description of what each switch does.</li>
<li>Automatic specification updating.</li>
<li>The ability to save "Preset" files and assign them to quick launch buttons.</li>
<li>The ability to associate presets with Batch Compiler.</li>
<li>Specification files are written in a simple text format which can be customized and created by the
user.</li>
<li>A recent MAP file and recent Batch Compiler Preset (BCP) menu for quick access to everything.</li>
<li>Creates and runs BAT files on the fly, also allows for the option of saving BAT files separately
(for easy access and compiling without the program).</li>
<li>Lots of file management options such as deleting unneeded files and copying others after and
before compiling built into the specification files.</li>
<li>Program can be shut down while BAT files are running so Batch Compiler uses absolutely no memory
and you map gets 100% of your systems resources.</li>
<li>The ability to start HL with your map as soon as compilation is complete.</li>
<li>The ability to automatically open the maps log file as soon as compilation is complete.</li>
<li>Checks fields to insure they are correct.</li>
<li>Quick and easy setup.</li>
<li>100% Free.</li>
</ul>
<b><a href="../../pages/Batch_Compiler-Download.html">Download</a></b>
<br><br>
</div>
<div class="heading1">
<div class="space"></div><span class="left">Modified: Mar 26th, 2006 - 5:30:00 pm</span><span
class="right">[ 62368 Views ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">1.</span> <a name="c98"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=104">kleber</a></span><span
class="right">Posted: Jul 5th, 2003 - 3:51:37 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>
muito bom<br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">2.</span> <a name="c116"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=138">orelha</a></span><span
class="right">Posted: Jul 9th, 2003 - 7:34:12 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>
Como fazer download?<br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">3.</span> <a name="c117"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jul 9th, 2003 - 8:27:39 pm</span>
<div class="space"></div>
</div>
<div class="content"><br><a href="../../pages/Batch_Compiler-Download.html">Here</a>.<br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">4.</span> <a name="c280"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=333">DanMan</a></span><span
class="right">Modified: Nov 19th, 2003 - 6:06:36 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>
Great program. But the subdivide setting won't let me use settings higher than 240. With the latest
compiling tools you can go up to 512 though.<br>
<br>
(It may be bad practice but i still want to make my mistakes myself ) <img
src="../../images/emotes/japanease.gif" width="32" height="32" alt="japanease"><br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">5.</span> <a name="c281"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 20th, 2003 - 1:12:38 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>Your right, I've updated the spec files:<br><br><a
href="../Batch_Compiler-Specification_Files.html">BC
Specification Files</a><br>
<br>
<img src="../../images/emotes/lazy.gif" width="32" height="32" alt="lazy"><br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">6.</span> <a name="c386"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=418">Zack</a></span><span
class="right">Posted: Jan 7th, 2004 - 1:26:05 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>
hey I got a problem it keeps saying:<br>
<br>
Error: Could not open wad file \westwood\valve\halflife.wad<br>
Error: Could not find WAD file<br>
Description: The compile tools could not locate a wad file that the map was referencing.<br>
Howto Fix: Make sure the wad's listed in the level editor actually all exist<br>
<br>
Error: Could not open wad file \westwood\valve\liquids.wad<br>
<br>
but I have them in CSG tab and both wads what is wrong?<br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">7.</span> <a name="c388"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 7th, 2004 - 5:00:19 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>
Your WAD files must be in a path relative to your 'Half-Life Path' on the 'Setup' form in the 'Paths'
tab.<br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">8.</span> <a name="c622"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=626">reign</a></span><span
class="right">Posted: May 24th, 2004 - 11:01:50 am</span>
<div class="space"></div>
</div>
<div class="content"><br>
I have a question..not really sure where to put it..Is there a preset or a specific way to set up the
compiler to run with Steam..doesn't matter how i set up stuff it always saves my .bsp to my steamapps
folder instead of the folder i have specified..could that be a something that steam added just to drive
folks like me crazy? or could it be something i can fix in my configuration?<br>
<br>
<img src="../../images/emotes/gunfight.gif" width="32" height="32" alt="gunfight">(<---me shooting
steam developers--->)<img src="../../images/emotes/where.gif" width="32" height="32" alt="where"><br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">9.</span> <a name="c624"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: May 24th, 2004 - 11:20:19 am</span>
<div class="space"></div>
</div>
<div class="content"><br>I haven't added Steam support to any of the BCS files yet (too busy) but you can
modify the BCS files to add steam support yourself.<br><br><a
href="../Batch_Compiler-Specification_Files.html">BCS
Tutorial</a><br>
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">10.</span> <a name="c1551"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=603">Adam_Merz</a></span><span
class="right">Posted: May 23rd, 2005 - 2:46:54 pm</span>
<div class="space"></div>
</div>
<div class="content">Nice Program...</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">11.</span> <a name="c1590"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1659">kow75</a></span><span
class="right">Posted: Jul 2nd, 2005 - 8:09:52 am</span>
<div class="space"></div>
</div>
<div class="content">well first off it took me 3 hours to get the run times :(. had to dl twice because of
an error:(<br>
<br>
Now my qeastion is why when I compile my map I get a windows promt box that tells me: <br>
<br>
hlbsp.exe has incountered a problem and needs to close. Sorry for the inconvenuance.<br>
<br>
error x0x0004<br>
<br>
How do I fix this problem???</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">12.</span> <a name="c1593"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jul 2nd, 2005 - 1:16:42 pm</span>
<div class="space"></div>
</div>
<div class="content">If hlbsp.exe crashes, contact it's <a href="http://www.zhlt.info/">maintainers</a>, I
don't
maintain it. However, your post has me suspicious. Is your computer stable? It almost sounds like you
might have hardware issues. You might want to d/l <a href="http://www.memtest86.com/">memtest86</a> and
give it
a whirl.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">13.</span> <a name="c1600"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1659">kow75</a></span><span
class="right">Posted: Jul 9th, 2005 - 2:22:51 am</span>
<div class="space"></div>
</div>
<div class="content">Ok i got it fixed :) It wasnt a mem problem. It was that my bc was old and i was
compiling with the new tools in a old back words order. <br>
<br>
So I noticed my bc was old even though i thought i had the new one instaled, lol. got it, and ran it the
way I was told to run it and Now it works better then before :).<br>
<br>
Now i just have to figure out why the new steam update is lagging out my pc online :(.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">14.</span> <a name="c1622"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1697">ACube</a></span><span
class="right">Posted: Aug 5th, 2005 - 3:53:46 pm</span>
<div class="space"></div>
</div>
<div class="content"><br>
Hi,<br>
<br>
<br>
I tried to use Batch compiler 3.1.2 but seems it doesn't initialize itself correctly.<br>
<br>
Atleast, that's what the windows message error says. <br>
It shows also " (0xc0000135) "<br>
<br>
<br>
Can someone help me? Thx :)</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">15.</span> <a name="c1623"
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Aug 8th, 2005 - 9:17:59 am</span>
<div class="space"></div>
</div>
<div class="content">As the batch compiler Download page states, you need to have the Microsoft .NET
Framework installed to use the batch compiler.<br><br>You can get it either through:<br><br><a
href="http://windowsupdate.microsoft.com/">Windows
Update</a><br><br>or<br><br><a
href="https://www.microsoft.com/en-us/download/details.aspx?id=26">Microsoft.com</a><br><br>You
also could have gotten this information by reading the <a href="../Batch_Compiler-FAQ.html">BAtch
Compiler FAQ</a></div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">16.</span> <a name="c1624"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1697">ACube</a></span><span
class="right">Posted: Aug 9th, 2005 - 4:01:31
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Ok, thank you.<br />
<br />
<br />
- Will Batch Compiler be executable without Microsft.Net Framework in the future?<br />
<br />
- Is Batch Compiler faster than a bat?<br />
<br />
<br />
thx again.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">17.</span> <a name="c1625"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Aug 9th, 2005 - 7:24:18
pm</span>
<div class="space"></div>
</div>
<div class="content">1. Most likely not. Older versions used to run independantly, but it was converted to
C# .NET because the code was easier to write and manage (or so I assume).<br />
<br />
2. Yes and No. Nem's Batch Compiler atcually just generates a .BAT file and then runs it like a normal
batch script. However, unlike writing the scripts by hand (and needing to know all the command switches
and how they work), Nem's Batch Compiler provides an easy to use user interface allowing the user to
easilychoose the settings they want.<br />
<br />
So basically, in the end you get the same result (a .bat script gets run), but Nem's batch compiler
makes setting up the script a lot easier.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">18.</span> <a name="c1629"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Aug 10th, 2005 - 10:45:20 am</span>
<div class="space"></div>
</div>
<div class="content">Thanks Bluefang. <img src="../../images/emotes/happy.gif" width="32" height="32"
alt="happy" /><br />
<br />
And to confirm, BC will not be rewritten in another language, there is no point.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">19.</span> <a name="c1758"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=663">richei</a></span><span
class="right">Posted: Nov 24th, 2005 - 2:10:16
pm</span>
<div class="space"></div>
</div>
<div class="content">Is there a work around for yesterday's update on the sdk? Its not compiling hl2 maps
correctly. Keeps telling me that it can't find the sky. When i compile from within hammer, that same
line is using an * to do the different views (sky_day02_10*.vmt is an example).<br />
<br />
In bc, its trying to do sky_day02_10rt.vmt, which causes it to fail.<br />
<br />
Any solutions?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">20.</span> <a name="c1761"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Nov 27th, 2005 - 5:00:31
pm</span>
<div class="space"></div>
</div>
<div class="content">can you post that portion of the compile log? I'm not sure what you are talking about
because the sky setting is a map setting, not a compile setting. It should have nothing to do with the
batch compiler.<br />
<br />
What compile tools are you using? (the ones that come with the SDK or amckern's CST tools)</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">21.</span> <a name="c2408"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2653">rowleybob</a></span><span
class="right">Posted: Mar 9th, 2007 - 6:18:38
am</span>
<div class="space"></div>
</div>
<div class="content">I've been having some buggy problems with the the hammer compiler--inexplicably,
hammer won't compile certain filenames for me, even if they're identical maps. Example:<br />
<br />
I start a map called "vanillasky.rmf" and try to compile it. I get a compile error saying
"no such file or directory".<br />
<br />
Then all I do is "save as" the map as "vs.rmf", and it compiles without a
hitch.<br />
<br />
This type of thing is happening increasinly more often, despite reinstalling hammer and trying other
things.<br />
<br />
SO, that's why I started using Batch Compiler. It works great! Thanks for a great/easy utility! <img
src="../../images/emotes/happy.gif" width="32" height="32" alt="happy" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">22.</span> <a name="c2409"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2658">Hammah</a></span><span
class="right">Posted: Mar 12th, 2007 - 5:55:51
am</span>
<div class="space"></div>
</div>
<div class="content">hi,<br />
<br />
i am getting the following error when compiling:<br />
<br />
SteamStartup() failed: SteamStartup(0xf,0x0012E938) failed with error 1: The registry is in use by
another process, timeout expired<br />
<br />
any help please ?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">23.</span> <a name="c2411"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 14th, 2007 - 1:57:12 pm</span>
<div class="space"></div>
</div>
<div class="content">Sorry Hammah, I've never seen that error before and I don't think it's the fault of
Batch Compiler, but Steam.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">24.</span> <a name="c2450"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2719">Superpiccolo</a></span><span
class="right">Posted: Apr 11th, 2007 - 2:20:18
am</span>
<div class="space"></div>
</div>
<div class="content">I also have this problem, but it is specifically when I try to use the "Custom
Source Tools". I can compile with them fine through hammer just not using Batch Compiler.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">25.</span> <a name="c2532"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2825">medi</a></span><span
class="right">Modified: Jun 26th, 2007 - 6:31:06
am</span>
<div class="space"></div>
</div>
<div class="content">Small bug with the recent version of batch compiler using Zoner's Tools (HL1):<br />
<br />
For the RAD parameter -maxlight you seem to have forced that the user must specify a value in the range
1-255 . However by experimenting with this parameter it seems to actually require a value between 0 and
1.<br />
<br />
I did several compiles of a map with maxlight '196' '128' '64' and finally '1' and found these values
did NOTHING to cap the level brightness. Then on trying the value 0.5 I get the effect I want, implying
the values should be between 0 and 1.<br />
<br />
I know you'll probably never get anyone else complaining about this problem, but thought I'd point it
out anyway! <br />
<br />
Cheers for a great tool!</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">26.</span> <a name="c2533"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 27th, 2007 - 2:06:59 pm</span>
<div class="space"></div>
</div>
<div class="content">Thanks for the info. If you do a <i>Check For Updates</i> from the <i>Help</i> menu,
you should get a fixed specification.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">27.</span> <a name="c2577"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1360">Varsity</a></span><span
class="right">Posted: Jul 25th, 2007 - 8:50:48
am</span>
<div class="space"></div>
</div>
<div class="content">Source tools bugs: -nolinuxdata no longer works, and there is no RAD option for -both
(which calculates both HDR and LDR lightmaps).</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">28.</span> <a name="c2614"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2896">yamtari</a></span><span
class="right">Posted: Aug 15th, 2007 - 5:01:20
am</span>
<div class="space"></div>
</div>
<div class="content">how do i set an output i just see addittional parameters and options but in neither
of the categorys there are output path only output and thats not the deal it seems <img
src="../../images/emotes/sad.gif" width="32" height="32" alt="sad" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">29.</span> <a name="c2615"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Aug 15th, 2007 - 11:59:03 am</span>
<div class="space"></div>
</div>
<div class="content">Select <i>Setup</i> from the <i>Options</i> menu, it's the <i>Output</i> variable
under the <i>Variables</i> tab.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">30.</span> <a name="c2656"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2908">Krazytaco</a></span><span
class="right">Posted: Sep 26th, 2007 - 4:33:18
pm</span>
<div class="space"></div>
</div>
<div class="content">Is there a tutorial or information somewhere that will explain to me how to use the
Incremental option? I checked it off because I just wanted to change the lighting, but it gave me this
after buildfacelights:<br /><br /><br />BuildFacelights:<br /> (3298.45 seconds)<br />Warning: Failed to
open transfers file [C:\Program Files\Valve Hammer Editor\maps\Meckwinter_rsg_v2a8.inc]<br />
<br />
BuildVisLeafs:<br />
<br />
<br />
<br />
It stayed like that until I closed the window.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">31.</span> <a name="c2657"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 27th, 2007 - 2:37:46 am</span>
<div class="space"></div>
</div>
<div class="content">Have you looked <a href="http://zhlt.info/command-reference.html">here</a>?
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">32.</span> <a name="c2660"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2908">Krazytaco</a></span><span
class="right">Posted: Sep 27th, 2007 - 6:39:35
pm</span>
<div class="space"></div>
</div>
<div class="content">Thanks!<br />
<br />
<br />
Btw, your programs are awesome.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">33.</span> <a name="c2662"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2940">razscs</a></span><span
class="right">Posted: Sep 28th, 2007 - 2:02:40
pm</span>
<div class="space"></div>
</div>
<div class="content">Apologies if this is not where people are supposed to post bugs.<br />
<br />
In the batch compile when i check a check box for WAD File under the csg tab. I select two different
wads. One is on my 2nd hard drive, another is on my hard drive with the OS and where the program is
installed. When I compile i get warnings like the following: Warning: Wad file '\documents and
settings\raz\desktop\ka_b2\ka_b2.wad' not found, also tried 'D:\\ka_b2\ka_b2.wad'<br />
<br />
My wads folder is D:\wads and the 2nd wad file im using is on my desktop. I don't know if this is a bug
or just me screwing something up. Any help would be appreciated.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">34.</span> <a name="c2705"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1360">Varsity</a></span><span
class="right">Posted: Nov 10th, 2007 - 6:26:32
am</span>
<div class="space"></div>
</div>
<div class="content">Could you add an option to delete .LMP files from mapsrc please. (In fact, why not
give us the option to add our own operations?)</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">35.</span> <a name="c2706"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1360">Varsity</a></span><span
class="right">Posted: Nov 10th, 2007 - 6:29:15
am</span>
<div class="space"></div>
</div>
<div class="content">*copy and delete</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">36.</span> <a name="c2707"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 10th, 2007 - 11:58:05 am</span>
<div class="space"></div>
</div>
<div class="content">I'll add .lmp to the next update, and you <a
href="../Batch_Compiler-Specification_Files.html">can</a>
add it
yourself. <img src="../../images/emotes/apple.gif" width="32" height="32" alt="apple" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">37.</span> <a name="c2775"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3112">Jophish</a></span><span
class="right">Posted: Jan 5th, 2008 - 6:37:51
am</span>
<div class="space"></div>
</div>
<div class="content">hi, Is there going to be support for the episode two compile tools, I have not been
able to get these to work. I get an error about entry points in a dll file.<br />
also, I am unable to get cst to work.<br />
<br />
Are there any 64 bit compilers out there also?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">38.</span> <a name="c2792"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3138">Whakharroo</a></span><span
class="right">Posted: Jan 23rd, 2008 - 3:56:16
am</span>
<div class="space"></div>
</div>
<div class="content">Simply amazing job, thanks Nem!<br />
<br />
<img src="../../images/emotes/chillin.gif" width="32" height="32" alt="chillin" /><img
src="../../images/emotes/guitar.gif" width="32" height="32" alt="guitar" /><img
src="../../images/emotes/free.gif" width="32" height="32" alt="free" /><img
src="../../images/emotes/handwalking.gif" width="32" height="32" alt="handwalking" /><img
src="../../images/emotes/yeahbaby.gif" width="32" height="32" alt="yeahbaby" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">39.</span> <a name="c2816"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=663">richei</a></span><span
class="right">Posted: Mar 9th, 2008 - 10:30:15
am</span>
<div class="space"></div>
</div>
<div class="content">
<div class="vbtitle">Jophish:</div>
<div class="vbquote">hi, Is there going to be support for the episode two compile tools, I have not been
able to get these to work. I get an error about entry points in a dll file.<br />also, I am unable to
get cst to work.<br /><br />Are there any 64 bit compilers out there also?</div><br />
<br />
Need an anwser for this, as i keep getting MaterialSystem.dll errors when i try to compile outside of
hammer.
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">40.</span> <a name="c2819"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3198">captain
terror</a></span><span class="right">Modified: Mar 21st, 2008 -
4:08:20 am</span>
<div class="space"></div>
</div>
<div class="content">I just bought a new computer and installed the latest batch compiler and latest
tools. I used the BC on my old machine and never had a trouble... until now.<br />
<br />
If I try to compile the .rmf file, It gives me errors saying it can't find the wads.<br />
<br />
If, however, I either compile the .map file or if there is a preexisting .map file in the directory, it
compiles flawlessly.<br />
<br />
It's a small annoyance, but it took me damn hours to figure that out. I was just about to give up and go
to the Hammer compiler, but i really would rather die. afaik on my old machine, the Batch Compiler
compiled .rmf files just fine, but I can't test it because it doesn't work anymore, lawl. = ><br />
<br />
Does anyone know what's the matter?<br />
<br />
edit: I can't get HLFix to work either, says it can't open the input file (might be a hint?)</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">41.</span> <a name="c2820"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Mar 22nd, 2008 - 4:05:38
am</span>
<div class="space"></div>
</div>
<div class="content">Most likely you need a wad.txt file for HLFix. This can be generated by the
"makewad.exe" tool that comes with HLFix. This will use the WAD files in your VHE
configuration to generate the WAD list. Then you just need to update the WAD file setting in the HLFix
tab in the Batch Compiler.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">42.</span> <a name="c2928"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3346">Zebra</a></span><span
class="right">Posted: Jul 8th, 2008 - 7:42:47
am</span>
<div class="space"></div>
</div>
<div class="content">Whenever I try to compile using this utility for Source, I receive an error reading,
"Loading c:\sierra\steam\steamapps\zebrajch\garrysmod\garrysmod\maps\testmap.bsp<br />
Cannot load the static props... encountered a stale map version. Re-vbsp the map."<br />
<br />
When I compile with the usual Hammer compiler, it compiles all the way through. I have been using this
Batch Compiler ever since it was released for HL1, I would love to be able to use it for Source as well.
I hope someone knows how to resolve this problem.<br />
<br />
Watch it be some simple thing. <img src="../../images/emotes/lazy.gif" width="32" height="32"
alt="lazy" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">43.</span> <a name="c2968"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3404">MG-Zero</a></span><span
class="right">Posted: Aug 20th, 2008 - 6:17:31
pm</span>
<div class="space"></div>
</div>
<div class="content">I've got a bit of a problem. After I set up everything, and select the .vmf file and
hit run..it hangs for a second and gives me this error:<br />
<br />
"Error executing batch file."<br />
<br />
Anyone know of a fix?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">44.</span> <a name="c2969"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Aug 20th, 2008 - 6:46:23
pm</span>
<div class="space"></div>
</div>
<div class="content">That's most likely caused by a compile error. Check the console output (when you're
running the compile) or in the compile log (should be in the same folder as your map file that you're
compiling). Then head over to the official SDK forums at <a
href="https://web.archive.org/web/20170918131848/http://forums.steampowered.com/forums/forumdisplay.php?f=191">steampowered.com</a>
(for HL2) or the forums at <a
href="https://web.archive.org/web/20170918131848/http://www.chatbear.com/board.plm?b=390">VERC-Collective</a>
(for HL1)</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">45.</span> <a name="c2977"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3404">MG-Zero</a></span><span
class="right">Posted: Aug 28th, 2008 - 1:58:02
pm</span>
<div class="space"></div>
</div>
<div class="content">
<div class="vbtitle">Bluefang:</div>
<div class="vbquote">That's most likely caused by a compile error. Check the console output (when you're
running the compile) or in the compile log (should be in the same folder as your map file that you're
compiling). Then head over to the official SDK forums at <a
href="https://web.archive.org/web/20170918131848/http://forums.steampowered.com/forums/forumdisplay.php?f=191">steampowered.com</a>
(for HL2) or the forums at <a
href="https://web.archive.org/web/20170918131848/http://www.chatbear.com/board.plm?b=390">VERC-Collective</a>
(for HL1)</div><br />
<br />
There's no console window opening though, it doesn't even get that far.
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">46.</span> <a name="c2988"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 16th, 2008 - 10:48:33 pm</span>
<div class="space"></div>
</div>
<div class="content">I assume you're running Vista? Crafty isn't exactly Vista friendly (it makes a few
assumptions). Try giving Crafty administrative privileges by <a
href="http://www.computerperformance.co.uk/vista/vista_administrative_privileges.htm">editing
it's shortcut</a>.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">47.</span> <a name="c3051"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3198">captain
terror</a></span><span class="right">Modified: Dec 6th, 2008 -
2:19:22 am</span>
<div class="space"></div>
</div>
<div class="content">
<div class="vbtitle">Quote:</div>
<div class="vbquote">..."Error executing batch file."...</div><br />Yup Nem was right, i had
the same problem as MG-Zero, except i'm using Vista x64 with Goldsource... <br /><br />Checking the
<b>"Run this program as administrator"</b> checkbox in the BC shortcut options makes it work
fine...<br />
<br />
Thanks again Nem!<br />
<br />
= )
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">48.</span> <a name="c3100"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3590">Ravage</a></span><span
class="right">Posted: Jan 24th, 2009 - 1:23:38
pm</span>
<div class="space"></div>
</div>
<div class="content">Hi Nem<br />
<br />
Is there any chance that the next version of batch compiler adds the Options -> Setup -> stage
paths and variables tabs settings to the presets?<br />
<br />
My problem is that Im compiling betwen various source platforms - hl2dm, ep1 and now orangebox. I was
hoping the presets did this already :(<br />
<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">49.</span> <a name="c3115"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3644">slam!</a></span><span
class="right">Posted: Feb 11th, 2009 - 12:16:15
pm</span>
<div class="space"></div>
</div>
<div class="content">i have a huge problem:<br />
when i compile with batch compiler it gives me "brush out of world error"<br />
but when i use zhlt by pressing f9 in hammer it compiles fine.<br />
I cannot make final compile in hammer, because it takes too much of my ram to have hammer open at same
time as compile, and then it either stops on rad part or vis part.<br />
ive tried everything, i even tried to make batch compiler use same version as hammer, but it still
doesnt work<br />
plz answer fast, my map should have been released like 1 week ago, but this problem holds me back alot
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">50.</span> <a name="c3148"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3682">Waffleguy388</a></span><span
class="right">Posted: Mar 15th, 2009 - 1:09:45
pm</span>
<div class="space"></div>
</div>
<div class="content">it broke on me<br />
<br />
1)says a world brush is leaked<br />
2)cant find good brush to use as portal??? i dont want my map divided >:(<br />
<img src="../../images/emotes/gunfight.gif" width="32" height="32" alt="gunfight" /><--me|the
program--><img src="../../images/emotes/where.gif" width="32" height="32" alt="where" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">51.</span> <a name="c3149"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3684">damnedge</a></span><span
class="right">Posted: Mar 16th, 2009 - 11:16:03
am</span>
<div class="space"></div>
</div>
<div class="content">Hello Nem, ok i have set the batch to compiler to the correct settings(as far as i
know) , but when i compile, it makes a long list of materials not found and many error loading studio
model's , when i load the map almost everything is there, stranger thou some of the props that are
missing are normal tf2 props, is there something i may have missed? could the fact that some of the
materials could be from hl2 , could that be a problem, i mean it should be in the sdk dir. plez i have
had such problems with hammer and i want this map compiled already! damnedge</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">52.</span> <a name="c3248"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3867">tada-s</a></span><span
class="right">Posted: Aug 30th, 2009 - 2:54:55
pm</span>
<div class="space"></div>
</div>
<div class="content">How I can run cstrike (parameter) in Direct 3D using the shorcut???</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">53.</span> <a name="c3417"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4045">Fourty-Seven</a></span><span
class="right">Modified: Jun 29th, 2010 -
12:58:59 am</span>
<div class="space"></div>
</div>
<div class="content">Hey Nem.,<br />
<br />
Any chance you'll be doing an update on the batch compiler for the 2009 Source Engine? I don't know if
it makes much of a difference.<br />
<br />
Counter-Strike Source just released their "2010 update" which changed the engine... so as far
as I know, using Batch Compiler you are limited to the old engine's compiling capability?.. :(<br />
<br />
I'd love to use 2048x2048 custom tex's :P. I'd love you man! definately donate like 40-50 bux
worthy.<br />
<br />
Holy crap. I just opened the compiler in editor, and... theres no csg stage?! lol weird.<br />
<br />
***edit***<br />
<br />
Almost forgot, there IS no CSG stage in Source Engine hahaha duhhhh... so used to hl1, bah I'm still
used to quake 2 for half the things with bsp mapping ;).<br />
<br />
Also, I realized that Batch Compiler is using the vXXX.exe's (like vbsp etc) from steam directly so it
shouldn't be an issue, again, used to HL1 and ZHLT's vXXX's lol.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">54.</span> <a name="c3420"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4085">eg_jonny</a></span><span
class="right">Posted: Jun 30th, 2010 - 11:55:18
am</span>
<div class="space"></div>
</div>
<div class="content">Hi, i can't use this program :( it says i need to open a bcp. WTF is a BCP?????!!!!!!
i have never seen a damn bcp on my entire life... Can you fix this? if not i won't use your programs...
if they are the same shit bug.. <img src="../../images/emotes/exploding.gif" width="32" height="32"
alt="exploding" /> </div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">55.</span> <a name="c3439"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=113">twitch</a></span><span
class="right">Posted: Jul 25th, 2010 - 11:56:56
am</span>
<div class="space"></div>
</div>
<div class="content">I have the latest super zhlt 3.8 from the natural selection site but the zhlt.wad
seems virtually identical to old stuff. Anyhow, when I compile using batch compiler, my sky in the bsp
is all messed up and shows the zhlt.wad NNULL texture instead. I tried compiling with a different tool
and the sky rendered correctly. I am sure I did something wrong somewhere along the line.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">56.</span> <a name="c3464"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4125">morgoth(ta-dev)</a></span><span
class="right">Posted: Aug 24th, 2010 -
7:27:55 pm</span>
<div class="space"></div>
</div>
<div class="content">i have a question is it posible to force tjunc to fix all tjuncs with this
programm?<br />
i dont care if it takes 100% of my computer resources aslong as it fixes it </div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">57.</span> <a name="c3564"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4281">watwatwat</a></span><span
class="right">Posted: Apr 19th, 2011 - 3:29:56
pm</span>
<div class="space"></div>
</div>
<div class="content">i think you're missing -textureshadows (rad) in source tools, unless it active
automatically when you choose a "lights file" ?</div>
</div><br />
</div>
<div class="main_sidebar">
<div class="group">
<div class="heading1"><span class="title">Batch Compiler</span></div>
<div class="content"><span class="title">» <a href="../../pages/Batch_Compiler.html">About</a></span><br>
<span class="title">» <a href="../../pages/Batch_Compiler-Download.html">Download</a></span><br>
<span class="title">» <a href="../Batch_Compiler-Revision_History.html">Revision
History</a></span><br>
<span class="title">» <a href="../Batch_Compiler-Specification_Files.html">Specification
Files</a></span><br>
<span class="title">» <a href="../Batch_Compiler-FAQ.html">FAQ</a></span><br>
<span class="title">» <a href="../Batch_Compiler-Tutorials.html">Tutorials</a></span><br>
</div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Login</span></div>
<div class="content">
<form name="loginform" method="post"
action="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=1&o=0">
<div class="label">Username:</div>
<div><input type="text" name="username" class="textbox" autocomplete="off"
style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC"); background-repeat: no-repeat; background-attachment: scroll; background-size: contain; background-position: 98% 50%;">
</div>
<div class="label">Password:</div>
<div><input type="password" name="password" class="textbox" autocomplete="off"
style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC"); background-repeat: no-repeat; background-attachment: scroll; background-size: contain; background-position: 98% 50%;">
</div>
<div class="label"><input type="checkbox" name="storepassword" class="checkbox"
checked="checked">Store Password</div>
<div><input name="login" type="submit" value="Login" class="button"></div>
</form>
</div>
</div>
<br>
<div class="group">
<div class="heading1"><span class="title">New Users</span></div>
<div class="content">
<span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?action=directory">Directory</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=1&o=0&action=addauthor">Register</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=1&o=0&action=retrievepassword">Retrieve
Password</a></span><br>
</div>
</div>
<br>
<div class="group">
<div class="heading1"><span class="title">Latest Comments</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=277&o=0#c4040">GCFScape
v1.8.6</a> (<a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=13286">saqi55</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=213&o=45#c4039">Crafty
FAQ</a> (<a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=13268">steve0503</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=277&o=0#c4038">GCFScape
v1.8.6</a> (<a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=13282">imgsrc17</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=205&o=210#c4037">About
Crafty</a> (<a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=13231">Paynamia</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=169&o=90#c4036">GCFScape
v1.8.6 Full</a> (<a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=13277">liaoyia</a>)</span><br>
</div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Latest Articles</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=277#p277">GCFScape
v1.8.6</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=276#p276">GCFScape
v1.8.5</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=275#p275">GCFScape
v1.8.4</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=274#p274">GCFScape
v1.8.3</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=273#p273">VTFLib
v1.3.2</a></span><br></div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Most Popular Articles</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=178#p178">VTFEdit
v1.2.5 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=76#p76">GCFScape
v1.3.1 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=238#p238">VTFEdit
v1.3.3 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=154#p154">VTF
Plug-In for Photoshop</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?c=169#p169">GCFScape
v1.8.6 Full</a></span><br></div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Newest Member</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=13303">blank</a></span><br>
</div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Elite Spammers</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=708">NoBody</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=7">Slackiller</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/index.php?a=385">Keloran</a></span><br>
</div>
</div>
<br>
<div class="group">
<div class="heading1"><span class="title">Feeds</span></div>
<div class="content">
<span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/rss/?page=1">RSS
2.0 (News)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/rss/">RSS 2.0
(Entire Site)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20170915125007/http://nemesis.thewavelength.net/rss/?comments&limit=15">RSS
2.0 (Comments)</a></span><br>
</div>
</div>
</div>
<div class="space"></div>
</div>
</div>
<div class="separator"></div>
<div class="heading2 center"><span class="note">Nem's Tools v2.0 © 2006 <a
href="mailto:[email protected]">Ryan Gregg</a>.<br>Execution
time: 0.07963s; Queries: 14.<br>
</span></div>
</div>
</div>
</body>
</html>
|