This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
#!perl
while(<>)
{
s/[\n\r]//g;
s@\\@/@g;
if (/\.vtf$/)
{
$origname=$_;
if (s@/game/(\S+)/materials/@/content/\1/materialsrc/@i)
{
s/\.vtf$/.tga/i;
unless (-e $_)
{
print "Missing :$_ \n for $origname\n";
}
else
{
#print "***found content $_ for $origname\n";
}
}
else
{
print "I don't know where the materialsrc for $origname is supposed to be!\n";
}
}
}