aboutsummaryrefslogtreecommitdiff
path: root/subpages/Comments/VTF_Plug-In_for_Photoshop-page2.html
blob: 77c72aa18ccaf98ac6d304817d9882974ceb3266 (plain) (blame)
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
<!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&#39;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">[
              <a href="VTF_Plug-In_for_Photoshop-page1.html#p154">1</a>
              2
              <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">61.</span> <a name="c2745"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: Dec 13th, 2007 - 3:47:46 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Nope, sorry. <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">62.</span> <a name="c2748"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3090">systemic</a></span><span
                  class="right">Posted: Dec 20th, 2007 - 11:44:42
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">First of all, NEM, thanks for the wonderful site -- you've been a HUGE help already.
                I have a specific problem that I was hoping you or anyone could help me with. I'm trying to create a
                realistic cathedral scene (much like lost coast) and I've been able to get my custom transparent
                textures to show up in hammer and ep1 just fine thanks to your plug-in, but now I'd like the stained
                glass windows to affect the light that shines through them as well. I don't even know if this is
                possible...but is there a way to make the texture so that it actually transforms the color of the light
                that passes through it? Obviously, I could just create multiple lights to simulate this effect, but
                ideally I'd like to have the shapes of color in my windows visible on the floor where they shine
                through. Is there any way to do this?<br />
                Thanks</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">63.</span> <a name="c2777"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3117">Arctic</a></span><span
                  class="right">Posted: Jan 6th, 2008 - 10:45:27
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">How do you make a 8bi file?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">64.</span> <a name="c2780"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3122">JonnyRingo</a></span><span
                  class="right">Modified: Jan 10th, 2008 - 8:16:34
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">i installed it correctly, but when i click File&gt;Save As... i get &quot;Could not
                save as &quot;c:/....&lt;imagename&gt;.vtf&quot; because image width is not a power of two.&quot;</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">65.</span> <a name="c2782"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3077">ArchDeluxe</a></span><span
                  class="right">Posted: Jan 12th, 2008 - 3:04:07
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">to answer any one who might be wondering yes this does work in CS3. The installation
                is little bit tricky but can be done (i had to have windows do a search to find my Photoshop folder) The
                photoshop Folder is in the &quot;Common Files&quot; Folder in your Program files dir. your file path
                will look somethink this:<br />
                C:\Program Files\Common Files\Adobe\Installers\aefc4.....501\Adobe Photoshop CS3\, from there just
                fallow the Read me that comes with the Archive Dl up top.<br />
                <br />
                <br />
                <img src="../../images/emotes/theforce.gif" width="32" height="32" alt="theforce" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">66.</span> <a name="c2810"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1148">Stino</a></span><span
                  class="right">Modified: Feb 27th, 2008 - 7:49:34
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content"> 1) Close Photoshop.<br />
                2) Extract VTFLib.dll to your ..\Photoshop\ folder.<br />
                3) Extract VTF.8bi to your ..\Photoshop\Plug-Ins\File Formats\ folder.<br />
                4) Run Photoshop.<br />
                <br />
                this leads to an error message when i open a vtf file: could not complete your request because hllib
                could not be initialized.<br />
                <br />
                i used this plugin before but i've updated now to the new 2007 version and it seems to be broken :(
              </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">67.</span> <a name="c2827"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3213">bearkiller</a></span><span
                  class="right">Posted: Apr 2nd, 2008 - 1:24:12
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">every time i try to save it comes up with this <br />
                'Canot save{File Name} because image width is not a power of 2'<br />
                i know some people have also had this problem but i tried what you told them and it still dosn't work
              </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">68.</span> <a name="c2829"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: Apr 6th, 2008 - 12:01:33 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Here is an article describing <a
                  href="http://en.wikipedia.org/wiki/Power_of_two">powers of
                  two</a>. You need the image width and height to be a power of two (in pixels) before saving with the
                plug-in.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">69.</span> <a name="c2842"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3252">MNM</a></span><span
                  class="right">Posted: May 3rd, 2008 - 9:49:10 am</span>
                <div class="space"></div>
              </div>
              <div class="content">You couldnt make a Gimp version of this VTF plugin??? It's the only Photoshop plugin
                I've ever tried who doesn't work in Gimp :(</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">70.</span> <a name="c2846"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: May 8th, 2008 - 12:45:43 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">If The Gimp supports Photoshop plug-ins, perhaps VTFLib.dll is in the wrong location?
                Try putting it in your <i>system32</i> folder if all else fails.<br />
                <br />
                I haven't tested it with The Gimp at all and I'm hesitant to add another program to support. The primary
                reason for adding Paint.Net support was to provide an example of how to use VTFLib from other languages.
                Too many dependencies become a burden to maintain.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">71.</span> <a name="c2847"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3252">MNM</a></span><span
                  class="right">Posted: May 8th, 2008 - 12:51:31 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Gimp only supports 8bf and not 8bi(or 1, dunno) but i'll try the system 32 thing :)
              </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">72.</span> <a name="c2849"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3257">psychodelic</a></span><span
                  class="right">Modified: May 9th, 2008 - 9:34:21
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">AAAAAAAAAAAAAAAAAAAAA.<br /><a
                  href="https://web.archive.org/web/20171212072153/http://javeline.my1.ru/wtf.jpg">http://javeline.my1.ru/wtf.jpg</a>
                <img src="../../images/emotes/waaa.gif" width="32" height="32" alt="waaa" /><img
                  src="../../images/emotes/handwalking.gif" width="32" height="32" alt="handwalking" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">73.</span> <a name="c2851"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: May 10th, 2008 - 3:54:29 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">In the Images-&gt;Mode menu, make sure you are in RGB Color at 8 bits per channel.
                Then, in the channels tab at the bottom right, make sure you have a Red, Green and Blue channel with at
                most one additional Alpha channel.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">74.</span> <a name="c2853"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3257">psychodelic</a></span><span
                  class="right">Modified: May 15th, 2008 -
                  12:35:37 am</span>
                <div class="space"></div>
              </div>
              <div class="content">I did so. for me all is correct. but this error appears <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">75.</span> <a name="c2856"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: May 19th, 2008 - 1:38:46 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Email the .psd to <a
                  href="https://web.archive.org/web/20171212072153/mailto:[email protected]">[email protected]</a>
                and I'll take a look at it.</div>
            </div><br />

            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">76.</span> <a name="c2867"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3284">Wuag</a></span><span
                  class="right">Posted: May 27th, 2008 - 11:59:46
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">I have Photoshop 7.0 (Yes, its old. I got it free from my work) and I'm not sure how
                to save the transparent background. I'm trying to make a custom spray, so, any help is welcome. Thanks.
              </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">77.</span> <a name="c2872"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: May 28th, 2008 - 1:09:01 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">In order to save your .vtf with transparency, you have to add an alpha channel. See
                <a href="https://web.archive.org/web/20171204001116/http://www.youtube.com/watch?v=vGhWpHW89LA">this</a>
                tutorial for details.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">78.</span> <a name="c2875"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3257">psychodelic</a></span><span
                  class="right">Posted: May 30th, 2008 - 1:12:55
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Nem. So what?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">79.</span> <a name="c2908"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3324">Dawlight</a></span><span
                  class="right">Posted: Jun 23rd, 2008 - 5:36:40
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">When I try to save one of my texture, it says that it couldn't be saved because the
                image doesn't have 3 or 4 channels.<br />
                I have RED, BLUE, GREEN and ALPHA, and of course &quot;RGB&quot;.<br />
                Why won't it work?<br />
                This has never happened before.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">80.</span> <a name="c2909"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3326">shuy3n</a></span><span
                  class="right">Modified: Jun 24th, 2008 - 7:36:15
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Dawlight I have the same problem, I'm using Photoshop CS3 maybe that's where the
                problem is? also it only happens with textures with alpha maps <img
                  src="../../images/emotes/exhausted.gif" width="32" height="32" alt="exhausted" /><br />
                hope nem releases a workaround as or something :)</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">81.</span> <a name="c2911"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: Jun 24th, 2008 - 1:47:31 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Can one of you <a
                  href="https://web.archive.org/web/20171204001116/mailto:[email protected]">email</a> me an
                offending .psd so I can check it out?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">82.</span> <a name="c2938"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3350">Gunslinger42</a></span><span
                  class="right">Posted: Jul 10th, 2008 - 4:34:00
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">I'm having the same problem as Dawlight and shuy3n. I'm only using photoshop CS2
                though, if that makes any difference.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">83.</span> <a name="c3093"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3603">Blub</a></span><span
                  class="right">Posted: Jan 12th, 2009 - 8:36:38
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Well, I would really like to see a plug-in for GIMP.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">84.</span> <a name="c3112"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3639">Nauz</a></span><span
                  class="right">Modified: Feb 9th, 2009 - 3:33:46
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Great plug-in, i had to reinstall photoshop though and now i can't save the alpha
                channel anymore :( <br />
                <br />
                Could this be because of the changes in v1.0.11?<br />
                <br />
                <br />
                EDIT: found a download of an very old version from 2005, alpha channel works perfectly fine with it.
                <br />
                <br />
                Best regards</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">85.</span> <a name="c3144"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3672">roto23</a></span><span
                  class="right">Posted: Mar 9th, 2009 - 8:38:18
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">I have...get this... Paint Shop Pro 5 from like 1997? and it does not work with it. I
                installed Paint Shop Pro 8 and did a Saveas and your dialog box popped up and I was able to save. BTW,
                nice terrain generator.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">86.</span> <a name="c3168"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3712">seranotti</a></span><span
                  class="right">Modified: Apr 18th, 2009 - 8:52:07
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">I have Abobe Photo shop CS3 Portable version 10.0<br />
                whenever I open an image and look for the VTF format it is not there. I cannot save or open VTF files,
                instead I must use the program VTFEdit to switch it to TGA but I cannot change it back. When I
                downloaded the VTF plug-in for photo shop and read the read-me it said to put the two files into folders
                my photo shop CS3 Portable program does not have. If you have your own copy or know someone who does
                please give me the actual file I need to place the VTF plug-in pieces into. THANKS</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">87.</span> <a name="c3174"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3731">BonersAkimbo</a></span><span
                  class="right">Posted: Apr 28th, 2009 - 10:30:21
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Are there any plans to support CS4 x64?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">88.</span> <a name="c3233"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3827">Liquid
                    Digitz</a></span><span class="right">Posted: Aug 2nd, 2009 - 4:30:15
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">An x64 release would definitely be an asset to some, myself included. Till then, x86
                version must be used for this. Constantly swapping between x64 and x86 versions though does become a
                hassle.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">89.</span> <a name="c3273"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3905">Dog</a></span><span
                  class="right">Posted: Oct 23rd, 2009 - 1:12:14 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Hello,<br />
                <br />
                I have a problem, I made a picture with alpha channel, saved as Compressed Texture with Alpha. Then I
                opened this picture and noticed that alpha channel is fully white. I really need to make texture with
                translucent background...<br />
                <br />
                Thanks.<br />
                - Dog</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">90.</span> <a name="c3284"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3905">Dog</a></span><span
                  class="right">Posted: Nov 13th, 2009 - 5:15:42 am</span>
                <div class="space"></div>
              </div>
              <div class="content">I found the reason. Image MUST have 'background' layer.</div>
            </div><br />

            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">91.</span> <a name="c3341"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4004">Colonel88</a></span><span
                  class="right">Posted: Feb 26th, 2010 - 9:45:57
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">I have Photoshop 7.o, and it doesn't work... It keeps on saying that VTFLIB.dll is
                Corrupted. I downloaded the same file 7 times now, any way to help me?I feel so <img
                  src="../../images/emotes/exhausted.gif" width="32" height="32" alt="exhausted" /> since I tried so
                many times.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">92.</span> <a name="c3349"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4022">WindsofChris</a></span><span
                  class="right">Posted: Mar 20th, 2010 - 8:36:42
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">NoSyMe, You actually rather good english to be German. :). Btw Nem, Good job on this.
                This is going to save me SOOOOOOOOOOOOOO much work. lolololol</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">93.</span> <a name="c3376"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4048">r99t</a></span><span
                  class="right">Modified: May 2nd, 2010 - 5:11:03
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Hey Nem,<br />
                <br />
                would you please revise the VTF plugin to make it work with the new PS CS5? I really need this plugin to
                continue my work.<br />
                <br />
                It would be very much appreciated by all of us!<br />
                <br />
                Thank you!<br />
                <br />
                Edit: Okay, never mind! Was using the x64 version of PS. Still works great with x86. <img
                  src="../../images/emotes/run.gif" width="32" height="32" alt="run" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">94.</span> <a name="c3377"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4049">n360n</a></span><span
                  class="right">Posted: May 2nd, 2010 - 8:51:25
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">I have photoshop 6 elements, and it says that the .vtf files are able to be opened in
                photoshop, but when i open it, it says that it is the wrong file. Please Help! </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">95.</span> <a name="c3378"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4051">bjornwitteman</a></span><span
                  class="right">Posted: May 7th, 2010 - 5:01:29
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">I'd tried it on photoshop elements 8 but its says when i want to save it &quot;image
                width is not a power of two&quot;<br />
                can somebody help.<img src="../../images/emotes/yelling.gif" width="32" height="32" alt="yelling" /><img
                  src="../../images/emotes/brokenball.gif" width="32" height="32" alt="brokenball" /><br />
                <br />
                Sorry for my bad english.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">96.</span> <a name="c3379"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1704">maban</a></span><span
                  class="right">Posted: May 7th, 2010 - 7:13:49
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Image width and height need to be powers of two. Meaning 2, 4, 8, 16, 32, 64, 128 and
                so on. You can set transparency for the extra space if you need to.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">97.</span> <a name="c3382"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4055">kalitke</a></span><span
                  class="right">Modified: May 11th, 2010 - 5:15:32
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">When will be? VTF Plug-In for Adobe Photoshop CS4-CS5 Windows7 64bit We are waiting!
              </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">98.</span> <a name="c3383"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4056">iwasawafag</a></span><span
                  class="right">Posted: May 13th, 2010 - 4:52:21
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">How I can save my texture as 7.1 vtf with this plug-in??? (don't like use vtfedit any
                time)</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">99.</span> <a name="c3384"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4056">iwasawafag</a></span><span
                  class="right">Posted: May 13th, 2010 - 5:19:31
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Oh, sorry. I think, what it needed to me, but I was mistaken.<br />
                And sorry, for my bad english.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">100.</span> <a name="c3388"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: May 20th, 2010 - 2:38:38 am</span>
                <div class="space"></div>
              </div>
              <div class="content">
                <div class="vbtitle">kalitke:</div>
                <div class="vbquote">When will be? VTF Plug-In for Adobe Photoshop CS4-CS5 Windows7 64bit We are
                  waiting!</div><br />I don't own a 64 bit version of Photoshop and I lost the source code to the
                plug-in on a recent format (though probably not significant because I'd have to rewrite the plug-in
                using their new SDK). Final summation: Not any time soon.<br /><br />
                <div class="vbtitle">kaktus:</div>
                <div class="vbquote">How I can save my texture as 7.1 vtf with this plug-in??? (don't like use vtfedit
                  any time)</div><br />
                I'm not sure what the default is (maybe 7.2), but it cannot be changed.
              </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">101.</span> <a name="c3390"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4044">Harris</a></span><span
                  class="right">Posted: May 21st, 2010 - 11:16:21
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">GIMP plug-in, please. <img src="../../images/emotes/free.gif" width="32" height="32"
                  alt="free" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">102.</span> <a name="c3396"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4069">rainbows</a></span><span
                  class="right">Posted: Jun 6th, 2010 - 9:12:18
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Can someone please tell me how to do this? There's no tutorial to speak of that I can
                find. I tried to just resave my image as VTF but it doesn't show up in the dropdown menu.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">103.</span> <a name="c3397"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4072">rusty</a></span><span
                  class="right">Posted: Jun 9th, 2010 - 3:26:50
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Hi there guys my firts time out on the site and may i say the site is really nice :)
                anyway back to the help bit, i want to make a picture in a VTF format but i want to resize it for
                example 1026x768 but as i know the VTF as a save must or should be the power of 2, but i want to save
                the VTF as a widescreen image 1920x1080 or something like that, any ideas how i would do that im using
                at the moment adobe photoshop 7 and JASC photoshop 9 any help guys would be very much apprecieted <img
                  src="../../images/emotes/free.gif" width="32" height="32" alt="free" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">104.</span> <a name="c3400"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: Jun 13th, 2010 - 12:22:15 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Take you wide screen dimensioned image and resize it to the nearest power of two.
                This will change the <a href="http://en.wikipedia.org/wiki/Pixel_aspect_ratio">pixel
                  aspect ratio</a> of your image. Next save it to .vtf. The .vtf background will be scaled to your
                screen's wide screen resolution restoring the original pixel aspect ratio.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">105.</span> <a name="c3410"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4072">rusty</a></span><span
                  class="right">Posted: Jun 15th, 2010 - 4:42:58
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Are ok Nem great stuff bud many thanks for your help much appreciated bud <img
                  src="../../images/emotes/cool.gif" width="32" height="32" alt="cool" /></div>
            </div><br />

            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">106.</span> <a name="c3434"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4095">lolman122</a></span><span
                  class="right">Modified: Jul 22nd, 2010 - 8:50:40
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">I have paint shop pro v7,and it doesn't have a plugins folder... <img
                  src="../../images/emotes/brokenball.gif" width="32" height="32" alt="brokenball" /><img
                  src="../../images/emotes/exhausted.gif" width="32" height="32" alt="exhausted" /><img
                  src="../../images/emotes/waaa.gif" width="32" height="32" alt="waaa" /><img
                  src="../../images/emotes/shrug.gif" width="32" height="32" alt="shrug" /> please help?<br />
                <br />
                PS I created the folder, and it still doesnt work <img src="../../images/emotes/exploding.gif"
                  width="32" height="32" alt="exploding" /><img src="../../images/emotes/folder.gif" width="32"
                  height="32" alt="folder" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">107.</span> <a name="c3435"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1704">maban</a></span><span
                  class="right">Posted: Jul 22nd, 2010 - 9:34:27
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Paint Shop is not the same as Photoshop.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">108.</span> <a name="c3440"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4102">Mr.
                    Happy</a></span><span class="right">Posted: Jul 26th, 2010 - 3:54:07
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Hi, I love this tool so much, and GCFScape as well. Your tools are vital and integral
                and have done me damn well have the years. The photoshop plugin in particular makes things so easy and
                simple.<br />
                <br />
                I had an idea recently that combining the vtf plugin and the vmt editor of vtf edit would be immensely
                awesome, and make everything perfect in the world. If you could have a mode where it would auto generate
                a vmt with each mask/texture used being selectable from either image as a whole, a layer, a channel, an
                already existing file, or a new blank file the process for making a material for source would be ever so
                painless. Creating a new material of any type the user wants would be as simple as saving the psd file
                with a preset loaded, or, for more specialized stuff, setting the paths manually.<br />
                <br />
                Anyway, if you need a project I think that would make a good one :D</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">109.</span> <a name="c3474"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4140">Ganix</a></span><span
                  class="right">Modified: Sep 26th, 2010 - 11:21:06
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Argh. I extract the .dll thing to my Photoshop folder, but it says &quot;... Error
                opening file!&quot; and then &quot;Couldn't extract correctly&quot;. The plugin was extracted fine, but
                the other wouldn't <br />
                <br />
                <br />
                <br />
                <br />
                Edit: RAGE MODE</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">110.</span> <a name="c3515"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4190">thepkhunter</a></span><span
                  class="right">Posted: Dec 2nd, 2010 - 2:31:41
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Hey, I've been using this wonderful file format plugin for around 2 years now with
                Photoshop CS4 running on 32bit Vista. Loved it. <br />
                <br />
                I recently got a new PC running 64bit Windows 7 and Photoshop CS5. I now find that neither this, nor the
                Nvidia normal map filter will work.<br />
                <br />
                Any ideas on how I can get them working? This has severely slowed my productivity. </div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">111.</span> <a name="c3516"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
                  class="right">Posted: Dec 6th, 2010 - 11:59:51 pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Sorry thepkhunter, I would have to create a 64 bit version of the plug-in which I
                have no plans to do because I do not own a 64 bit version of Photoshop to test it on.<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">112.</span> <a name="c3521"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4161">TheCelt</a></span><span
                  class="right">Modified: Dec 20th, 2010 - 9:25:32
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Hope you get a 64-bit version soon nem!! xD<br />
                <br />
                @thepkhunter: just use the PS 32-bit version that installs alongside PS 64-bit. I know its kind of a
                stepping stone, but hey....it works! xD</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">113.</span> <a name="c3522"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4102">Mr.
                    Happy</a></span><span class="right">Posted: Dec 21st, 2010 - 9:58:24
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">There seems to be a bug in CS5 where saving a new vtf from a psd will not save the
                alpha layers even when set to do so. The only way I can save an alpha channel now is to paste the
                channels into a preexisting vtf with an an alpha channel and merge the layers so that photoshop
                considers it a vtf still and Save As... isn't necessary.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">114.</span> <a name="c3531"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4221">U235master</a></span><span
                  class="right">Modified: Jan 24th, 2011 - 1:13:33
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content"><img src="../../images/emotes/sad.gif" width="32" height="32" alt="sad" /> this
                doesn't work on ps cs5 x64<br />
                can you make an update soon for it?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">115.</span> <a name="c3565"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4282">Benjamoose</a></span><span
                  class="right">Posted: Apr 20th, 2011 - 2:27:53
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Tried opening Portal 2 VTF files in both Photoshop and VTFEdit. They both turned up
                an error. But VTFEdit's was seemingly more informative:<br />
                <br />
                &quot;File version 7.5 does not match 7.0 to 7.4&quot;<br />
                <br />
                It would appear they have updated their format to 7.5, so both the plugin for photoshop and VTFEdit need
                to be updated to be able to use them.<br />
                <br />
                Just a heads up I guess! :D</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">116.</span> <a name="c3568"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4285">HelloWorld</a></span><span
                  class="right">Posted: Apr 23rd, 2011 - 4:07:07
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Hello Nemesis,<br />
                <br />
                Can you update this plugin to support vtf 7.5, please?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">117.</span> <a name="c3596"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=3981">civanT</a></span><span
                  class="right">Posted: Jul 14th, 2011 - 5:18:27
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">Sorry if this was mentioned before but there is a problem with the plugin. After I
                save a file as VTF, all other saves use the same options no matter what you choose while saving. For
                example if I save a texture as normal map, then save something as a compressed texture second one still
                be saved as normal map.<br />
                <br />
                Any help appreciated <img src="../../images/emotes/handwalking.gif" width="32" height="32"
                  alt="handwalking" /></div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">118.</span> <a name="c3652"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4432">charlesgamer</a></span><span
                  class="right">Posted: Nov 5th, 2011 - 11:11:35
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">hey im using it for Photoshop cs5 and it says that it wont save because the width
                isnt the power of two. am i doing something wrong or is it not compatible with cs5?</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">119.</span> <a name="c3653"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=1704">maban</a></span><span
                  class="right">Posted: Nov 5th, 2011 - 11:52:01
                  pm</span>
                <div class="space"></div>
              </div>
              <div class="content">2, 4, 8, 16...128, 256, 512, etc.</div>
            </div><br />
            <div class="group">
              <div class="heading2">
                <div class="space"></div><span class="left"><span class="title">120.</span> <a name="c3654"
                    href="https://web.archive.org/web/20200201043948/http://nemesis.thewavelength.net/index.php?a=4433">Kfrancis</a></span><span
                  class="right">Posted: Nov 6th, 2011 - 11:24:02
                  am</span>
                <div class="space"></div>
              </div>
              <div class="content">Thanks for the plugin. I am using Paintshop pro X3. Had problems until I copied the
                VTFLib.dll from your latest VTFEdit app into the plugin folder.<br />
                For anyone looking for their plugin directory here is where I found it on my computer &quot;C:\Program
                Files (x86)\Corel\Corel PaintShop Photo Pro\X3\PSPClassic\Languages\EN\PlugIns\&quot;<br />
              </div>
            </div><br />

            <div class="offsets">[
              <a href="VTF_Plug-In_for_Photoshop-page1.html#p154">1</a>
              2
              <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&amp;o=0">
                  <div class="label">Username:</div>
                  <div><input type="text" name="username" class="textbox" autocomplete="off"
                      style="background-image: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC&quot;); 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(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC&quot;); 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&amp;o=0&amp;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&amp;o=0&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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>