29.06.2012, 16:39
Quote:
|
Trial and error is good for me, I recommend you also edit the scripts from the Internet, is useful in understanding the new features and solutions to some things.
|
Edit:
Quote:
|
//Edit:
Ohh god, my mistake. I would suggest, however, dispense with sscanf. Код:
CMD:slap(playerid, params[])
{
if(!IsPlayerAdmin(playerid))
return SendClientMessage(playerid, 0x708090FF, "You are not a admin!");
new string[128];
if(isnull(params))
return SendClientMessage(playerid, 0x708090FF, "Syntax: /slap [playerid]");
if(!IsPlayerConnected(strval(params)))
return SendClientMessage(playerid, 0xFFFFFFF,"That player is not connected to the server!");
SetPlayerVelocity(strval(params), 0.5, 0.0, 0.0);
format(string, sizeof(string), "%s has slapped %s", GetName(playerid), GetName(strval(params)));
SendMessageToRAdmins(0xFF0000FF, string);
return 1;
}
|


