21.03.2014, 08:52

Can you help me?
Код:
public Zones_Update()
{
new zone[MAX_ZONE_NAME], string[30];
for(new i=0; i<MAX_PLAYERS; i++){
GetPlayer2DZone(i, zone, MAX_ZONE_NAME);
format(string,sizeof(string),"%s", zone);
TextDrawSetString(Zones[i], string);
TextDrawShowForPlayer(i, Zones[i]);}
return 1;
}
public CreatePlayerTextDraws(playerid)
{
SetTimer("Zones_Update", 500, 1);
for(new i=0; i<MAX_PLAYERS; i++){
Zones[i] = TextDrawCreate(86.000000, 325.000000, "_");
TextDrawBackgroundColor(Zones[i], 255);
TextDrawAlignment(Zones[i], 2);
TextDrawFont(Zones[i], 2);
TextDrawLetterSize(Zones[i], 0.200000, 1.100000);
TextDrawColor(Zones[i], -1);
TextDrawSetOutline(Zones[i], 1);
TextDrawSetProportional(Zones[i], 1);}

