Guys i was making a textdraw and got no errors but still it doesn't appear in game. Code is this:-
PHP код:
new Text:Textdraw1;
and
public OnGameModeInit()
{
Textdraw1 = TextDrawCreate(42.5 ,451 , "COMINGSOON.com");
TextDrawFont(Textdraw1 , 3);
TextDrawLetterSize(Textdraw1 , 0.5, 3.5);
TextDrawColor(Textdraw1 , 0x00ff26FF);
TextDrawSetOutline(Textdraw1 , false);
TextDrawSetProportional(Textdraw1 , true);
TextDrawSetShadow(Textdraw1 , 1);
return 1;
}
and
public OnPlayerSpawn(playerid)
{
TextDrawShowForAll(Textdraw1);
return 1;
}