SA:MP Experience - Pimp dein WBB! (1.1.0)

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • 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...

    All in all it's just another brick in the wall