15.05.2012, 17:05
pawn Код:
#include <a_samp>
#define dcmd(bug,cmdtext);
#define dcmd(sug,cmdtext);
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;
}]
C:\Users\E\Desktop\saa.pwn(4) : warning 201: redefinition of constant/macro (symbol "dcmd(sug,cmdtext);")
C:\Users\E\Desktop\saa.pwn(2 : warning 203: symbol is never used: "dcmd_bug"
C:\Users\E\Desktop\saa.pwn(2 : warning 203: symbol is never used: "dcmd_sug"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Warnings.
I know it warnings ,but ...