Look in \pol\pkg\skills\tailoring for the file dyeable.src
Look at lines 45-58 for this code:
Code:
var element := FindConfigElem(cfg, item.objtype);
var dyeable := GetConfigInt(element, "dyeable");
if(dyeable == 1)
if((item.objtype == 0xfab) and (dyetub.color == 1))
SendSysMessage(who, "You cannot duplicate black dye tubs");
return;
else
item.color := dyetub.color;
PlaySoundEffect(who, 0x23f);
endif
else
SendSysMessage( who, "that item cannot be dyed");
return;
endif
if you want to allow people to dye anything with a dye tub then change those lines to the following code and compile the script. and restart the server.
Code:
item.color := dyetub.color;
PlaySoundEffect(who, 0x23f);
keep in mind that now a dye tub will dye anything.