Hi,
Hab ne Frage, ich hab das Reportsystem von RGR in mein Script eingefügt, alles geht jedoch geht der Report Chat nicht, kannst du mir bitte helfen?
forward Supp_OnPlayerText(playerid, text[]);
public Supp_OnPlayerText(playerid, text[])
{
new testing[255];
for(new si;si<sizeof(SupportInfo);si++)
{
if(SupportInfo[si][Ssys_Typ] == 3)
{
if(SupportInfo[si][Ssys_FromID] == playerid && SupportInfo[si][Ssys_Benutzt] != -255)
{
format(testing,sizeof(testing),"[R-Chat] %s: %s",sName(playerid),testing);
SendClientMessage(SupportInfo[si][Ssys_Benutzt],S_COL_YELLOW,testing);
}
else if(SupportInfo[si][Ssys_Benutzt] == playerid)
{
format(testing,sizeof(testing),"[R-Chat] %s: %s",sName(playerid),testing);
SendClientMessage(SupportInfo[si][Ssys_FromID],S_COL_YELLOW,testing);
}
}
}
}
MfG