20.09.2011, 09:34
What i want is - After a player writes something in the INPUT dialog, it will save in a .log file at scriptfiles. But only the text, i don't want to save the players name etc. There the dialog i got
As said, i want to save the text every player writes there, but it should always make new line if possible
Код:
if(dialogid == 12347)
{
if(response)
{
new regstring[128];
new regname[64];
GetPlayerName(playerid,regname,sizeof(regname));
format(regstring,sizeof(regstring),"%s. Du hast dich erfolgreich registriert",regname);
ShowPlayerDialog(playerid,12349,DIALOG_STYLE_INPUT,"{0080C0}Highness RolePlay","How did you find us?","Next","");
}
}


: