Textdraw problem
#1

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.53.5);
    
TextDrawColor(Textdraw1 0x00ff26FF);
    
TextDrawSetOutline(Textdraw1 false);
    
TextDrawSetProportional(Textdraw1 true);
    
TextDrawSetShadow(Textdraw1 1);
    return 
1;
}
and
public 
OnPlayerSpawn(playerid)
{
    
TextDrawShowForAll(Textdraw1);
    return 
1;

Please help me why isn't it appearing?
Reply
#2

Can someone Please help?
Reply
#3

Код:
public OnPlayerSpawn(playerid) 
{ 
    TextDrawShowForPlayer(playerid, Textdraw1); 
    return 1; 
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)