when i do !fight in my server then i get 3 guns stubby m4 m60 but i want only one gun in !fight it is stubby so how to do it here is it see and solve it
else if (strcmp(cmd, "!fight", true) == 0)
{
tmp = strtok(cmdtext, idx);
if (!strlen(tmp)) {
SetPlayerPos(playerid, -1363.4431,1332.3104,83.8882,250.4980);
SendClientMessage(playerid, COLOR_ORANGE, "Welcome to Fight Zone!");
GivePlayerWeapon(playerid, 21, 100);
new plname[24],enstr[256];
GetPlayerName(playerid,plname,24);
format(enstr,sizeof(enstr),"%s has join fight zone.",plname);
SendClientMessageToAll(COLOR_ORANGE,enstr);
}
return 1;
}