[Release]All effect ID's

09/27/2008 05:08 tao4229#1
Ermm, well since there's been a lot of threads with a FEW effect ID's, I figured I'd post them ALL, I am aware that some of these ARE INVALID, and will cancel any other effects until you relog, who cares.. >_>

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
09/27/2008 12:47 YukiXian#2
???
09/27/2008 14:59 tao4229#3
Quote:
Originally Posted by YukiXian View Post
???
>_> It's the name of all of the effects you can use... The names TQ used.

It's useful if you want to implement a special effect or something x.x

You can play around with it if you have a /effect command..(Or PM commands enabled on your client using /addeffect)
09/28/2008 03:35 Exia13#4
i guess this is just me being a noob coder, but i have no clue as to how i can apply this in my server. Sorry if this looks like a dumb post.
09/28/2008 04:19 nTL3fTy#5
kernel32 GetPrivateProfileSectionNames.
09/28/2008 11:34 KraHen#6
Quote:
i guess this is just me being a noob coder, but i have no clue as to how i can apply this in my server. Sorry if this looks like a dumb post.
Congratz, this isn`t the part of the server. This is the list of the effects that could be used in an other code for your server.

By the way, it is nice :D We can make it even better. Let`s start to test `em all, and write a description for them.
09/28/2008 16:27 tao4229#7
Quote:
Originally Posted by nTL3fTy View Post
kernel32 GetPrivateProfileSectionNames.
Wow, thanks. =o

Probably a little better than the code I did x.x