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;
}
}