09.08.2015, 11:58
PHP код:
/*
ipsLuan
Fбcil manipulaзгo de arquivos
ipsTeam
*/
stock Ler(name[], playerid)
{
new nomes[255];
new File:archive;
archive = fopen(name, io_read);
while(fread(archive, nomes))
SendClientMessage(playerid, 0xFFFFFFFF, nomes);
fclose(archive);
}
stock Escrever(name[], text[])
{
new string[128];
format(string, sizeof(string), "%s\r\n", text);
new File:archive;
archive = fopen(name, io_append);
fwrite(archive, string);
fclose(archive);
}
PHP код:
Escrever("admins.ini", "Luan_Argolo");
Ler("admins.ini", playerid);