08.07.2012, 10:05
Don't you get it!? He has 5 filterscripts in his filterscript line in his server.cfg. The first 3 filterscripts he adds to his filterscript line function properly, but the final two on the line are not detected or do not completely function. Not that hard to understand...
I have had this problem before on some of my other servers, I can't remember exactly how I solved it, but I think it involved combining some of the filterscripts to make it less trouble for the server to read. Otherwise try using some of the filterscripts in the gamemode. There might also be something in one of the first 3 filterscripts, most likely the 3rd one, that is stopping the other two being loaded. So whenever the 3rd script is calling OnFilterScriptInit(), it is stopping and not letting the other 2 be loaded. Another thing that I might have fixed it with is:
Example: filterscripts FS1 FS2 FS3 FS4 FS5
Change that line to filterscripts FS1 FS2 FS4 FS5 FS3
Move your 3rd filterscript on the line, to the very end, so that all other filterscripts will be read before the last one terminates it. One solution to this problem, but not always the best.
I have had this problem before on some of my other servers, I can't remember exactly how I solved it, but I think it involved combining some of the filterscripts to make it less trouble for the server to read. Otherwise try using some of the filterscripts in the gamemode. There might also be something in one of the first 3 filterscripts, most likely the 3rd one, that is stopping the other two being loaded. So whenever the 3rd script is calling OnFilterScriptInit(), it is stopping and not letting the other 2 be loaded. Another thing that I might have fixed it with is:
Example: filterscripts FS1 FS2 FS3 FS4 FS5
Change that line to filterscripts FS1 FS2 FS4 FS5 FS3
Move your 3rd filterscript on the line, to the very end, so that all other filterscripts will be read before the last one terminates it. One solution to this problem, but not always the best.