27.06.2016, 09:36
(
Последний раз редактировалось xXtremeXx; 27.06.2016 в 10:30.
)
Guys i was making a textdraw and got no errors but still it doesn't appear in game. Code is this:-
Please help me why isn't it appearing?
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;
}