19.03.2012, 01:14
Quote:
Why doesn't this work? The file does exist with "Text" in it but doesn't return true.
Код:
if(!file_read("Dennis_Smith.txt","Text")) { print("Found file"); } |
pawn Код:
new str[48];
file_read("Dennis_Smith.txt", str);
if(!strcmp(str, "Text")) print("Found file");