How to place Textdraw Without FS
#1

Someone can helpme?
How to place textdraw?
i always make textdraw with Zamaroht's TextDraw Editor because it's Easier
Reply
#2

Код:
new Text:Textdraw; //add this at the top
    
    Textdraw = TextDrawCreate(490 ,1 , "YourText"); //change 490,1 to your place at the screen...
    TextDrawFont(Textdraw , 1);
    TextDrawLetterSize(Textdraw , 0.7, 3.0); //Change this to witch size you want...
    TextDrawColor(Textdraw , 0xff0000FF); //change this to which color you want...
    TextDrawSetOutline(Textdraw , false);
    TextDrawSetProportional(Textdraw , true);
    TextDrawSetShadow(Textdraw , 1);//add all this under public OnGameModeInit()

    TextDrawShowForPlayer(playerid, Textdraw);//add this under public OnPlayerConnect(playerid)
    TextDrawShowForAll(Textdraw);//add this under public OnPlayerConnect(playerid)
Reply
#3

Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)