09.06.2015, 00:40
I believe that's how you make strcmp and zcmd work together, try it out and see if it works.
Do not convert your commands to OnPlayerCommandPerformed leave it as it is.
Do not convert your commands to OnPlayerCommandPerformed leave it as it is.
pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if(!success)
{
return SendClientMessage(playerid, -1, "Unknown Command.");
}
return 1;
}