Ich habe mir eine for-Schleife erstellt, um eine Nachricht an alle Mitglieder einer Fraktion zu senden.
Jedoch habe Ich folgendes Problem:
Ich weiß nicht, was Ich beim stock returnen soll.
Ich hoffe, dass Ich verständlich bin.
Hier habt ihr mein Code:
stock SendFraktionMessage(fraktion, Farbe, Nachricht[128])
{
    for(new i=0; i<MAX_PLAYERS; i++)
    {
        if(!IsPlayerConnected(i))continue;
        if(pInfo[i][pFraktion] != fraktion)continue;
        SendClientMessage(i, Farbe, Nachricht);
     }
     //return ...
}