SA-MP Forums Archive
Background pic - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Background pic (/showthread.php?tid=330386)



Background pic - Crazyboobs - 01.04.2012

How can i make something like this?



Re: Background pic - Chris' - 01.04.2012

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


Re: Background pic - Crazyboobs - 01.04.2012

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


Re: Background pic - vassilis - 01.04.2012

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.


Re: Background pic - NeTuddMeg - 01.04.2012

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



Re: Background pic - Crazyboobs - 01.04.2012

Ty very much +rep