26.07.2012, 15:36
This is the correct format
PHP код:
new Text:FR2012;//on top of your script
public OnGameModeInit()
{
FR2012 = TextDrawCreate(51, 321, "FR-2012");
TextDrawLetterSize(Text:FR2012, 0.5, 1.5);
TextDrawTextSize(Text:FR2012, 1, 2);
TextDrawAlignment(Text:FR2012, 0);
TextDrawColor(Text:FR2012, -65366);
TextDrawUseBox(Text:FR2012, 0);
TextDrawSetShadow(Text:FR2012, 2);
TextDrawBoxColor(Text:FR2012, -1347440726);
TextDrawSetOutline(Text:FR2012, 2);
TextDrawBackgroundColor(Text:FR2012, 170);
TextDrawFont(Text:FR2012, 3);
TextDrawSetProportional(Text:FR2012, 1);
}
public OnPlayerSpawn(playerid)
{
TextDrawShowForPlayer(playerid, FR2012);
return 1;
}

