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
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
|
<!DOCTYPE html>
<head>
<title>Nem's Tools [GCFScape - Download - GCFScape v1.3.1 Full]</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="p76" href="#p76">GCFScape
v1.3.1 Full</a> - <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 2nd, 2004 - 4:21:48 pm</span>
<div class="space"></div>
</div>
<div class="content"><b>About:</b>
<p>GCFScape v1.3.1 - GCFScape and all the files you need to run it (<span class="warning">except the
.NET Framework</span>).</p>
<b>Download:</b>
<ul>
<li><a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/files/files/gcfscape131.exe">Installer
(376 KB)</a></li>
<li><a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/files/files/gcfscape131.zip">Archive
(139 KB)</a></li>
</ul>
<b>Runtimes: <span class="warning">(Required)</span></b>
<p>.NET Framework v1.1 (23,698 KB Executable) - GCFScape is written in C++ .NET and as such requires the
.NET runtime to run. The .NET runtime is also available as a Windows Update. v1.1 is required.</p>
<b>Download:</b>
<ul>
<li><a
href="https://web.archive.org/web/20200201044239/http://microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en">Microsoft</a>
</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left">Modified: Mar 26th, 2006 - 1:17:23 pm</span><span
class="right">[ 1267842 Views ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="offsets">[
<a href="GCFScape_v1.3.1_Full-page1.html#p76">1</a>
<a href="GCFScape_v1.3.1_Full-page2.html#p76">2</a>
3
<a href="GCFScape_v1.3.1_Full-page4.html#p76">4</a>
<a href="GCFScape_v1.3.1_Full-page5.html#p76">5</a>
]</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">121.</span> <a name="c1049"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 16th, 2004 - 4:53:14 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
There won't be a fix because it isn't a bug (the test to see if there is physical data is very simple).
There are some files that can exist in a GCF file with no physical data, why they are there I don't know
(for example, logo.avi typically has no data, but there is no way it can be a valid avi file without any
data). Give me some example of the problem files and maybe I can shed more light on the subject.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">122.</span> <a name="c1052"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=708">NoBody</a></span><span
class="right">Posted: Sep 17th, 2004 - 5:19:34
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
i love it when ppl say that they got every thing right, that just show a level of humbalnes.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">123.</span> <a name="c1063"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1038">FenechkA</a></span><span
class="right">Modified: Sep 21st, 2004 - 9:05:47
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
hi<br />
after autoupdate NET Framework, when i click on link in About box, i have this exeption:<br />
---<br />
See the end of this message for details on invoking <br />
just-in-time (JIT) debugging instead of this dialog box.<br />
<br />
************** Exception Text **************<br />
System.ComponentModel.Win32Exception: The requested lookup key was not found in any active activation
context<br />
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)<br />
at System.Diagnostics.Process.Start()<br />
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)<br />
at System.Diagnostics.Process.Start(String fileName)<br />
at GCFScape.CAbout.lnkNemsTools_LinkClicked(Object sender, LinkLabelLinkClickedEventArgs e)<br />
at System.Windows.Forms.LinkLabel.OnLinkClicked(LinkLabelLinkClickedEventArgs e)<br />
at System.Windows.Forms.LinkLabel.OnMouseUp(MouseEventArgs e)<br />
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)<br />
at System.Windows.Forms.Control.WndProc(Message& m)<br />
at System.Windows.Forms.Label.WndProc(Message& m)<br />
at System.Windows.Forms.LinkLabel.WndProc(Message& msg)<br />
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)<br />
at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)<br />
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr
lparam)<br />
<br />
<br />
************** Loaded Assemblies **************<br />
mscorlib<br />
Assembly Version: 1.0.5000.0<br />
Win32 Version: 1.1.4322.2032<br />
CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll<br />
----------------------------------------<br />
GCFScape<br />
Assembly Version: 1.1.1.0<br />
Win32 Version: 1.2.2<br />
CodeBase: file:///D:/ProgramZ/GameZ/GCFScape/GCFScape.exe<br />
----------------------------------------<br />
System.Windows.Forms<br />
Assembly Version: 1.0.5000.0<br />
Win32 Version: 1.1.4322.2032<br />
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll<br />
----------------------------------------<br />
System<br />
Assembly Version: 1.0.5000.0<br />
Win32 Version: 1.1.4322.2032<br />
CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll<br />
----------------------------------------<br />
System.Drawing<br />
Assembly Version: 1.0.5000.0<br />
Win32 Version: 1.1.4322.2032<br />
CodeBase:
file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll<br />
----------------------------------------<br />
Accessibility<br />
Assembly Version: 1.0.5000.0<br />
Win32 Version: 1.1.4322.573<br />
CodeBase:
file:///c:/windows/assembly/gac/accessibility/1.0.5000.0__b03f5f7f11d50a3a/accessibility.dll<br />
----------------------------------------<br />
<br />
************** JIT Debugging **************<br />
To enable just in time (JIT) debugging, the config file for this<br />
application or machine (machine.config) must have the<br />
jitDebugging value set in the system.windows.forms section.<br />
The application must also be compiled with debugging<br />
enabled.<br />
<br />
For example:<br />
<br />
<configuration><br />
<system.windows.forms jitDebugging="true" /><br />
</configuration><br />
<br />
When JIT debugging is enabled, any unhandled exception<br />
will be sent to the JIT debugger registered on the machine<br />
rather than being handled by this dialog.<br />
---<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">124.</span> <a name="c1064"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 23rd, 2004 - 10:08:20 am</span>
<div class="space"></div>
</div>
<div class="content"><br />
I'm aware of this exception (thought I was handling it) but I'm not sure what the cause is. I will try
to improve its handling (though it is not critical to the programs operation).<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">125.</span> <a name="c1068"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1018">counterfart</a></span><span
class="right">Modified: Sep 23rd, 2004 - 6:15:04
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
hey, they all do it, am i the only one that happens to??:(.......but dont worry about it thnx
annyways.<br />
You'r doing a great job Nem.<br />
<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">126.</span> <a name="c1069"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 23rd, 2004 - 6:23:45 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Well if you have any small GCF files that are causing problems, feel free to send them to me and I'll
take a look at them. Also, could you tell me what the status bar (the bar at the bottom of your screen)
displays for one or two of your GCF files? GCF files are created on the fly so usually they are
different for different people, this makes them hard for me to debug.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">127.</span> <a name="c1081"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=511">HackeRabbit</a></span><span
class="right">Posted: Sep 27th, 2004 - 4:16:00
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Good Program.<br />
But Open Source the Program GCFSpace.<br />
<br />
Contact for E-mail: [email protected]<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">128.</span> <a name="c1082"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 27th, 2004 - 8:53:16 am</span>
<div class="space"></div>
</div>
<div class="content"><br /><a href="../../pages/Miscellaneous-HLLib.html">HLLib</a>, the library GCFScape
uses to do all its
work, is open source.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">129.</span> <a name="c1083"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1065">SecretCorner</a></span><span
class="right">Posted: Sep 28th, 2004 - 10:06:31
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
help !!!<br />
<br />
When i want extract the older gcf´s it doesnt work!!!<br />
<br />
When i extract condition zero or source it works <br />
perfectly. but it doesnt open the conter-strike.gcf.<br />
<br />
I need help ;)<br />
<br />
SecretCorner<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">130.</span> <a name="c1084"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 28th, 2004 - 11:54:55 am</span>
<div class="space"></div>
</div>
<div class="content"><br />
What version is the GCF file that won't open (it should say in the error message)? I can only add
support for GCF files I can get my hands on (so far these are versions 3, 5 and 6) if you can send me
another version of a GCF file (or even just the first 8 MB of it) I can add support for it.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">131.</span> <a name="c1087"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1068">Totally_Tonedef</a></span><span
class="right">Modified: Sep 30th, 2004 -
1:52:15 am</span>
<div class="space"></div>
</div>
<div class="content"><br />
None of the gcf files are opening and I have framework...and the error message is blank :(<br />
<br />
Edit:Never mind, steam was on <img src="../../images/emotes/shrug.gif" width="32" height="32"
alt="shrug" /><br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">132.</span> <a name="c1091"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1071">PeopleDust</a></span><span
class="right">Posted: Sep 30th, 2004 - 4:47:38
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
I donwloaded GFCScape and the program wont even open... I have the .NET Framework 1.1 so i dont think
thats the problem. Can ne1 help me?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">133.</span> <a name="c1092"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 30th, 2004 - 6:48:53 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Totally_Tonedef:<br />
<br />
Thanks for pointing that out, it was a bug with HLLib, it has been fixed.<br />
<br />
PeopleDust:<br />
<br />
Can you expand on "wont even open"?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">134.</span> <a name="c1099"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1071">PeopleDust</a></span><span
class="right">Posted: Oct 2nd, 2004 - 2:57:08
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
I click on the .exe, the mouse shows an hourglass like it is loading, but nothing happens.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">135.</span> <a name="c1100"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1078">JS</a></span><span
class="right">Posted: Oct 2nd, 2004 - 3:53:22 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
I really need a hint here ! <img src="../../images/emotes/where.gif" width="32" height="32"
alt="where" /><br />
<br />
I extracted all the files from the Counterstrike, platform, HL engine and Halflife .GCF files . Ive put
them each in a different folder that I created.<br />
<br />
But now... what do I do?!<br />
<br />
Do I have to put them in a precise folder or something?<br />
<br />
Would appreciate any clue :)<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">136.</span> <a name="c1101"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Oct 2nd, 2004 - 7:49:22 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />PeopleDust:<br /><br />What version of GCFScape and the .NET framework do you
have? What does your task manager say about GCFScape (i.e. is it using 100% of your CPU
time)?<br /><br />JS:<br /><br />What are you trying to do? If you just want to play CS you <b>don't</b>
need to extract your GCF files, you just need Steam.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">137.</span> <a name="c1106"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=385">Keloran</a></span><span
class="right">Posted: Oct 3rd, 2004 - 5:06:01
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
JS scape is only useful for mod makers, and map makers, otherwise its ueless to you<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">138.</span> <a name="c1111"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1071">PeopleDust</a></span><span
class="right">Posted: Oct 4th, 2004 - 1:22:32
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
I'm trying to use GCFScape Version 1.2.3 with Microsoft's .NET Framework Version 1.1<br />
<br />
When I click on the gcfscape .exe it doesn't even run.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">139.</span> <a name="c1114"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=708">NoBody</a></span><span
class="right">Posted: Oct 4th, 2004 - 4:25:11
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
check your task maniger to see if it is running, is there any thing in its log<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">140.</span> <a name="c1144"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=795">Da_FileServer</a></span><span
class="right">Posted: Oct 15th, 2004 - 10:50:15
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />I am using Windows 2000 SP4 (latest patches etc.)... it crashed even before it
started up... luckily I have the .NET core debugger stuffage (though no debugging symbols), which I got
this info:<br />----------------<br />Microsoft (R) Common Language Runtime Test Debugger Shell Version
1.1.4322.573<br />Copyright (C) Microsoft Corporation 1998-2002. All rights
reserved.<br /><br />(cordbg) a 0x4c4<br />Process 1220/0x4c4 created.<br />Warning: couldn't load
symbols for c:\winnt\microsoft.net\framework\v1.1.4322\mscorlib.dll<br />Warning: couldn't load symbols
for c:\winnt\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll<br />Warning: couldn't load
symbols for
c:\winnt\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll<br />[thread 0x5a0]
Thread created.<br />Unable to determine existence of prolog, if any<br />[thread 0x514] Thread
created.<br />[thread 0x5a0] Unhandled exception generated: (0x00a48be8)
<System.Security.Policy.PolicyException><br />
_className=<null><br />
_exceptionMethod=<null><br />
_exceptionMethodString=<null><br />
_message=(0x00a48df0) "Unverifiable assembly 'F:\Files\Games\Steam\Tools\gcfscape123\GCFScape.exe'
failed policy check."<br />
_innerException=<null><br />
_helpURL=<null><br />
_stackTrace=<null><br />
_stackTraceString=<null><br />
_remoteStackTraceString=<null><br />
_remoteStackIndex=0x00000000<br />
_HResult=0x80131416<br />
_source=<null><br />
_xptrs=0x00000000<br />
_xcode=0xe0434f4d<br />
<br />
Thread 0x5a0 R --- Class initialization ---<br />
-----------<br />
Though, this probably doesn't tell much, only that it doesn't like the policies it was compiled with...
which is the main reason why I don't like programs that utilize .NET framework (there's always an OS
that it hates running under). Note; I have versions 1.1.4322.573 and 2.0.40607.42 (beta)
installed.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">141.</span> <a name="c1145"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=795">Da_FileServer</a></span><span
class="right">Posted: Oct 15th, 2004 - 10:57:03
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Hmm... I fixed it... apparently you do not want to execute these files over a network drive. For
whichever reason I'll never know; but that is just stupid how it will crash so well.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">142.</span> <a name="c1148"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Oct 17th, 2004 - 2:14:27 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Yes .NET has some piss poor error messages, but it does make up for it (at least on my side) in
productivity. Maybe you can change the security settings in your Control Panel (Administrative
Tools)?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">143.</span> <a name="c1151"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1126">AarDVark</a></span><span
class="right">Posted: Oct 18th, 2004 - 5:27:35
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
i tried to extract the half-life.gcf but , with FULL of writing errors! so a lot of missing files!
please someone help me solve this problem.<img src="../../images/emotes/halloween.gif" width="32"
height="32" alt="halloween" /><br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">144.</span> <a name="c1152"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Oct 18th, 2004 - 6:13:59 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Is your Half-Life.gcf fully acquired? What errors were you receiving?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">145.</span> <a name="c1173"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1071">PeopleDust</a></span><span
class="right">Posted: Oct 29th, 2004 - 3:24:34
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
<img src="../../images/emotes/japanease.gif" width="32" height="32" alt="japanease" /><br />
<br />
I got it to work... Finally. I had to re-format my hard-drive... I'm not sure about anyone else though,
Microsoft's Service Pack 2 definately messed my computer up. I couldn't use anything that required the
.NET Framework.<br />
<br />
But now that I can use GCF Scape I'm happy and can actually start mapping again.<br />
<br />
Thanks Nem.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">146.</span> <a name="c1174"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Oct 29th, 2004 - 6:04:50
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Couple things:<br />
A) SP2 in no way affects .NET applications<br />
B) There is a patch for the v1.1 .NET framework. Make sure you have it<br />
C) Your half-life.gcf file was either not fully aquired or it was corrupt.<br />
<br />
The only thing SP2 changes is security. Yes the new stuff is annoying, but it is livable.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">147.</span> <a name="c1178"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Oct 30th, 2004 - 9:33:36 am</span>
<div class="space"></div>
</div>
<div class="content"><br />
I've had some people report that viruses had prevented .NET from working correctly. Maybe you suffered
from the same thing?<br />
<br />
SP2 majorly fudged my computer up too (though .NET ran fine).<br />
<br />
Nem<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">148.</span> <a name="c1184"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1146">monkey</a></span><span
class="right">Posted: Nov 3rd, 2004 - 11:00:28
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Heys guys - Great work ;) helped me loads - but... now for some strange reason... when i try and play
CS:CZ it ask's for ----.sc files...<br />
<br />
Where can i get them? iv'e tried google and other search engine's.. but no look. any idea's lads ?
<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">149.</span> <a name="c1186"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 3rd, 2004 - 4:15:39 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
No idea, might want to ask Steam questions in the Steam forums...<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">150.</span> <a name="c1192"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1154">jshsharp</a></span><span
class="right">Posted: Nov 6th, 2004 - 10:12:17
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
ok so i extracted "condition zero.gcf" where do i put the folders in steam...and how do i make
it work?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">151.</span> <a name="c1194"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Nov 6th, 2004 - 11:49:13
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
you do not need to extract any thing to play condition zero. just launch it from the 'Play Games' menu
in Steam.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">152.</span> <a name="c1205"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1165">Leandro_Scott</a></span><span
class="right">Posted: Nov 11th, 2004 - 5:29:40
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
People, when you get the error no physical data to write, means that the file you have is locked by
steam, explaining better, you haven't installed the game yet, so all the content of the file will be
extractable, only when you buy the game. The FAQ ansewer to that problem doesn't mean exactly
this.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">153.</span> <a name="c1208"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=385">Keloran</a></span><span
class="right">Posted: Nov 12th, 2004 - 1:25:20
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
n1 putting encrypted files in grey, maybe people will stop posting "how do i get HL2 without
paying" now<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">154.</span> <a name="c1226"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1165">Leandro_Scott</a></span><span
class="right">Posted: Nov 12th, 2004 - 3:53:09
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
But there is something I discovered, the file comes encrypted, but when you buy the game and steam
unlocks the file, this file is "physicaly" modified, so it stays unlocked. So if a good soul
share his unlocked GCF on eMule for exemple, you can extract everything inside it. To test it, I
installed steam from scratch, downloaded some GCF files(they came locked), then I made a copy of that
locked file to other folder, I registered my counter-strike, then the file was unlocked, then I made a
file compare with the locked and unlocked. There is a LOT of differences between them(note: the file
size is the same). And other thing, I installed steam again, and unlocked the file again and compared
with the previously unlocked file, again there is differences between them(don't know exactly
why).<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">155.</span> <a name="c1227"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 12th, 2004 - 10:43:49 am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Ava3ar:<br />
<br />
Thats what I'm hoping. It also helps browsing GCF files with mixed content like source engine.gcf.<br />
<br />
Leandro_Scott:<br />
Steam doesn't download the GCF file directly, it downloads the files that are part of the GFC file and
creates a GCF files on the fly (probably a good thing as you can pause and resume download with ease).
Now it downloads these files in the order they appear in the directory (so if you downloaded the same
GCF file twice it should probably be the same) but remember these files get patched which means Steam
may have to fragment them and a fragmented (patched) file probably won't be the same as a fresh
(unpatched) file.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">156.</span> <a name="c1230"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1172">DarkSnoopy</a></span><span
class="right">Posted: Nov 15th, 2004 - 8:56:46
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
How can you tell if a file is encrypted within a GCF file? I realize that it's greyed out if you open it
in GCFScape, but I'd like to know how you could tell if you were to open it in a hex editor for example.
What flags are set differently to identify it as a locked/encrypted file?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">157.</span> <a name="c1231"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 15th, 2004 - 10:01:10 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />The GCF file format can be found <a
href="https://web.archive.org/web/20170917165122/http://www.wunderboy.org/3d_games/utils/gcfformat.php">here</a>.
The flags are stored in GCFDIRECTORYENTRY.DirectoryType (we weren't certain they were flags when we
first wrote up the format) and the mask is 0x00000100. In HLLib CGCFFile.GetItemsFlags() will return the
above value.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">158.</span> <a name="c1240"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1222">Donny3000</a></span><span
class="right">Posted: Nov 17th, 2004 - 7:46:52
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Hey Dudes... Ur Tips are great. I have all GCF-Files from the german Reatail Release extracted. I
started the small Hl2.exe and then Problem: Unable to get IFileSystem Interface from filesystem factory.
I know that the Problems were in the CSS Beta too, but what can i do,,,Plz help me,,, wanna play offline
HL2<br />
THX<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">159.</span> <a name="c1243"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Nov 17th, 2004 - 12:08:05
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
yo do not need to extract anything to play the game. gust run the game from the 'play games' menu.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">160.</span> <a name="c1245"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1228">ed144</a></span><span
class="right">Modified: Nov 17th, 2004 - 1:40:56
pm</span>
<div class="space"></div>
</div>
<div class="content"><br /><i>Removed malicious content.</i><br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">161.</span> <a name="c1249"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1240">Don
Iggy</a></span><span class="right">Posted: Nov 18th, 2004 - 6:03:54
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Can I extract all HLČ files include the Soundtrack, models and textures? I must download the
.NET-Framework... WITH a 112 Kbit connection!!!!! So, if i canŽt start modding, i wont download the
.NET-Framework except gcf-scape.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">162.</span> <a name="c1250"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1222">Donny3000</a></span><span
class="right">Posted: Nov 18th, 2004 - 7:21:46
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
You need both Tools. U nee Net Framework to work with GCF-Scape. But i tried to extract the files from
the Original GCF-Files too, but some files are saved. u need to Unlocked them first by Steam. If anyone
hafe Unlocked GCF Files for download, thats perfect then :-)<br />
hm, but whats with the F u C **ing Securom Copy-Protection. Its there too.@Every start from HLČ or CS
Source It wants the Original DVD. Is there a NO-DVD-Crack anywhere???<br />
Hmm, Good Luck@all 2 Play this wonderfull Game<br />
<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">163.</span> <a name="c1251"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1172">DarkSnoopy</a></span><span
class="right">Posted: Nov 18th, 2004 - 7:49:56
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Thanks for the information about the encrypted files ! When a GCF file has not been downloaded
completely, do the unfinished files show up in the directory entries? If so, is there any way to tell
that it isn't complete (such as a flag or something) other than looking through all the block entries
for that file? Thanks!<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">164.</span> <a name="c1252"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1240">Don
Iggy</a></span><span class="right">Posted: Nov 18th, 2004 - 11:10:08
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
OK... I bought HLČ, and I have unlocked HLČ and I finished the game. So can I extract every file?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">165.</span> <a name="c1253"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Nov 18th, 2004 - 12:25:31
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Don Iggy:<br />
as I have asid, you do not need to extract ANYTHING<br />
<br />
if you own HL2, then you can download the SDK through Steam and set up hammer4 to map for HL2. Hammer4
will use the resources directly from the GCF so you do not need to extract anytihg.<br />
<br />
Donny3000:<br />
if you own the game, the GCF files are unlocked.<br />
like-wise, if you own the game, then you have acess to the origional CD/DVDs. problem solved.<br />
please do not continue asking how to hack/bypass security for HL2. we do not support it.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">166.</span> <a name="c1254"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 18th, 2004 - 6:17:25 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Don Iggy:<br />
If you own the game and it is unlocked, you can extract any file form the game (provided you shut Steam
down first).<br />
<br />
DarkSnoopy:<br />
If you are looking at the file format then if GCFDIRECTORYMAPENTRY.FirstBlockIndex ==
GCFDIRECTORYMAPHEADER.BlockCount the file hasn't yet been downloaded. If you are using HLLib then if
CGCFFile.GetFileSizeOnDisk() sets dwSize to 0 the file hasn't yet been downloaded. (Maybe in the future
you can specify which method you are using.)<br />
<br />
I don't know of any concrete way to tell whether a GCF file is complete. If the used and allocated
blocks match up it is complete, if they don't it still may be complete (Steam sometimes allocates more
blocks then it needs).<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">167.</span> <a name="c1270"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1267">AliaS</a></span><span
class="right">Posted: Nov 20th, 2004 - 2:21:02
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
Will there be a version that can extract from current source sound.gcf files?<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">168.</span> <a name="c1271"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><span
class="right">Posted: Nov 20th, 2004 - 9:50:08
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
The current version is compatible with all Steam GCF files. there is no diffence between the HL2 and
Source GCF files.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">169.</span> <a name="c1272"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1267">AliaS</a></span><span
class="right">Posted: Nov 20th, 2004 - 10:50:17
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
When I try to open "source sounds.gfc" the following error occures: <br />
<br />
"Could not open ***\source sounds.gcf<br />
<br />
Error:<br />
Failed to map view of file."<br />
<br />
Maybe its becouse today's update or its only with my system? If you can, please help!<br />
<br />
Additional info: I have .NET framework* and the latest GCFScape* (1.2.4) installed.<br />
<br />
(*Both from the links above at the GCFScape download informations.)<br />
<br />
Thanks for your help in advance!<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">170.</span> <a name="c1273"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 20th, 2004 - 11:04:18 am</span>
<div class="space"></div>
</div>
<div class="content"><br />
I few people are reporting this error message, what's up I don't know but I'll see if I can modify HLLib
to produce better error messages.<br />
<br />
Can you tell me what OS you are using? It could be OS specific; different OSs handle virtual memory
differently.<br />
<br />
<img src="../../images/emotes/exhausted.gif" width="32" height="32" alt="exhausted" /><br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">171.</span> <a name="c1274"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1267">AliaS</a></span><span
class="right">Modified: Nov 20th, 2004 - 11:08:19
am</span>
<div class="space"></div>
</div>
<div class="content"><br />
I use Windows 98 Second Edition, all drivers and windows updates are the latest as far as I know and in
most of the time no system crashes or errors so I can say it is very stable.<br />
<br />
Hope this helps.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">172.</span> <a name="c1275"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Modified: Nov 20th, 2004 - 12:14:01 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />That's the same OS as someone else who reported the error. Try <a
href="files/files/gcfscape125.zip">this version</a> to see if we can get a better error message (and
tell me what it is).<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">173.</span> <a name="c1276"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1267">AliaS</a></span><span
class="right">Modified: Nov 20th, 2004 - 12:24:48
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
"Could not open ***\***.gcf<br />
<br />
Error:<br />
Failed to map view of file.<br />
<br />
System Error: 0x00000008:<br />
Not enough space to execute command."<br />
<br />
Two notes: 1. The 0x00 stuff contains 0x then 7 times zero. (Just to dont have to count them manually.
;] )<br />
<br />
2. The last line is a translation becouse I use a different language version of 98SE then english so
this last line is in my language, while the others are in English.<br />
_____<br />
<br />
Oh and additional info: I hve 512 MB of RAM memory.<br />
<br />
And about 20 GB of free HDD space on my (only) system drive. The swap file is managed by the OPsys, no
changes to default settings.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">174.</span> <a name="c1277"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 20th, 2004 - 1:12:55 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />The actual message is:<br />Not enough storage is available to process this
command. <br /><br />RAM, Swap and HD space should not be relevant because I think this is an issue with
virtual memory space. In Win98 I believe there is 2GB of virtual memory space which all applications
must share in a pool. MapViewOfFile will fail if it can't find sufficient continuous free space in the
virtual memory pool. This should only really be a problem with large allocations (like HLLib <i>used</i>
to make). HLLib will allocate a 16MB block for the header and 8KB blocks for file fragments (one at a
time). You really should have 16 MB of continuous free virtual memory space.<br />
<br />
I will try to research the problem further, in the mean time I suggest you restart your computer and try
to open the GCF file without any other programs running. This will insure your virtual memory space is
clean and unfragmented.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">175.</span> <a name="c1278"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1267">AliaS</a></span><span
class="right">Posted: Nov 20th, 2004 - 4:53:28
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Well still not working. I exited anything I could, only the ATI control panel and the Intel Heat Monitor
was online becouse they cant be turned off in basic way, and dont wanted to mess aroun too much. Same
effect.<br />
<br />
I worked around my problem by asking people to send me the files I wanted and they replied so fast so I
can only say they are great people!<br />
<br />
I know this is not a way for everyone so I think those who said an upgrade to Win2K or XP is necessary
are right.<br />
<br />
Fortunatley I only needed some files though. :)<br />
<br />
Nem if you need further assistance on this issue Im happy to help you out by testing if your new ideas
work with 98SE or not regarding this error so Ill look back dayly for a week or two to see if I can
help.<br />
<br />
Oh yes and thank you for your tools which help everyone to get the files they need for any purpose
(music files to listen to or other files for map makers) doesn't matter, you do a great job! Good luck
for your future works as well!<br />
<br />
<img src="../../images/emotes/headphones.gif" width="32" height="32" alt="headphones" /> <img
src="../../images/emotes/cool.gif" width="32" height="32" alt="cool" /> <img
src="../../images/emotes/happy.gif" width="32" height="32" alt="happy" /><br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">176.</span> <a name="c1279"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1289">demonichacksaw</a></span><span
class="right">Posted: Nov 21st, 2004 -
12:46:51 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Im having the same problem as alias, the error mapping the view of the file, and i have the basicly the
same system setup, windows 98 se, 40gb harddrive witha about 8 gigs left, 655 mb of ram, so i think its
an os error, im going to upgrade to xp and ill see if i have the same problem, ill post with
results<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">177.</span> <a name="c1280"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 21st, 2004 - 2:06:39 pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Sadly I'm not too sure if there is anything I can do about this error. I don't know why the current
version doesn't work. I've uploaded a work around though; maybe you guys can verify that it works. Same
link as in post 172.<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">178.</span> <a name="c1281"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1267">AliaS</a></span><span
class="right">Posted: Nov 21st, 2004 - 2:53:13
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
Oh my dearest god, it works!<br />
<br />
I extracted the same files, that I got from other people and they also match!<br />
<br />
All I can say: It's working! <br />
<br />
<img src="../../images/emotes/cool.gif" width="32" height="32" alt="cool" /><br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">179.</span> <a name="c1282"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1291">robotron</a></span><span
class="right">Modified: Nov 21st, 2004 - 3:52:04
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
now that hijack has released a no online/ no cd patch will you make the gcf files modifiable? <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">180.</span> <a name="c1284"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=385">Keloran</a></span><span
class="right">Posted: Nov 21st, 2004 - 10:59:08
pm</span>
<div class="space"></div>
</div>
<div class="content"><br />
what would be the use of modifing the GFC files ??<br />
<br />
steam will only check them, only people who should use hte hijack are people who dont have a constant
net connection, the rest taht use it need there balls cutting off<br />
</div>
</div><br />
<div class="offsets">[
<a href="GCFScape_v1.3.1_Full-page1.html#p76">1</a>
<a href="GCFScape_v1.3.1_Full-page2.html#p76">2</a>
3
<a href="GCFScape_v1.3.1_Full-page4.html#p76">4</a>
<a href="GCFScape_v1.3.1_Full-page5.html#p76">5</a>
]</div><br>
</div>
<div class="main_sidebar">
<div class="group">
<div class="heading1"><span class="title">GCFScape</span></div>
<div class="content"><span class="title">» <a href="../../pages/GCFScape.html">About</a></span><br>
<span class="title">» <a href="../../pages/GCFScape-Download.html">Download</a></span><br>
<span class="title">» <a href="../GCFScape-Revision_History.html">Revision
History</a></span><br>
<span class="title">» <a href="../GCFScape-FAQ.html">FAQ</a></span><br>
<span class="title">» <a href="../GCFScape-GCF_File_Format.html">GCF
File Format</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/20200201044239/http://nemesis.thewavelength.net/index.php?c=76&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/20200201044239/http://nemesis.thewavelength.net/index.php?action=directory">Directory</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?c=76&o=0&action=addauthor">Register</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?c=76&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/20200201044239/http://nemesis.thewavelength.net/index.php?c=41&o=120#c4926">Batch
Compiler FAQ</a> (<a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=14291">devstringx</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?c=58&o=15#c4924">Cliffs
II: Texturing Cliffs</a> (<a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=14289">LeBugsBunny</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?c=223&o=0#c4923">Crafty
v1.0.0 Alpha 13</a> (<a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=14285">roy120rahul</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?c=277&o=0#c4911">GCFScape
v1.8.6</a> (<a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=14250">mandaysnow</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?c=205&o=210#c4901">About
Crafty</a> (<a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=14237">Kodha</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/20200201044239/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/20200201044239/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/20200201044239/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/20200201044239/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/20200201044239/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/20200201044239/http://nemesis.thewavelength.net/index.php?c=178#p178">VTFEdit
v1.2.5 Full</a></span><br><span class="title">» <a href="#p76">GCFScape
v1.3.1 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20200201044239/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/20200201044239/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/20200201044239/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/20200201044239/http://nemesis.thewavelength.net/index.php?a=14292">livewebtutors1</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/20200201044239/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=708">NoBody</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/index.php?a=7">Slackiller</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20200201044239/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/20200201044239/http://nemesis.thewavelength.net/rss/?page=1">RSS
2.0 (News)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20200201044239/http://nemesis.thewavelength.net/rss/">RSS 2.0
(Entire Site)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20200201044239/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>
|