Üdv!
Lenne egy gondom, ugye van benne a Textdraw függvény, azaz a TD_Info, az infobar, ahol írja a Bank:, Weblapunk:, Stb-t. És itt átakartam színezni a színeket, hogy ne az legyen ami volt alapból. Kód:
fuggveny ShowTextDraw(playerid, textdraw, bool:create)
{
if(IsPlayerNPC(playerid)) return 1;
if(textdraw == TD_Info)
{
if(create)
{
if(TextDrawCreated[playerid][tdInfo]) return 0;
InfoTextDraw[playerid] = TextDrawCreate(0, 428, \"Betöltés...\");
TextDrawAlignment(InfoTextDraw[playerid], 1);
TextDrawFont(InfoTextDraw[playerid], 1);
TextDrawSetShadow(InfoTextDraw[playerid], 1);
TextDrawColor(InfoTextDraw[playerid], COLOR_RED);//
TextDrawBackgroundColor(InfoTextDraw[playerid], COLOR_WHITE);//
TextDrawSetOutline(InfoTextDraw[playerid], 1);
TextDrawUseBox(InfoTextDraw[playerid], 1);
TextDrawBoxColor(InfoTextDraw[playerid], 0x05050566);
//TextDrawBoxColor(InfoTextDraw[playerid], COLOR_WHITE);
TextDrawLetterSize(InfoTextDraw[playerid], 0.4, 1);
TextDrawTextSize(InfoTextDraw[playerid], 640, 480);
TextDrawShowForPlayer(playerid,InfoTextDraw[playerid]);
TextDrawCreated[playerid][tdInfo] = true;
}
else
{
if(!TextDrawCreated[playerid][tdInfo]) return 0;
TextDrawHideForPlayer(playerid,InfoTextDraw[playerid]);
TextDrawDestroy(InfoTextDraw[playerid]);
TextDrawCreated[playerid][tdInfo] = false;
InfoTextDraw[playerid] = Text:INVALID_TEXT_DRAW;
}
}
Kép:
http://kepfeltoltes.hu/130127/970320485sa-mp-003_www.kepfeltoltes.hu_.png[/img]
Elõre is köszönöm!