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
|
<!DOCTYPE html>
<head>
<title>Nem's Tools [Miscellaneous - PS VTF Plug-In - VTF Plug-In for Photoshop]</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="p154" href="#p154">VTF
Plug-In for Photoshop</a> - <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: May 6th, 2005 - 3:08:47 pm</span>
<div class="space"></div>
</div>
<div class="content"><b>About:</b>
<p>VTF Plug-In is an Adobe Photoshop 6.0 <b>and up</b> file format plug-in for the .vtf file format. It
is a simple plug-in that supports single-frame/single-face, 3 or 4 channel .vtf files in any format.
It is designed for typical .vtf creation and viewing and does not contain the advanced features found
in <a href="../../pages/VTFLib.html">VTFEdit</a>.
Nonetheless, it can be a useful tool for creating simple .vtf files. The plug-in does not support 64
bit versions of Photoshop.</p>
<b>Screenshots:</b>
<div style="text-align: center">
<br>
<img src="../../images/pages/vtfplugin1.png" width="285" height="471" alt="VTF Plug-In"
title="VTF Plug-In">
<br><br>
</div>
<b>Download from Web Archive:</b>
<ul>
<li><a
href="https://web.archive.org/web/20171117121402/http://nemesis.thewavelength.net/files/files/psvtfplugin1011.zip">Archive
(257 KB)</a></li>
</ul>
<b>Download from unofficial Github mirror:</b>
<ul>
<li><a href="http://nemstools.github.io/files/psvtfplugin1011.zip">Archive
(257 KB)</a></li>
</ul>
<b>Revision History:</b>
<br><br>
v1.0.11
<ul>
<li>Fixed alpha channel premultiplying on open.</li>
</ul>
v1.0.10
<ul>
<li>Added support for multiple alpha channels.</li>
</ul>
v1.0.9
<ul>
<li>Added support for version 7.4 of the VTF format.</li>
<li>Upgraded to VTFLib v1.2.7.</li>
</ul>
v1.0.8
<ul>
<li>Added support for version 7.3 of the VTF format.</li>
<li>Upgraded to VTFLib v1.2.6.</li>
</ul>
v1.0.7
<ul>
<li>Added spray templates.</li>
<li>Upgraded to VTFLib v1.2.5.</li>
</ul>
v1.0.6
<ul>
<li>Added "Mipmaps" option.</li>
<li>Upgraded to VTFLib v1.2.2.</li>
</ul>
v1.0.5
<ul>
<li>Added support for 16 bit channel reading.</li>
<li>Upgraded to VTFLib v1.2.1.</li>
</ul>
v1.0.4
<ul>
<li>Upgraded to VTFLib v1.2.0.</li>
</ul>
v1.0.3
<ul>
<li>Upgraded to VTFLib v1.1.3.</li>
</ul>
v1.0.2
<ul>
<li>Added format templates.</li>
</ul>
v1.0.1
<ul>
<li>Improved format specific flag handling.</li>
<li>Fixed combobox height.</li>
</ul>
v1.0.0
<ul>
<li>Original build.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left">Modified: Mar 5th, 2013 - 4:27:23 am</span><span
class="right">[ 576590 Views ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="offsets">[ 1
<a href="VTF_Plug-In_for_Photoshop-page2.html#p154">2</a>
<a href="VTF_Plug-In_for_Photoshop-page3.html#p154">3</a>
]</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">1.</span> <a name="c1537"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1574">cribs2</a></span><span
class="right">Posted: May 12th, 2005 - 5:43:05 pm</span>
<div class="space"></div>
</div>
<div class="content">AWSOME! You are officioly my god! <img src="../../images/emotes/free.gif" width="32"
height="32" alt="free"><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">2.</span> <a name="c1543"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1585">dionysos</a></span><span
class="right">Posted: May 17th, 2005 - 4:11:10 pm</span>
<div class="space"></div>
</div>
<div class="content">Incredible job Nemesis! I just downloaded and did a quick import test smooth as silk.
You have saved many people from a lot of busy work.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">3.</span> <a name="c1550"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1591">Sletin</a></span><span
class="right">Posted: May 22nd, 2005 - 12:53:37 am</span>
<div class="space"></div>
</div>
<div class="content">Nem, you Truely are amazing. Im very very impressed with your work. I cannot believe
you are human! lol, ur a GOD<img src="../../images/emotes/love.gif" width="32" height="32" alt="love">
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">4.</span> <a name="c1554"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1596">Phoenix606</a></span><span
class="right">Posted: May 27th, 2005 - 2:46:29 pm</span>
<div class="space"></div>
</div>
<div class="content">AMAZING!<br>
<img src="../../images/emotes/alarmed.gif" width="32" height="32" alt="alarmed"></div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">5.</span> <a name="c1632"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1704">maban</a></span><span
class="right">Posted: Aug 13th, 2005 - 12:03:03 pm</span>
<div class="space"></div>
</div>
<div class="content">This works for PhotoShop Elements 2.0 and up also.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">6.</span> <a name="c1634"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1710">ekramer</a></span><span
class="right">Posted: Aug 15th, 2005 - 6:12:45 pm</span>
<div class="space"></div>
</div>
<div class="content">will it work for photoshop 5?</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">7.</span> <a name="c1635"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Modified: Feb 21st, 2006 - 6:50:53 pm</span>
<div class="space"></div>
</div>
<div class="content">No. Adobe charges money for their SDK (currently v7). It took me hours to find the
old v6 SDK on the web, which was their last free release. It only supports Photoshop 6 and
up.<br><br>You could copy and paste from Adobe to VTFEdit (easiest solution), the alpha channel is not
supported with this method however.<br><br>Edit: A few people have mentioned to me that it does work in
Paint Shop Pro. To install it, create a folder in the <i>PlugIns</i> folder called <i>VTFLib</i> and
place both the VTF.8bi and the VTFLib.dll files in it. If it works please let me know which version of
Paint Shop you have, I know it at least works in Paint Shop Pro 8.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">8.</span> <a name="c1695"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1804">Magikus</a></span><span
class="right">Modified: Oct 13th, 2005 - 3:42:25 pm</span>
<div class="space"></div>
</div>
<div class="content">Unfortunately it doesn't seem to work with Photoshop 8 CS, does it? I installed it
correctly but there is nothing to be seen of VTF-format and I cant open or save VTF :(<br>
<br>
Can you fix it so it will do?</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">9.</span> <a name="c1697"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Oct 13th, 2005 - 10:27:27 pm</span>
<div class="space"></div>
</div>
<div class="content">The plug-in should work in PS CS (I've heard of many people using it and I personally
use it in PS CS2). Make sure you have all your files in the right place (see readme.txt); foreign
countries may have localized folder names and different PS installations can have different directory
structures.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">10.</span> <a name="c1729"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1848">MenZa</a></span><span
class="right">Posted: Nov 10th, 2005 - 5:45:49 am</span>
<div class="space"></div>
</div>
<div class="content">I use it for CS2 aswell. Sure you installed the .dll file in your PS root directory?
</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">11.</span> <a name="c1849"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1985">NoSyMe</a></span><span
class="right">Posted: Jan 24th, 2006 - 12:32:00 pm</span>
<div class="space"></div>
</div>
<div class="content">Hi, i have a Problem with the VTF Photoshop Plug-In!<br>
I installed it right but it don't work. "Can't find VTFLib.dll" ......pls help<br>
<br>
ICQ:207-453-176<br>
<br>
Sry for the bad english I'm german!<br>
<br>
<img src="../../images/emotes/bored.gif" width="32" height="32" alt="bored"></div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">12.</span> <a name="c1851"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 24th, 2006 - 4:51:03 pm</span>
<div class="space"></div>
</div>
<div class="content">The error you describer occurs when the .dll cannot be found, it should be in the
same folder as your Photoshop.exe. As a last resort you can try putting it in your system32 folder,
Windows will also look there.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">13.</span> <a name="c1894"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=2019">Killerfromsky</a></span><span
class="right">Posted: Feb 23rd, 2006 - 3:16:14 pm</span>
<div class="space"></div>
</div>
<div class="content">what are the settings if you want a transparant .vtf (with the alpha channel)</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">14.</span> <a name="c1896"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Feb 23rd, 2006 - 7:34:52 pm</span>
<div class="space"></div>
</div>
<div class="content">The simplest settings to use are the templates, these are my recommended settings for
various types of textures. In this case <i>Compressed Texture With Alpha</i> would apply.</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">15.</span> <a name="c1928"
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=2053">f00b13</a></span><span
class="right">Posted: Mar 18th, 2006 - 9:16:52 pm</span>
<div class="space"></div>
</div>
<div class="content">I have photoshop 8 and it doesn't seem to work....</div>
</div><br>
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">16.</span> <a name="c1929"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2053">f00b13</a></span><span
class="right">Posted: Mar 18th, 2006 - 9:21:57
pm</span>
<div class="space"></div>
</div>
<div class="content">Oops, never mind... I have paint shop pro 8 and it doesn't work...</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">17.</span> <a name="c1930"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 18th, 2006 - 9:28:57 pm</span>
<div class="space"></div>
</div>
<div class="content">Can you check my post (#6) and let me know if that works, I'm not sure if the plug-in
works in PSP or not.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">18.</span> <a name="c1954"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1148">Stino</a></span><span
class="right">Posted: Apr 4th, 2006 - 3:32:02
am</span>
<div class="space"></div>
</div>
<div class="content">ok, it worked in photoshop cs 2, but since i have installed the nvidea tools, it
doesn't work anymore, (my photoshop is going crazy, i can only open png's, but i cant do a thing with
it, it shows me what i'm doing, but then it turns back to the orignal state :s</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">19.</span> <a name="c1956"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Apr 4th, 2006 - 11:27:06 am</span>
<div class="space"></div>
</div>
<div class="content">Umm, sounds like you messed up your PS installation? I have the latest Nvidia tools
installed so it can't be a conflict between VTF Plug-In and the Nvidia tools (in fact there isn't really
a logical way that there could be, they are separate self-contained programs).</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">20.</span> <a name="c1986"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2134">BadPrankster</a></span><span
class="right">Posted: Apr 30th, 2006 - 5:40:12
pm</span>
<div class="space"></div>
</div>
<div class="content">
<div class="vbtitle">Nem:</div>
<div class="vbquote">Edit: A few people have mentioned to me that it does work in Paint Shop Pro. To
install it, create a folder in the PlugIns folder called VTFLib and place both the VTF.8bi and the
VTFLib.dll files in it. If it works please let me know which version of Paint Shop you have, I know it
at least works in Paint Shop Pro 8.</div><br />
Thanks!!! I have PSP 9.01 and it works!
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">21.</span> <a name="c2234"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2425">degeneratenoobgalore</a></span><span
class="right">Posted: Nov 1st, 2006 -
11:22:45 pm</span>
<div class="space"></div>
</div>
<div class="content">first off, im a noob when it comes to all this stuff, but im a creative person and
alot of my buddies on counter strike want me to create sprays for them, but i cant figure out how to
make some of the backgrounds show up transparent, i know how to make them transparent on photoshop, but
using vtfedit, what settings do i use so the foreground picture sho3ws up the way i saved it and the
background transparent, someone please help, and if possible, explain in simple terms<br />
<br />
thanx<br />
<br />
degenerate</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">22.</span> <a name="c2239"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 3rd, 2006 - 5:31:34 pm</span>
<div class="space"></div>
</div>
<div class="content">I emailed you because you also emailed me, please try to do only one, I'll get your
message either way and you wont speed anything up.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">23.</span> <a name="c2292"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2495">qwerty1</a></span><span
class="right">Posted: Dec 10th, 2006 - 3:38:54
am</span>
<div class="space"></div>
</div>
<div class="content">
<div class="vbtitle">Nem:</div>
<div class="vbquote">Edit: A few people have mentioned to me that it does work in Paint Shop Pro. To
install it, create a folder in the <i>PlugIns</i> folder called <i>VTFLib</i> and place both the
VTF.8bi and the VTFLib.dll files in it. If it works please let me know which version of Paint Shop you
have, I know it at least works in Paint Shop Pro 8.</div><br />I am using Paint Shop Pro X [10] and
when you try to save a .vft file, the message "Unknown plugin error has occured" pops up
twice.<br />
<br />
Help plz :(
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">24.</span> <a name="c2296"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Dec 10th, 2006 - 4:33:45 pm</span>
<div class="space"></div>
</div>
<div class="content">I've heard repeated reports of the plug-in working in PSP 8 and 9, but I'm not sure
about 10. Perhaps something about the plug-in support for PSP 10 has changed? I don't own PSP 10 so it's
really hard for me to test the plug-in or offer any more insight.<br />
<br />
<img src="../../images/emotes/shrug.gif" width="32" height="32" alt="shrug" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">25.</span> <a name="c2320"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2528">joey0101</a></span><span
class="right">Modified: Dec 29th, 2006 - 10:46:47
am</span>
<div class="space"></div>
</div>
<div class="content">Im having trouble save as .vtf, it is installed correctly, when I try to save it
comes up with the error <div class="vbtitle">Code:</div>
<div class="vbcode">'Canot save{File Name} because image width is not a power of 2'</div> <br />
<br />
I dont know if its because I'm using Adobe Photoshop Elements v4.0
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">26.</span> <a name="c2321"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Dec 29th, 2006 - 4:49:02 pm</span>
<div class="space"></div>
</div>
<div class="content">The width and height must be two to the power of something (e.g. 2^8=256) so valid
widths and heights would be any combination of 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 etc.<br />
<br />
Resize the texture within Photoshop before saving.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">27.</span> <a name="c2322"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2528">joey0101</a></span><span
class="right">Posted: Dec 30th, 2006 - 4:46:28
am</span>
<div class="space"></div>
</div>
<div class="content">nope still same Error<br />
<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">28.</span> <a name="c2327"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Dec 30th, 2006 - 10:49:26 pm</span>
<div class="space"></div>
</div>
<div class="content">What is your canvas size?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">29.</span> <a name="c2332"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2528">joey0101</a></span><span
class="right">Posted: Dec 31st, 2006 - 8:42:50
am</span>
<div class="space"></div>
</div>
<div class="content">i got it working but only when I create a new picture not when i upload one from my
digital camera</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">30.</span> <a name="c2335"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2538">Reaper412</a></span><span
class="right">Posted: Jan 2nd, 2007 - 8:34:31
am</span>
<div class="space"></div>
</div>
<div class="content">Ok How do you make a Menu Background for CS:S, when I am about to save it, I get this
Error:<br />
<br />
'Canot save{File Name} because image width is not a power of 2'<br />
<br />
I see joey0101 got it, but I didnt really understand what I am supposed to do, can you explain it
better? Like step by step directions how to make a menu background, this is my first time. </div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">31.</span> <a name="c2336"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 3rd, 2007 - 10:25:18 am</span>
<div class="space"></div>
</div>
<div class="content">You just have to resize the image width and height to be one of the above examples.
For example, if your texture was 300x500 pixels, you would resize it to the closest possible values
256x512.<br />
<br />
Obviously this will result in some skewing so you should design your textures accordingly. If this isn't
possible, you can save, for example, your 300x500 pixel texture into one that's 512x512 by filling the
remainder of the texture in with black; if you look at some of the official textures you'll see this
every once and a while (e.g. door textures).<br />
<br />
In the special case of backgrounds, you should design your texture as a standard 4:3 resolution image
(say 1024x768 which is a standard desktop resolution) then scale your background to the nearest power of
two, 1024x1024 in this case. It will look skewed when you save it, but appear properly in CS.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">32.</span> <a name="c2388"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2596">Rampant
Slug</a></span><span class="right">Posted: Feb 3rd, 2007 - 7:14:59
am</span>
<div class="space"></div>
</div>
<div class="content">when i save image i get cannot save as vtf because image width is not a power of two
??? wtf does that mean</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">33.</span> <a name="c2390"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2605">Fzm</a></span><span
class="right">Posted: Feb 10th, 2007 - 9:37:22 am</span>
<div class="space"></div>
</div>
<div class="content">I've got a problem with Photoshop 7.0<br />
I installed it like it's told in the readme, but it doesn't show up in Photosop :/<br />
<br />
I don't even know where it's supposed to be, but I can't save or open VTFs... <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">34.</span> <a name="c2401"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2632">frostilicus</a></span><span
class="right">Posted: Feb 23rd, 2007 - 7:39:43
pm</span>
<div class="space"></div>
</div>
<div class="content">Ummm.... AWESOME!<br />
Anyway, I'm not into getting PS at the moment....<br />
Is there any way you could try getting it on Paint.net?<br />
Free, open source, almost as good as PS, I've heard....<br />
Anywho, if you can't, I'll just go get PS sometime, but if you could try, it would be greatly
appreciated :D</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">35.</span> <a name="c2403"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Feb 23rd, 2007 - 9:30:14 pm</span>
<div class="space"></div>
</div>
<div class="content">I'm familiar with Paint.NET (I have it on my system), just not with their plug-in
system. I checked it out, and it looks like it should be fairly easy to make a .vtf plugin with all the
amenities of the Photoshop plugin. Check back in a week or two and I should have something. I'm just
rather busy at the moment.<br />
<br />
<img src="../../images/emotes/carryingstuff.gif" width="32" height="32" alt="carryingstuff" /></div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">36.</span> <a name="c2404"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2633">INsane</a></span><span
class="right">Modified: Feb 24th, 2007 - 2:59:15
am</span>
<div class="space"></div>
</div>
<div class="content">That's good news Nem, if you do get a Paint.Net plug-in working it will be a huge
benefit to everyone who wants to start customizing VTF's.<br />
<br />
What would we do without your great tools :) </div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">37.</span> <a name="c2419"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2680">Shiva</a></span><span
class="right">Modified: Mar 28th, 2007 - 4:57:56
pm</span>
<div class="space"></div>
</div>
<div class="content">I can't quite seem to get transparency to work in my spray for DOD Source. My console
gives me this back for errors:<br />
<br />
--- Missing Vgui material vgui/crosshairs/<br />
Resize parent (panel(listpanel_keybindlist) -> parent()) not sized yet!!!<br />
Resize parent (panel(ReverseMouse) -> parent()) not sized yet!!!<br />
Resize parent (panel(SFXSlider) -> parent()) not sized yet!!!<br />
Resize parent (panel(GammaButton) -> parent()) not sized yet!!!<br />
Resize parent (panel(MicMeter) -> parent()) not sized yet!!!<br />
--- Missing Vgui material vgui/resource/icon_newfolder<br />
couldn't exec userconfig.cfg<br />
Host_WriteConfiguration: Wrote cfg/config.cfg<br />
couldn't exec userconfig.cfg<br />
Host_WriteConfiguration: Wrote cfg/config.cfg<br />
<br />
My .vtf file has a saved alpha channel. Artwork, etc. created in PShop CS2. This is not an animated
image. Image size is 256 x 256. RGB. Any help or ideas out there?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">38.</span> <a name="c2426"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 30th, 2007 - 11:32:00 am</span>
<div class="space"></div>
</div>
<div class="content">I don't really know anything about installing crosshairs, but if you search for
*crosshair* in <i>source materials.gcf</i> using <a href="../../pages/GCFScape.html">GCFScape</a>, you
should find
some examples (e.g. <i>v_crosshair1</i> in <i>\hl2\materials\Sprites\Hud</i> of transparent crosshairs.
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">39.</span> <a name="c2429"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2690">zarmor</a></span><span
class="right">Posted: Apr 1st, 2007 - 11:48:48
am</span>
<div class="space"></div>
</div>
<div class="content">Hi, I have Paint Shop Pro 7 and it doesn't seem to work despite the fact that I have
followed your instructions.<br />
<br />
Anybody knows if it's just me or if PSP 7 isn't compatible with Nem's plugin ?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">40.</span> <a name="c2444"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2710">Andy-</a></span><span
class="right">Posted: Apr 6th, 2007 - 3:12:11
pm</span>
<div class="space"></div>
</div>
<div class="content">I'm about to go insane. Whenever I save a .vtf in photoshop CS2 with alpha, the
transparent parts are saved as white. I've tried everything and nothing works.<br />
<br />
<br />
<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">41.</span> <a name="c2445"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Apr 6th, 2007 - 3:15:50 pm</span>
<div class="space"></div>
</div>
<div class="content">Did you add an alpha channel in Photoshop (Under the <i>Channels</i> tab in the
bottom right, press the <i>Create New Channel</i> button)?<br /><br />Did you add the <i>$translucent
1</i> property to your .vmt file?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">42.</span> <a name="c2446"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2710">Andy-</a></span><span
class="right">Posted: Apr 6th, 2007 - 3:45:47
pm</span>
<div class="space"></div>
</div>
<div class="content">$translucent 1 is in the .vmt file, and there is an alpha channel. </div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">43.</span> <a name="c2447"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2710">Andy-</a></span><span
class="right">Posted: Apr 6th, 2007 - 3:55:08
pm</span>
<div class="space"></div>
</div>
<div class="content">Never mind. It seems the problem is only in PS, not ingame.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">44.</span> <a name="c2454"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2743">Homefry741</a></span><span
class="right">Posted: Apr 23rd, 2007 - 9:40:56
pm</span>
<div class="space"></div>
</div>
<div class="content">Umm, so i understand how to convert to vtf and what not, but if i want to import my
texture into Hammer, how can i do that. Like where should i put the vtf file?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">45.</span> <a name="c2455"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Apr 25th, 2007 - 4:11:29 pm</span>
<div class="space"></div>
</div>
<div class="content">The plug-in provides a shortcut for creating textures (.vtf files), however, you
still need to create a material (.vmt file). The <a
href="http://developer.valvesoftware.com/wiki/Material">Valve
SDK Docs</a> provide good documentation on how to do this. Your .vtf and .vmt files must then go
inside a subfolder of your <i>materials</i> folder.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">46.</span> <a name="c2494"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2786">skaterboy551</a></span><span
class="right">Posted: Jun 1st, 2007 - 12:40:59
pm</span>
<div class="space"></div>
</div>
<div class="content">ok i have placed the two files ( VFT.8bi and VFTLib.dll ) and still i don't have .vft
in my Photoshop formats to save. Please Help<br />
<br />
<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">47.</span> <a name="c2495"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2786">skaterboy551</a></span><span
class="right">Posted: Jun 1st, 2007 - 1:38:39
pm</span>
<div class="space"></div>
</div>
<div class="content">If you can help me plz let me know at [email protected]</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">48.</span> <a name="c2497"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2792">DarkMessiah</a></span><span
class="right">Posted: Jun 4th, 2007 - 5:23:13
am</span>
<div class="space"></div>
</div>
<div class="content">and i would like to know if there will be a plug-in for Fireworks CS3 9.0 , it didn't
seem that hard (Photoshop-Fireworks are both Adobe Products)</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">49.</span> <a name="c2498"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 5th, 2007 - 1:33:41 pm</span>
<div class="space"></div>
</div>
<div class="content">If it doesn't already work with the product (have you tried it), never. The new Adobe
CS SDKs are limited to <a
href="https://web.archive.org/web/20171205123120/http://partners.adobe.com/public/asn/solutionpartner/detail.html">partners</a>
(it costs $195 US to join). I'm therefore limited to the last free release of the SDK (which is
terrible). If someone wants to buy me a licence, I'll consider it.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">50.</span> <a name="c2502"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2339">Fragalishus</a></span><span
class="right">Modified: Jun 8th, 2007 - 8:18:29
pm</span>
<div class="space"></div>
</div>
<div class="content">Well I had a hdd crash and am in the process of getting everything re-installed.
GCFscape won't work, so I'm using 1.3.1. The vtf plugins aren't working either. I've tried multiple
installs of .Net 2, including one that came with my video card disk, and from MS.<br /><br /><a
href="https://web.archive.org/web/20171205123120/http://img160.imageshack.us/img160/3899/novtfig6.png">http://img160.imageshack.us/img160/3899/novtfig6.png</a><br />
<br />
It's weird because my vtf thumbnails are working fine in explorer, just not in PS. There was an error
but forgot to get a screenie, something about VTFlib.dll. I'm not getting the error now, but still no
thumbs. Any ideas?<br />
<br />
</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">51.</span> <a name="c2506"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 10th, 2007 - 1:29:55 pm</span>
<div class="space"></div>
</div>
<div class="content">There is a conflict when you use both the PS VTF Plug-In and the Shell Extensions.
The Plug-In installs VTFLib.dll to your PS directory and the Shell Extensions to your system32
directory. When you view thumbnails in PS, the Shell Extensions use the wrong VTFLib.dll (which is OK if
they are the same version, but it sounds like they aren't).<br />
<br />
Not much I can do about this, the Shell Extensions are Jed's. You might want to check if there is an
updated version that uses the latest VTFLib.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">52.</span> <a name="c2510"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2339">Fragalishus</a></span><span
class="right">Modified: Jun 12th, 2007 - 4:06:01
pm</span>
<div class="space"></div>
</div>
<div class="content">I almost have it sorted. For now anyway. Just uninstalled vtfedit and deleted
vtflib.dll. Also just for kicks had an older version of jed's vtf plugin (1.1) so reinstalled that too.
So the only vtflib being used is in the PS folder, so it's at least working, both 7.0 and 8.0. Still use
7 mostly since it's blazingly faster to start up.<br />
<br />
No luck on gcfscape tho, still having to stick with 1.3, which isn't all that bad just 1.6 looked
purtier. Tried everything I could think of, inluding trying different visual basic runtimes that I'd had
on a disk, same place I had jed's plugin and all the old PS plugins. No luck.<br />
<br />
The 1.1 thumbnail plugin didn't come with a vtflib.dll. The 1.3 version does, and I guess that's what
the problem was. (yeah reinstalled vtfedit as I was typing this and jed's 1.3 comes with vtflib.dll
1.2.3, yours is 1.2.5) So anyone else having trouble just stick with 1.1 for thumbs, since it apparently
doesn't need vtflib at all to work right. Worked fine for me without it anyway.<br />
<br />
-edit- bleh, just noticed jed doesn't have archives up from what I could see. Anyone needing 1.1 shell
extensions let me know if you can't get a hold of jed or something.</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">53.</span> <a name="c2540"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2837">d0nan</a></span><span
class="right">Posted: Jul 6th, 2007 - 4:29:11
pm</span>
<div class="space"></div>
</div>
<div class="content">Thanks lol ^^ i want download it but how to download please? <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">54.</span> <a name="c2557"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2855">XxGhostKillxX</a></span><span
class="right">Posted: Jul 18th, 2007 - 4:06:28
pm</span>
<div class="space"></div>
</div>
<div class="content">It doesn't seem to work on Adobe Photoshop 7.0 the .vtf files don't appear in the
"open" menu...</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">55.</span> <a name="c2633"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2910">Techfreek</a></span><span
class="right">Posted: Sep 3rd, 2007 - 10:04:37
am</span>
<div class="space"></div>
</div>
<div class="content">It does not seem to work on Photoshop Elements 5.0, I tried your instructions for
Photoshop, and when that failed I tried your instructions for Paint Shop Pro out of desperation, am I
just completly missing something?</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">56.</span> <a name="c2663"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2941">otto888</a></span><span
class="right">Posted: Sep 28th, 2007 - 5:02:28
pm</span>
<div class="space"></div>
</div>
<div class="content">The new one also works on Adobe Photoshop Elements 5.0 but when it loads. it looks
weirtd(SP)(looks like its been erased) just press ctrl+Z to fix. <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">57.</span> <a name="c2674"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=2962">moretz</a></span><span
class="right">Posted: Oct 7th, 2007 - 8:14:01
am</span>
<div class="space"></div>
</div>
<div class="content">hey when i try to save my file as a vtf i get this messege:<br />
<br />
http://img401.imageshack.us/img401/6519/screenshotse6.jpg<br />
<br />
what does it mean and how to i fix it so i can save as vtf</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">58.</span> <a name="c2695"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3012">NEXSO</a></span><span
class="right">Posted: Oct 31st, 2007 - 7:42:26
am</span>
<div class="space"></div>
</div>
<div class="content">the plugin is not run in - Paint Shop Pro Photo X2</div>
</div><br />
<div class="group">
<div class="heading2">
<div class="space"></div><span class="left"><span class="title">59.</span> <a name="c2696"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3012">NEXSO</a></span><span
class="right">Posted: Oct 31st, 2007 - 12:22:26
pm</span>
<div class="space"></div>
</div>
<div class="content">by Corel Paint Shop Pro Photo X2<br />
<br />
C:\Corel Paint Shop Pro Photo X2\Languages\DE\Plugins<br />
<br />
and the plugin Run :) :)<br />
<br />
<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">60.</span> <a name="c2736"
href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3062">opticnerve</a></span><span
class="right">Posted: Nov 29th, 2007 - 2:51:37
pm</span>
<div class="space"></div>
</div>
<div class="content">Is there a version that will work with CS2/OSX? (can't seem to find it)</div>
</div><br />
<div class="offsets">[ 1
<a href="VTF_Plug-In_for_Photoshop-page2.html#p154">2</a>
<a href="VTF_Plug-In_for_Photoshop-page3.html#p154">3</a>
]</div><br>
</div>
<div class="main_sidebar">
<div class="group">
<div class="heading1"><span class="title">Miscellaneous</span></div>
<div class="content"><span class="title">» <a
href="../../pages/Miscellaneous-HLLib.html">HLLib</a></span><br>
<span class="title">» <a href="../../pages/Miscellaneous-PS_VTF_Plug-In.html">PS
VTF Plug-In</a></span><br>
<span class="title">» <a href="../../pages/Miscellaneous-PDN_VTF_Plug-In.html">PDN
VTF Plug-In</a></span><br>
<span class="title">» <a href="../../pages/Miscellaneous-Open_Now.html">Open
Now!</a></span><br>
<span class="title">» <a href="../../pages/Miscellaneous-wad2bmp.html">wad2bmp</a></span><br>
<span class="title">» <a href="../../pages/Miscellaneous-Auto_Seamer.html">Auto
Seamer</a></span><br>
<span class="title">» <a href="../../pages/Miscellaneous-BSP_View.html">BSP
View</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/20171117154249/http://nemesis.thewavelength.net/index.php?c=154&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/20171117154249/http://nemesis.thewavelength.net/index.php?action=directory">Directory</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?c=154&o=0&action=addauthor">Register</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?c=154&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/20171117154249/http://nemesis.thewavelength.net/index.php?c=178&o=105#c4044">VTFEdit
v1.2.5 Full</a> (<a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=13322">iipa</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?c=213&o=45#c4039">Crafty
FAQ</a> (<a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=13268">steve0503</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?c=277&o=0#c4038">GCFScape
v1.8.6</a> (<a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=13282">imgsrc17</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?c=205&o=210#c4037">About
Crafty</a> (<a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=13231">Paynamia</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?c=169&o=90#c4036">GCFScape
v1.8.6 Full</a> (<a
href="https://web.archive.org/web/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/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/20171117154249/http://nemesis.thewavelength.net/index.php?a=13330">Nishan1</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/20171117154249/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=708">NoBody</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/index.php?a=7">Slackiller</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20171117154249/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/20171117154249/http://nemesis.thewavelength.net/rss/?page=1">RSS
2.0 (News)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20171117154249/http://nemesis.thewavelength.net/rss/">RSS 2.0
(Entire Site)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20171117154249/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>
|