Ok but i didnt understand that tutorial.
Go in-game(to your lan server) type /spre and start using the sprite editor.This pic shows a sprite editor you can make something like that using this editor.Hope i helped.
Код:
#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;
}