Nachricht wird nicht abgesendet

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
  • Hallo,


    ich habe den Fehler, dass wenn Spieler_A[playerid] mit "/sup" eine Nachricht an einen Admin/Supporter sendet, der mit ihm im gleichen Supportticket[pSupportin] ist.
    Jedoch wird die Nachricht nicht an Spieler_B gesendet. Warum?


    if(strcmp(cmd,"/sup", true) == 0)
    {
    if(PlayerInfo[playerid][pSupport] == 2)
    {
    for(new i; i < MAX_PLAYERS; i++)
    {
    if(PlayerInfo[i][pSupport] == 2 && PlayerInfo[playerid][pSupportin] == PlayerInfo[i][pSupportin]) // Fragt ab, ob beide im gleichen Supticket sind
    {
    new length = strlen(cmdtext);
    while ((idx < length) && (cmdtext[idx] <= ' '))
    {
    idx++;
    }
    new offset = idx;
    new result[64];
    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
    {
    result[idx - offset] = cmdtext[idx];
    idx++;
    }
    result[idx - offset] = EOS;
    if(!strlen(result))
    {
    SendClientMessage(playerid, COLOR_GRAD2, "BENUTZUNG: /sup [Text]");
    return 1;
    }
    if(PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pSupporter] >= 1)
    {
    GetPlayerName(playerid,playername,sizeof(playername));
    format(string,sizeof(string),"[Support-System] %s: {FFFFFF}%s",playername,(result));
    SendClientMessage(playerid,COLOR_YELLOW,string);
    SendClientMessage(i,COLOR_YELLOW,string);
    return 1;
    }
    else if(PlayerInfo[playerid][pAdmin] == 0 || PlayerInfo[playerid][pSupporter] == 0)
    {
    GetPlayerName(playerid,playername,sizeof(playername));
    format(string,sizeof(string),"[Support-System] %s: {FFFFFF}%s",playername,(result));
    SendClientMessage(playerid,COLOR_YELLOW,string);
    SendClientMessage(i,COLOR_YELLOW,string);
    return 1;
    }
    }
    }
    }
    else
    {
    SendClientMessage(playerid,COLOR_RED,"» Du hast kein Supportticket erstellt.");
    return 1;
    }
    }

  • Beitrag von Pascal. ()

    Dieser Beitrag wurde gelöscht, Informationen über den Löschvorgang sind nicht verfügbar.
  • Schreibe es mal so:
    if(strcmp(cmd,"/sup", true) == 0)
    {
    if(PlayerInfo[playerid][pSupport] == 2)
    {
    if(!strlen(cmdtext[5])) return SendClientMessage(playerid, COLOR_GRAD2, "BENUTZUNG: /sup [Text]");
    GetPlayerName(playerid,playername,sizeof(playername));
    format(string,sizeof(string),"[Support-System] %s: {FFFFFF}%s",playername,cmdtext[5]);
    for(new i; i < MAX_PLAYERS; i++)
    {
    if(PlayerInfo[i][pSupport] == 2 && PlayerInfo[playerid][pSupportin] == PlayerInfo[i][pSupportin]) // Fragt ab, ob beide im gleichen Supticket sind
    {
    SendClientMessage(i,COLOR_YELLOW,string);
    }
    }
    }
    else
    {
    SendClientMessage(playerid,COLOR_RED,"» Du hast kein Supportticket erstellt.");
    return 1;
    }
    return 1;
    }