13.06.2010, 21:08
Hi all. So I want the team name would be above this team after this point. What is wrong here?
Код:
dcmd_Teams(playerid,params[])
{
#pragma unused params
if(!IsPlayerAdmin(playerid)) SendClientMessage(playerid, AAD_COLOR_GREY, "You need to be admin to do that");
DefendersCount++;
new string[128];
new name[MAX_PLAYER_NAME];;
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%s: %d", name, DefendersCount);
TextDrawSetString(DefenderDraw,string);
return 1;
}

