Criando TextDraw De Dinheiro Simples
Introduçao :
TextDraw No Lugar Do Dinheiro
Ex :
1 Passo , Vamos Começa Pelas News !
- Código:
new Text:Ft[MAX_PLAYERS];
new Text:Box[MAX_PLAYERS];
Ex
//================================================== ==========================//
- Código:
Box[playerid] = TextDrawCreate(622.000000, 79.000000, " ");
TextDrawBackgroundColor(Box[playerid], 255);
TextDrawFont(Box[playerid], 1);
TextDrawLetterSize(Box[playerid], 0.500000, 1.000000);
TextDrawColor(Box[playerid], -1);
TextDrawSetOutline(Box[playerid], 0);
TextDrawSetProportional(Box[playerid], 1);
TextDrawSetShadow(Box[playerid], 1);
- Código:
Ft[playerid] = TextDrawCreate(495.000000, 81.000000, "000000000");
TextDrawBackgroundColor(Ft[playerid], 255);
TextDrawFont(Ft[playerid], 3);
TextDrawLetterSize(Ft[playerid], 0.740000, 1.700001);
TextDrawColor(Ft[playerid], 65535);
TextDrawSetOutline(Box[playerid], 0);
TextDrawSetProportional(Ft[playerid], 1);
TextDrawSetShadow(Ft[playerid], 1);
TextDrawUseBox(Ft[playerid], 1);
TextDrawBoxColor(Ft[playerid], 255);
TextDrawTextSize(Ft[playerid], 613.000000, 0.000000);
//================================================== ==========================//
3 Passo , Em OnPlayerSpawn Colokei Isso ! Para que os Jogadores Possam Ver a TextDraw Er r !
- Código:
TextDrawShowForPlayer(playerid, Ft[playerid]);
TextDrawShowForPlayer(playerid, Box[playerid]);
- Código:
new string[32];
format(string, sizeof(string), "%08d", GetPlayerMoney(playerid));
TextDrawSetString(Ft[playerid], string);
Explicando :
Quando O Player Connecta Aparecer a TextDraw ! e Quando Spawna Tbm ! Para ele Poder Ver a Text Draw e em OnPlayerUpdate Para que ele Conte o Dinheiro Na Textdraw
Simples Não ?
Creditos : Catchorro , Focaximubh
Dicas , Bugs , Criticas , Elogiar , Comente !
Acabei de Testar Funcionou Perfeitamente !
Agradecimentos : AlieN_
[/code]