02.01.2013, 17:56
I have tried and make a command that will cause the admin writes /si so everyone can see it in the server. There should be a command where Server information. Can anyone do it?
I didn't say make it short explanation
![]() |
COMMAND:si(playerid,params[])
{
if(IsPlayerConnected(playerid))
{
if(isnull(params)) return SendClientMessage(playerid,-1,"[Usage]: /si [announcement]");
new string[128];
SendClientMessageToAll(-1, "____________ Admin Announcement ___________");
format(string, sizeof(string), "%s", params);
SendClientMessageToAll(-1, string);
SendClientMessageToAll(-1, "_______________________________________________________");
}
return 1;
}