15.05.2012, 16:01
Hello. No one will help me. I make this FS, but it doesnґt work. When I type /bug or /sug and [REASOn], the reason will save in the scriptfiles folder at "Bugs" and "Suggestions".
Can anyone help me
It is correct ?
Can anyone help me
pawn Код:
dcmd(bug,3,cmdtext);
dcmd(sug,3,cmdtext);
pawn Код:
dcmd_bug(playerid,params[])
{
new string[128],bug,pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
if(sscanf(params,"s[128]",bug)) return SendClientMessage(playerid, COLOR_RED,"USAGE: /bug [what's the bug ?]");
format(string,sizeof string,"[BUG REPORT] - %s has reported this bug: %s.",pName,bug);
SaveInFile("Bugs.txt",string);
format(string,sizeof string,"[BUG REPORT] - You've reported this bug: %s ; succesfully.",bug);
SendClientMessage(playerid,COLOR_GREEN,string);
return 1;
}
dcmd_sug(playerid,params[])
{
new string[128],pName[MAX_PLAYER_NAME],sug;
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
if(sscanf(params,"s[128]",sug)) return SendClientMessage(playerid,COLOR_RED,"USAGE: /sug [suggestion for the server]");
format(string,sizeof string,"[NEW SUGGESTION] - %s has suggested: %s.",pName,sug);
SaveInFile("Suggestions.txt",string);
format(string,sizeof string,"[NEW SUGGESTION] - Your suggestion has been saved in a file; You have succesfully suggested: %s",sug);
SendClientMessage(playerid,COLOR_GREEN,string);
return 1;
}