Jump to content
  • 0

textdraw


Rimmon

Question

fac un textdraw cu un program

dupa ce adaug textdrawl in gm merge perfect fara warn/errori

iar cand intru in server numi apare nimik

[pawn]new Text:Welcome;

Welcome = TextDrawCreate(0.0, 434.0,"Welcome to Rss");

TextDrawFont(Welcome,0);

TextDrawLetterSize(Welcome,1,1);

TextDrawColor(Welcome,0xC700FF);

TextDrawSetShadow(Welcome,0);

TextDrawSetOutline(Welcome,2);

TextDrawBackgroundColor(Welcome,0xDDF10FF);

TextDrawUseBox(Welcome,0);[/pawn]

ce are?

Massari e curva mea

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

Tu esti cel mai but scripter din lume.

La inceputul scriptului pui:

[pawn]new Text:Welcome;[/pawn]

La OnGameModeInit:

[pawn]Welcome = TextDrawCreate( 0.0, 434.0,"Welcome to Rss" );

TextDrawFont( Welcome,0 );

TextDrawLetterSize( Welcome,1,1 );

TextDrawColor( Welcome,0xC700FF );

TextDrawSetShadow( Welcome,0 );

TextDrawSetOutline( Welcome,2 );

TextDrawBackgroundColor( Welcome,0xDDF10FF );

TextDrawUseBox( Welcome,0 );[/pawn]

La OnPlayerConnect:

[pawn]TextDrawShowForPlayer( playerid, Welcome );[/pawn]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.