Afk Script fehler

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
  • bei chillas afk script is irgend einen fehler. wenn ich /afk mache geht er afk und wird gefreezen und es wird geschgieben NAME ist nun afk, aber wenn ich /back mache dann schreibt er wieder NAME ist nun afk. obwohl im script steht NAME ist zurück.
    /////////////////
    // AFK Script ///
    // von ///
    // <|Chilla|> ///
    /////////////////


    #include <a_samp>
    #define FILTERSCRIPT
    #if defined FILTERSCRIPT


    // COLORS
    #define COLOR_GREY 0xBEBEBEAA
    #define COLOR_WHITE 0xFFFFFFAA
    #define COLOR_GREEN 0x008C0000
    #define color_green 0x33AA33AA
    #define color_dgreen 0x33AA33AA
    #define COLOR_BLACK 0x000000
    #define COLOR_GRAD5 0xE3E3E3FF
    #define COLOR_GRAD4 0xD8D8D8FF
    #define COLOR_GRAD1 0xB4B5B7FF
    #define COLOR_LIGHTBLUE 0x33CCFFAA
    #define COLOR_YELLOW 0xF6F60000
    #define COLOR_BLUE 0x0000F600
    #define COLOR_GRAD2 0xBFC0C2FF
    #define COLOR_LIGHTBLUE 0x33CCFFAA
    #define COLOR_LIGHTRED 0xFF6347AA
    #define COLOR_GRAD3 0xCBCCCEFF
    #define COLOR_RED 0xCE000000
    #define color_lred 0xAA3333AA
    #define COLOR_FADE1 0xE6E6E6E6
    #define COLOR_FADE2 0xC8C8C8C8
    #define COLOR_FADE3 0xAAAAAAAA
    #define COLOR_FADE4 0x8C8C8C8C
    #define COLOR_FADE5 0x6E6E6E6E
    #define COLOR_PURPLE 0xC2A2DAAA
    #define COLOR_CADETBLUE 0x5F9EA0
    #define COLOR_GRAD6 0xF0F0F0FF
    #define COLOR_INVISIBLE 0xFFFFFF00
    #define COLOR_ORANGE 0xFF830000
    #define color_lorange 0xFF830000
    #define COLOR_SHOW 0xFFC4C4FF
    ///////////////////////////


    // ISTAFK, STRING, PNAME //
    new istafk[MAX_PLAYERS];
    new string[48];
    new string1[48];
    new pName[16];
    new string2[48];
    new s[48];
    new pName2[16];
    //////////////////////////


    ////////////////////////////////////////////////////////////////////////////////


    public OnFilterScriptInit()
    {
    print("\n--------------------------------------");
    print(" Filterscript von <|Chilla|> || LOADED ");
    print("--------------------------------------\n");
    return 1;
    }


    ////////////////////////////////////////////////////////////////////////////////


    public OnFilterScriptExit()
    {
    print("\n--------------------------------------");
    print(" Filterscript von <|Chilla|> || UNLOADED");
    print("--------------------------------------\n");
    return 1;
    }


    ////////////////////////////////////////////////////////////////////////////////


    #else
    #endif


    ////////////////////////////////////////////////////////////////////////////////


    public OnPlayerCommandText(playerid, cmdtext[])
    {


    ////////////////////////// AFK /////////////////////////////////////////////


    if (strcmp("/afk", cmdtext, true, 4) == 0)
    {
    if(istafk[playerid] == 0)
    {
    istafk[playerid] = 1;
    GetPlayerName(playerid, pName, sizeof(pName));
    format(string, sizeof (string), " ** %s ist nun AFK ! **", pName);
    TogglePlayerControllable(playerid, 0);
    SendClientMessageToAll(COLOR_LIGHTBLUE, string);
    SendClientMessage(playerid, COLOR_GREEN, "Tippe /back um von AFK zurück zu sein !");
    return 1;
    }
    else
    {
    SendClientMessage(playerid, COLOR_RED, "ERROR: Du bist schon AFK !");
    }
    }

    ////////////////////////// RE //////////////////////////////////////////////

    if (strcmp("/back", cmdtext, true, 3) == 0)
    {
    if(istafk[playerid] == 1)
    {
    istafk[playerid] = 0;
    GetPlayerName(playerid, pName, sizeof(pName));
    format(string2, sizeof (string2), " ** %s ist zurück ! **", pName);
    format(s, sizeof (s), " Willkommen zurueck %s !", pName2);
    TogglePlayerControllable(playerid, 1);
    SendClientMessageToAll(COLOR_LIGHTBLUE, string);
    GameTextForPlayer(playerid, s, 2500, 3);
    return 1;
    }
    else
    {
    SendClientMessage(playerid, COLOR_RED, "ERROR: Du bist schon von AFK zurück !");
    }
    }
    return 0;
    }


    ////////////////////////////////////////////////////////////////////////////////

  • /////////////////
    // AFK Script ///
    // von ///
    // <|Chilla|> ///
    /////////////////


    #include <a_samp>
    #define FILTERSCRIPT
    #if defined FILTERSCRIPT


    // COLORS
    #define COLOR_GREY 0xBEBEBEAA
    #define COLOR_WHITE 0xFFFFFFAA
    #define COLOR_GREEN 0x008C0000
    #define color_green 0x33AA33AA
    #define color_dgreen 0x33AA33AA
    #define COLOR_BLACK 0x000000
    #define COLOR_GRAD5 0xE3E3E3FF
    #define COLOR_GRAD4 0xD8D8D8FF
    #define COLOR_GRAD1 0xB4B5B7FF
    #define COLOR_LIGHTBLUE 0x33CCFFAA
    #define COLOR_YELLOW 0xF6F60000
    #define COLOR_BLUE 0x0000F600
    #define COLOR_GRAD2 0xBFC0C2FF
    #define COLOR_LIGHTBLUE 0x33CCFFAA
    #define COLOR_LIGHTRED 0xFF6347AA
    #define COLOR_GRAD3 0xCBCCCEFF
    #define COLOR_RED 0xCE000000
    #define color_lred 0xAA3333AA
    #define COLOR_FADE1 0xE6E6E6E6
    #define COLOR_FADE2 0xC8C8C8C8
    #define COLOR_FADE3 0xAAAAAAAA
    #define COLOR_FADE4 0x8C8C8C8C
    #define COLOR_FADE5 0x6E6E6E6E
    #define COLOR_PURPLE 0xC2A2DAAA
    #define COLOR_CADETBLUE 0x5F9EA0
    #define COLOR_GRAD6 0xF0F0F0FF
    #define COLOR_INVISIBLE 0xFFFFFF00
    #define COLOR_ORANGE 0xFF830000
    #define color_lorange 0xFF830000
    #define COLOR_SHOW 0xFFC4C4FF
    ///////////////////////////


    // ISTAFK, STRING, PNAME //
    new istafk[MAX_PLAYERS];
    new string[48];
    new string1[48];
    new pName[16];
    new string2[48];
    new s[48];
    new pName2[16];
    //////////////////////////


    ////////////////////////////////////////////////////////////////////////////////


    public OnFilterScriptInit()
    {
    print("\n--------------------------------------");
    print(" Filterscript von <|Chilla|> || LOADED ");
    print("--------------------------------------\n");
    return 1;
    }


    ////////////////////////////////////////////////////////////////////////////////


    public OnFilterScriptExit()
    {
    print("\n--------------------------------------");
    print(" Filterscript von <|Chilla|> || UNLOADED");
    print("--------------------------------------\n");
    return 1;
    }


    ////////////////////////////////////////////////////////////////////////////////


    #else
    #endif


    ////////////////////////////////////////////////////////////////////////////////


    public OnPlayerCommandText(playerid, cmdtext[])
    {
    ////////////////////////// AFK /////////////////////////////////////////////
    if (strcmp("/afk", cmdtext, true, 4) == 0)
    {
    if(istafk[playerid] == 0)
    {
    istafk[playerid] = 1;
    GetPlayerName(playerid, pName, sizeof(pName));
    format(string, sizeof (string), " ** %s ist nun AFK ! **", pName);
    TogglePlayerControllable(playerid, 0);
    SendClientMessageToAll(COLOR_LIGHTBLUE, string);
    SendClientMessage(playerid, COLOR_GREEN, "Tippe /back um von AFK zurück zu sein !");
    }
    else
    {
    SendClientMessage(playerid, COLOR_RED, "ERROR: Du bist schon AFK !");
    }
    return 1;
    }
    ////////////////////////// RE //////////////////////////////////////////////
    if (strcmp("/back", cmdtext, true, 3) == 0)
    {
    if(istafk[playerid] == 1)
    {
    istafk[playerid] = 0;
    GetPlayerName(playerid, pName, sizeof(pName));
    format(string2, sizeof (string2), " ** %s ist zurück ! **", pName);
    format(s, sizeof (s), " Willkommen zurueck %s !", pName2);
    TogglePlayerControllable(playerid, 1);
    SendClientMessageToAll(COLOR_LIGHTBLUE, string);
    GameTextForPlayer(playerid, s, 2500, 3);
    }
    else
    {
    SendClientMessage(playerid, COLOR_RED, "ERROR: Du bist schon von AFK zurück !");
    }
    return 1;
    }
    return 0;
    }


    ////////////////////////////////////////////////////////////////////////////////


    Ungetestet, sollte aber gehen. Der Fehler war das die Funktion schon vor dem else returnt wurde ;)

  • 1 error
    C:\Dokumente und Einstellungen\Alex\Eigene Dateien\samp02Xserver.win32\filterscripts\afk.pwn(124) : warning 203: symbol is never used: "string1"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    1 Warning.

  • Wundert mich kein bisschen :D



    Er sendet string aber string2 hat ist zurück und wenn string ist afk hat liegts an den b Ach egal :D



    Hier dass Richtige :P


    /////////////////
    // AFK Script ///
    // von ///
    // <|Chilla|> ///
    /////////////////


    #include <a_samp>
    #define FILTERSCRIPT
    #if defined FILTERSCRIPT


    // COLORS
    #define COLOR_GREY 0xBEBEBEAA
    #define COLOR_WHITE 0xFFFFFFAA
    #define COLOR_GREEN 0x008C0000
    #define color_green 0x33AA33AA
    #define color_dgreen 0x33AA33AA
    #define COLOR_BLACK 0x000000
    #define COLOR_GRAD5 0xE3E3E3FF
    #define COLOR_GRAD4 0xD8D8D8FF
    #define COLOR_GRAD1 0xB4B5B7FF
    #define COLOR_LIGHTBLUE 0x33CCFFAA
    #define COLOR_YELLOW 0xF6F60000
    #define COLOR_BLUE 0x0000F600
    #define COLOR_GRAD2 0xBFC0C2FF
    #define COLOR_LIGHTBLUE 0x33CCFFAA
    #define COLOR_LIGHTRED 0xFF6347AA
    #define COLOR_GRAD3 0xCBCCCEFF
    #define COLOR_RED 0xCE000000
    #define color_lred 0xAA3333AA
    #define COLOR_FADE1 0xE6E6E6E6
    #define COLOR_FADE2 0xC8C8C8C8
    #define COLOR_FADE3 0xAAAAAAAA
    #define COLOR_FADE4 0x8C8C8C8C
    #define COLOR_FADE5 0x6E6E6E6E
    #define COLOR_PURPLE 0xC2A2DAAA
    #define COLOR_CADETBLUE 0x5F9EA0
    #define COLOR_GRAD6 0xF0F0F0FF
    #define COLOR_INVISIBLE 0xFFFFFF00
    #define COLOR_ORANGE 0xFF830000
    #define color_lorange 0xFF830000
    #define COLOR_SHOW 0xFFC4C4FF
    ///////////////////////////


    // ISTAFK, STRING, PNAME //
    new istafk[MAX_PLAYERS];
    new string[48];
    new pName[16];
    new string2[48];
    new s[48];
    new pName2[16];
    //////////////////////////


    ////////////////////////////////////////////////////////////////////////////////


    public OnFilterScriptInit()
    {
    return 1;
    }


    ////////////////////////////////////////////////////////////////////////////////


    public OnFilterScriptExit()
    {


    }


    ////////////////////////////////////////////////////////////////////////////////


    #else
    #endif


    ////////////////////////////////////////////////////////////////////////////////


    public OnPlayerCommandText(playerid, cmdtext[])
    {
    ////////////////////////// AFK /////////////////////////////////////////////
    if (strcmp("/afk", cmdtext, true, 4) == 0)
    {
    if(istafk[playerid] == 0)
    {
    istafk[playerid] = 1;
    GetPlayerName(playerid, pName, sizeof(pName));
    format(string, sizeof (string), " ** %s ist nun AFK ! **", pName);
    TogglePlayerControllable(playerid, 0);
    SendClientMessageToAll(COLOR_LIGHTBLUE, string);
    SendClientMessage(playerid, COLOR_GREEN, "Tippe /back um von AFK zurück zu sein !");
    }
    else
    {
    SendClientMessage(playerid, COLOR_RED, "ERROR: Du bist schon AFK !");
    }
    return 1;
    }
    ////////////////////////// RE //////////////////////////////////////////////
    if (strcmp("/back", cmdtext, true, 3) == 0)
    {
    if(istafk[playerid] == 1)
    {
    istafk[playerid] = 0;
    GetPlayerName(playerid, pName, sizeof(pName));
    format(string2, sizeof (string2), " ** %s ist zurück ! **", pName);
    format(s, sizeof (s), " Willkommen zurueck %s !", pName2);
    TogglePlayerControllable(playerid, 1);
    SendClientMessageToAll(COLOR_LIGHTBLUE, string2);
    GameTextForPlayer(playerid, s, 2500, 3);
    }
    else
    {
    SendClientMessage(playerid, COLOR_RED, "ERROR: Du bist schon von AFK zurück !");
    }
    return 1;
    }
    return 0;
    }


    ////////////////////////////////////////////////////////////////////////////////