09.03.2012, 20:39
Quote:
C:\Users\SouzaSantos\Desktop\GM 0.3d\pawno\include\servermoneyGM.inc(1407 : warning: 201: redefinition of constant/macro (symbol "OnGameModeInit")
C:\Users\SouzaSantos\Desktop\GM 0.3d\gamemodes\BML.pwn(1407 : error: 029: invalid expression, assumed zero C:\Users\SouzaSantos\Desktop\GM 0.3d\gamemodes\BML.pwn(1407 : error: 017: undefined symbol "cmd_relatorio" C:\Users\SouzaSantos\Desktop\GM 0.3d\gamemodes\BML.pwn(1407 : error: 029: invalid expression, assumed zero C:\Users\SouzaSantos\Desktop\GM 0.3d\gamemodes\BML.pwn(1407 : error fatal: 107: too many error messages on one line |
ou alguma coisa deve estar entrando em conflito com ela.
toda via, tenta com esse:
pawn Код:
CMD:relato(playerid, params[])
{
new relato[128],str[128], Nome[MAX_PLAYER_NAME];
if(sscanf(params, "s", relato)) return SendClientMessage(playerid, COR_ADMIN, "Use /relato [texto]");
GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
format(str, sizeof(str), "Relatorio - [id: %d] %s relatou: %s", playerid, Nome, relato);
ABroadCast(-1, str, 1);
SendClientMessage(playerid, -1, "[BZC] Relatorio enviado com sucesso!! Aguarde o atendimento !.");
return 1;
}