19.06.2014, 20:26
Primeiro crie a variбvel do textdraw no topo do seu GM. (Junto com as outras que jб tem)
depois coloque o textdraw dentro da callback e nгo fora.
pawn Код:
new Text:Textdraw1;
pawn Код:
public OnGameModeInit()
{
AddStaticVehicle(451,1999.3174,-2581.4631,13.1982,0.1176,1,1);
//TextDraws (Organizaзгo)
Textdraw1 = TextDrawCreate(530.000000, 439.000000, "www");
TextDrawBackgroundColor(Textdraw1, 255);
TextDrawFont(Textdraw1, 2);
TextDrawLetterSize(Textdraw1, 0.159999, 0.700000);
TextDrawColor(Textdraw1, -1);
TextDrawSetOutline(Textdraw1, 1);
TextDrawSetProportional(Textdraw1, 1);
return 1;
}