How I do it:
since its in '
red, green, blue, alpha' I just open paint.net, draw the color i want and note the rgb in the script. Since it can only go up to 1 in the script I divide it by 255 (you can do the same with the alpha).
So it does look like (which won't work)
PHP Code:
seteffect 198, 175, 158, 0,5;
in the beginning, and after dividing it (which will work)
PHP Code:
seteffect 198/255, 175/255, 158/255, 0,5;
Not everyone will agree with that way but I think that's the easiest way to do it.