03.08.2010, 07:57
(
Последний раз редактировалось bigcomfycouch; 03.08.2010 в 08:15.
)
edited
can't test, non-latin characters are question marks for me in pawno
pawn Код:
new string[128];
new File: temp = fopen("sample.txt", io_write);
format(string, 128, "서버의 정책을 지정합니다.");
for(new j = 0; j < strlen(string); j++)
{
if(string[j] == '\0') break;
fputchar(temp, string[j], true);
}
fclose(temp);

