07.07.2013, 08:22
Add this to your command.
Then replace this
with
pawn Код:
new variable[4];
if(CanUseCIA[playerid]) format(variable, sizeof(variable), "Yes");
else format(variable, sizeof(variable), "No");
return variable;
pawn Код:
format(temp, sizeof(temp), "Army: %d\n",CanUseArmy[playerid]);
strcat(info, temp);
pawn Код:
format(temp, sizeof(temp), "Army: %s\n", variable);
strcat(info, temp);