15.04.2014, 19:41
This don't work, why
pawn Код:
CMD:bug(playerid, params[])
{
new pID, text[64];
if(sscanf(params, "s[64]", text)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /bug (bug)");
new bug[256];
format(bug, sizeof bug, "%s Has Reported A Bug. Description: %s", PlayerName(pID), text);
new file[256];
format(file, sizeof file, "DM/Reports/Bugs.txt", text);
if(!dini_Exists("DM/Reports/Bugs.txt")) dini_Create("DM/Reports/Bugs.txt");
return 1;
}