29.04.2014, 08:50
You can Create new filterscript and copy code file TD_blbla.pwn for IpleoMax,
EX: put code
after include
and put
in Ongamemodeinit()
And
EX: put code
after include
Quote:
new Text:Textdraw0; |
Quote:
Textdraw0 = TextDrawCreate(641.500000, 1.500000, "usebox"); TextDrawLetterSize(Textdraw0, 0.000000, 16.047777); TextDrawTextSize(Textdraw0, -2.000000, 0.000000); TextDrawAlignment(Textdraw0, 1); TextDrawColor(Textdraw0, 0); TextDrawUseBox(Textdraw0, true); TextDrawBoxColor(Textdraw0, 102); TextDrawSetShadow(Textdraw0, 0); TextDrawSetOutline(Textdraw0, 0); TextDrawFont(Textdraw0, 0); |
And
Quote:
CMD:blaBla(playerid,params[]) { TextDrawShowForPlayer(playerid, Textdraw0); return 1; } |