TextDraw HELP
#1

Hiye!

I wanna change a textdraw,

It looks in-game like so: Deaths: (deaths) Kills: (kills)

How I want it to have:

Deaths: (deaths)
Kills: (kills)


How can I make it above eachother?

My code:

PHP код:
    Stats[playerid] = TextDrawCreate(485.000000300.000000"~r~Kills: ~w~0 ~g~Deaths: ~w~0");
    
TextDrawBackgroundColor(Stats[playerid], 255);
    
TextDrawFont(Stats[playerid], 2);
    
TextDrawLetterSize(Stats[playerid], 0.3500001.100000);
    
TextDrawColor(Stats[playerid], -1);
    
TextDrawSetOutline(Stats[playerid], 0);
    
TextDrawSetProportional(Stats[playerid], 1);
    
TextDrawSetShadow(Stats[playerid], 1); 
( I am new here so I'm really really noob, but every one have to learn it. )
Reply
#2

Hmm...by using \n ?
It's the 'replacer' of Enter or <br> from HTML.

I usually create different textdraws...never made two in the same code with different positions.
Reply
#3

Код:
"~r~Kills: ~w~0~n~~g~Deaths: ~w~0"
~n~ creates new line. Also put ~n~in the string update
Reply
#4

I know everything about HTML yes, okay I'll try
Reply
#5

EDIT: ~n~ doesn't work
Reply
#6

Anyone?
Reply
#7

PHP код:
new newtext[41];
format(newtextsizeof(newtext), "Deaths: (%s) \n Kills: (%s)"yourdeathvar,yourkillsvar);
TextDrawSetString(Stats[playerid], newtext);
TextDrawShowForPlayer(playeridStats[playerid]); 
Reply
#8

It's fixed
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)