16.04.2015, 03:03
Primeiro caso:
Segundo caso:
Bem... isto й pessoal, recomendo que utilize o chattopic.
PHP код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch(dialogid) {
case DIALOG_ID: {
new
file[16] = "arquivo.ini",
playerName[MAX_PLAYER_NAME + 1],
string[600];
GetPlayerName(playerid, playerName, sizeof playerName);
if(!fexist(file)) {
new File: f = fopen(file, io_write);
fclose(f);
}
format(string, sizeof(string) + 32, "%s: %s\r\n", playerName, inputtext);
new File: f = fopen(file, io_append);
fwrite(f, string);
fclose(f);
SendClientMessage(playerid, -1, "Done!");
}
}
return 1;
}
Bem... isto й pessoal, recomendo que utilize o chattopic.