27.01.2011, 02:01
Hey guys, is it possible to use textdraws on, onplayerconnect? Like for example i have:
Am i doing this wrong? Or is it just not possible to use on onplayerconnect?
Also, is there a shorter way of adding textdraws?
pawn Код:
public OnPlayerConect(playerid){
Textdraw0 = TextDrawCreate(5.000000, 184.000000, "Welcome To New Legends Evolution");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 3);
TextDrawLetterSize(Textdraw0, 0.480000, 1.900000);
TextDrawColor(Textdraw0, 16711935);
TextDrawSetOutline(Textdraw0, 1);
TextDrawSetProportional(Textdraw0, 1);
return 1;
}
Also, is there a shorter way of adding textdraws?