31.08.2012, 07:48
Nice tutorial it's good
CMD:ann(playerid,params[])
{
SendAdminText(playerid, "{00FF00}/ann", params);
new text[60];
if(sscanf(params, "s[60]",text))
return SendClientMessage(playerid, 0xFF0000, "Usage:/ann [text]");
GameTextForAll(text,3000,3);
if(APlayerData[playerid][PlayerLevel] >= 1)
return 1;
}
C:\Users\SRB\Desktop\serverffs\pawno\include\PPC_PlayerCommands.inc(5736) : warning 209: function "cmd_ann" should return a value Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning.
CMD:ann(playerid,params[])
{
new text[60];
if(APlayerData[playerid][PlayerLevel] >= 1)//this needs to be at the top.
if(sscanf(params,"s[60]",text))return SendClientMessage(playerid,0xFF0000,"Usage:/ann [text]");
SendAdminText(playerid, "{00FF00}/ann", params);
GameTextForAll(text,3000,3);
return 1;
}