07.12.2009, 19:18
open up base.pwn
delete this line (you don't have to, but it's unecesarry)
then add this code where the line we deleted in the previous step was:
That should work
delete this line (you don't have to, but it's unecesarry)
pawn Код:
printf("PM: %s",Message);
pawn Код:
new File:pos = fopen("private_messages.txt", io_append);
format(Message, sizeof(Message), "** %s(%d) to %s(%d): %s", pName, playerid, iName, id, gMessage);
fwrite(pos, Message);
fclose(pos);