//TextDraw developed using Zamaroht's in-game TextDraw system
 
//On top of script:
new Text:Version;
 
//In OnGameModeInit or any other place, we procced to create our textdraw:
Version = TextDrawCreate(1.000000,438.000000,"                              ] Los Santos Mafia Roleplay v0.5 - www.lsmafia-roleplay.net ]");
TextDrawUseBox(Version,1);
TextDrawBoxColor(Version,0x00000099);
TextDrawTextSize(Version,639.000000,14.000000);
TextDrawAlignment(Version,0);
TextDrawBackgroundColor(Version,0x000000ff);
TextDrawFont(Version,0);
TextDrawLetterSize(Version,0.399999,1.000000);
TextDrawColor(Version,0xffffffff);
TextDrawSetOutline(Version,1);
TextDrawSetProportional(Version,1);
TextDrawSetShadow(Version,1);
 
//You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
//TextDrawDestroy functions to show, hide, and destroy the textdraw.
 
 
