29.02.2012, 08:43
so actually, the question is pretty simple.
Let's say I have my file "scriptfiles/realityrp/logs/cmdlog.txt".
I want to write to that file,
Is it:
or is it:
thanks
Let's say I have my file "scriptfiles/realityrp/logs/cmdlog.txt".
I want to write to that file,
Is it:
pawn Код:
new File:cmlog = fopen("realityrp/logs/cmdlog.txt", io_write); // Open the file
pawn Код:
new File:cmlog = fopen("scriptfiles/realityrp/logs/cmdlog.txt", io_write); // Open the file
thanks