14.05.2010, 08:15
Try this.
Код:
//Top of Script
new Text:Bitch;
new count;
public OnGameModeInit()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
new str[75];
format(str, sizeof(str), "Team1: %d", i);
Bitch = TextDrawCreate(0.0, 0.0, str);
break;
}
return 1;
}
public OnPlayerSpawn(playerid)
{
count++;
new str[30];
TextDrawShowForPlayer(playerid, Bitch);
format(Str,sizeof(Str),"Team1: %d",Bitch);
TextDrawSetString(Bitch,Str);
return 1;
}

