01.04.2012, 10:56
How can i make something like this?
#include <a_samp>
new TextDraw0;
public OnFilterScriptInit() {
TextDraw0 = TextDrawCreate(0.000000, 0.000000, "loadsc3:loadsc3");
TextDrawBackgroundColor(TextDraw0, 255);
TextDrawFont(TextDraw0, 4);
TextDrawLetterSize(TextDraw0, 0.500000, 1.000000);
TextDrawColor(TextDraw0, -1);
TextDrawSetOutline(TextDraw0, 0);
TextDrawSetProportional(TextDraw0, 1);
TextDrawSetShadow(TextDraw0, 1);
TextDrawUseBox(TextDraw0, 1);
TextDrawBoxColor(TextDraw0, 255);
TextDrawTextSize(TextDraw0, 645.000000, 450.000000);
return 1;
}
public OnPlayerConnect(playerid) {
TextDrawShowForPlayer(playerid, TextDraw0);
return 1;
}
publicOnPlayerRequestClass(playerid, classid) {
TextDrawHideForPlayer(playerid, TextDraw0);
return 1;
}