04.05.2018, 00:45
Quote:
Mostre-nos a funзao Update3DTextLabelText();
O problema de estar nela |
Code:
for(new h = 0; h < sizeof(BizzInfo); h++) { if(BizzInfo[h][bOwned] == 0) { format(FormatPerigoso, sizeof(FormatPerigoso), "{FFFFFF}Esta empresa esta a venda\n%s\n\ {33CCFF}Preзo da Empresa: {33AA33}R$%s\n\ {33CCFF}Nнvel: {FFFFFF}%d\n\ {33CCFF}Fundos: {33AA33}R$%s\n\ {FFFF00}Produtos: {9ACD32}%d/{FFFFFF}%d\n\ {FFFF00}Preзo por produto: {33AA33}R$%s\n\ {FFFFFF}Para comprar digite /comprarempresa", BizzInfo[h][bMessage], ConvertMoney(BizzInfo[h][bBuyPrice]), BizzInfo[h][bLevelNeeded], ConvertMoney(BizzInfo[h][bTill]), BizzInfo[h][bProducts],BizzInfo[h][bMaxProducts], ConvertMoney(BizzInfo[h][bPriceProd])); Update3DTextLabelText(BizzLabel[h], COLOR_AZULBB, FormatPerigoso); } if(BizzInfo[h][bOwned] == 1) { format(FormatPerigoso, sizeof(FormatPerigoso), "%s\n\ {33CCFF}Dono da Empresa: {FFFFFF}%s\n\ {33CCFF}Extorsгo: {FFFFFF}%s\n\ {33CCFF}Entrada: {33AA33}R$%d\n\ {33CCFF}Nнvel: {FFFFFF}%d\n\ {FFFFFF}Aperte a letra F para entrar\n\ {33CCFF}Fundos: {33AA33}R$%s\n\ {FFFF00}Produtos: {9ACD32}%d/{FFFFFF}%d\n\ {FFFF00}Preзo por produto: {33AA33}R$%s", BizzInfo[h][bMessage], BizzInfo[h][bOwner], BizzInfo[h][bExtortion], BizzInfo[h][bEntranceCost], BizzInfo[h][bLevelNeeded], ConvertMoney(BizzInfo[h][bTill]), BizzInfo[h][bProducts],BizzInfo[h][bMaxProducts], ConvertMoney(BizzInfo[h][bPriceProd])); Update3DTextLabelText(BizzLabel[h], COLOR_AZULBB, FormatPerigoso); } }