20.12.2011, 21:42
I have a command to show the player if he has a licence or not:
How could i make it so it is /license [ID] to show to others?
pawn Код:
if(strcmp(cmd, "/license", true) == 0)
{
if(PlayerInfo[playerid][pLicKey] == 1)
{
SendClientMessage(playerid,COLOR_RED," You have License!");
}
else
{
SendClientMessage(playerid,COLOR_RED," You Dont Have License!");
}
return 1;