03.09.2012, 17:14
I use ppc Cmds so here is One of them:
If u helped me Rep +
pawn Код:
CMD:announce(playerid,params[])
{
if (APlayerData[playerid][LoggedIn] == true)
{
if (APlayerData[playerid][PlayerLevel] >= 1)
{
if(isnull(params)) return SendClientMessage(playerid,-1,"/announce text");
GameTextForAll(params,5000,3);
}
}
return 1;
}