Background pic
#1

How can i make something like this?
Reply
#2

https://sampforum.blast.hk/showthread.php?pid=1690638#pid1690638
Reply
#3

Ok but i didnt understand that tutorial.
Can anyone please give me the code with any picture?
Reply
#4

Zh3r0's In-game Sprite Editor

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.
Reply
#5

Код:
#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;
}
Reply
#6

Ty very much +rep
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)