14.04.2019, 22:14
razorcrash, uma base para vocк estudar:
Agora sobre aumentar vertical e horizontal, nгo hб como, hб nгo ser que vocк coloca esses simbolos "____" para ficar dando espaзo, mas isso й besteira.
EXEMPLO:
PHP Code:
CMD:contratos(playerid)
{
new
g_size[1000], psize[1000], count = 0;
format(psize, sizeof(psize), "Organizaзгo\tNick/ID\tValor\n");
strcat(g_size, psize);
for(new i; i < MAX_PLAYERS; ++i)
{
if(IsPlayerConnected(i) && PlayerData[i][pLogado] == true)
{
if(PlayerData[i][EmContrato] == 1)
{
format(psize, sizeof(psize), "%s\t%s[%d]\t%d\n", GetPlayerOrganizacao(i), ReturnName(i), i, valor, i);
strcat(g_size, psize);
count ++;
}
}
}
if(count != 0) ShowPlayerDialog(playerid, 30000, DIALOG_STYLE_TABLIST_HEADERS, "Players Contratados", g_size, "Fechar", "");
else ShowPlayerDialog(playerid, 30000, DIALOG_STYLE_TABLIST_HEADERS, "Players Contratados", "Nenhum contratado Online no momento!", "Fechar", "");
}
stock GetPlayerOrganizacao(playerid)
{
new string[20];
switch(PlayerData[playerid][pOrganizacao])
{
case 1: string = "Ballas";
case INVALID_ORG_ID: string = "Nгo possui organizaзгo";
}
return string;
}
stock ReturnName(playerid)
{
new wName[24];
GetPlayerName(playerid, wName, sizeof(wName));
return wName;
}
EXEMPLO:
PHP Code:
format(psize, sizeof(psize), "Organizaзгo_______\tNick/ID_________\tValor_________\n");