An sich ist es ganz nett
Aber dann sah ich das in der Include
stock web_error(error_text[]) {
new error_type[200];
format(error_type, sizeof error_type, "[ EXP: ERROR ] Webserver: %s", error_text);
printf(error_type);
return 1;
}
stock game_error(error_text[]) {
new error_type[200];
format(error_type, sizeof error_type, "[ EXP: ERROR ] FilterScript: %s", error_text);
printf(error_type);
return 1;
}
Du nutzt da schon Printf wiso formatierst du es noch vorher?!
Als tipp
printf("[ EXP: ERROR ] FilterScript: %s",error_text);
Schon sparst du Zeilen etc...