24.11.2012, 14:45
how I do it using zcmd?
Thanks.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new cmd[100], arg[100];
sscanf(cmdtext, "p< >s[100]s[100]", cmd, arg);
if(!strcmp(cmd, "/move", true))
{
new Float:pX, Float:pY, Float:pZ;
sscanf(arg, "p< >fff", pX, pY, pZ);
SetPlayerPos(playerid, pX, pY, pZ);
}
else if(!strcmp(cmd, "/colete", true))
{
SetPlayerArmour(playerid, 100);
}
else
{
SendClientMessage(playerid, -1, "Invalid command!!!");
}
return 1;
}