I just read each line in 3DEffect.ini and only wrote the ones that are the effect names, so each line is [name], just type it in without the brackets...
If you want the code for it(In managed C++) here it is.. don't see why you would...
Code:
#include "stdafx.h"
using namespace System;
using namespace System::IO;
int main(array<System::String ^> ^args)
{
array<System::String ^> ^Tsdext = File::ReadAllLines("C:\\Program Files\\HybridCO\\ini\\3deffect.ini");
for(int i = 0; i < Tsdext->Length; i++)
{
if(Tsdext[i]->StartsWith("["))
{
StreamWriter ^sw = gcnew StreamWriter("C:\\Program Files\\HybridCO\\ini\\Effects.txt",true);
sw->WriteLine(Tsdext[i]);
sw->Close();
}
}
return 0;
}
Oh, here's the text file with all of them...(Attached to post).
Not going to post a list, because it's actually pretty long x.x






