12.10.2013, 21:46
hey guys, I need a /clearchat made with ZCMD and also a /am[adminmessage] command that sends messages to a level 1 admin onwards like instead of using /report or asking for a tp, all need to be made with ZCMD, thanks
CMD:clearallchat(playerid,params[])
{
for(new i=0; i < 64; i++)
{
SendClientMessageToAll(-1,"");
}
SendClientMessageToAll(-1,"The chat has been cleared.");
return 1;
}
CMD:clearchat(playerid,params[])
{
for(new i=0; i < 64; i++)
{
SendClientMessage(playerid,-1,"");
}
SendClientMessageToAll(-1,"You cleared your chat.");
return 1;
}
|
pawn Код:
I would like to make you aware, that this question has been asked quite a few times, if you need something next time, search ****** and/or use the SA:MP forums search function. I'm not sure about your admin command, as I don't know your admin variables. |
|
Thanks can you make a /am command for me as well please? /am is for when a normal player says like /am im falling thru the sky, need tp, the admins can do something like /amreply and say "Standy",and then tp i need the /amreply and /am for admin level 1 and above, if you can
|