Habe hier mal ein Reportsystem, und ich möchte es so abändern das ein admin die Reportnaricht erhält und diese nich auf dem pc gespeichert wird aber wie hier mal die zeilen:
new reportname[MAX_PLAYER_NAME+1];
new reportmsg[256+1];
forward reportsys(string[]);
public reportsys(string[])
{
new eintragen[256];
format(eintragen, sizeof(eintragen), "%s\n",string);
new File:hFile;
hFile = fopen("report.log", io_append);
fwrite(hFile, eintragen);
fclose(hFile);
}
if (strcmp("/report", cmdtext, true, 10) == 0)
{
if(IsPlayerConnected(playerid))
{
GetPlayerName(playerid,reportname,MAX_PLAYER_NAME);
format(reportmsg,256,"Willkommen im Report \n\nBenutzer:\t%s\n\nBitte teile uns dein Problem mit:",reportname);
ShowPlayerDialog(playerid,100,DIALOG_STYLE_INPUT,"Report",reportmsg,"Absenden","Verlassen");
return 1;
}
}
Kann mir da mal jmd weiter helfen ?