13/01/2022 22:44
boa noite. estou com o problema que a dialog tanto de policiais online quanto de ladrões esta aparecendo somente
assim:
(99)
(587)
os ids nem existem online fora que não aparece o nick do player.. sempre quando tem mais que um online fica assim.. não sei o porque
CODIGO:
POLICIAIS
LADRÕES
assim:
(99)
(587)
os ids nem existem online fora que não aparece o nick do player.. sempre quando tem mais que um online fica assim.. não sei o porque
CODIGO:
POLICIAIS
Código PHP:
ShowPlayerPolicesOnline(playerid)
{
new players = GetPlayerPoolSize(),
info[(6 + MAX_PLAYER_NAME + 3 + 1) * MAX_PLAYERS],
bool:found,
i;
info = DIALOG_INFO_POLICES_ONLINE;
for(i = 0; i <= players; i++)
{
if(IsPlayerPolice(i))
{
if(!found) found = true;
format(info, sizeof(info), "{90EE90}%s(%d)\n", info, GetNameOfPlayer(i), i);
}
}
if(!found)
info = DIALOG_INFO_NO_POLICES_ONLINE;
ShowPlayerDialog(playerid, DIALOG_POLICES_ONLINE, DIALOG_STYLE_MSGBOX, DIALOG_CAPTION_POLICES_ONLINE, info, DIALOG_BUTTON_CLOSE, #);
}
LADRÕES
Código PHP:
ShowPlayerPCCsOnline(playerid)
{
new players = GetPlayerPoolSize(),
info[(6 + MAX_PLAYER_NAME + 3 + 1) * MAX_PLAYERS],
bool:found,
i;
info = DIALOG_INFO_PCCS_ONLINE;
for(i = 0; i <= players; i++)
{
if(IsPlayerPCC(i))
{
if(!found) found = true;
format(info, sizeof(info), "{90EE90}%s(%d)\n", info, GetNameOfPlayer(i), i);
}
}
if(!found)
info = DIALOG_INFO_NO_PCCS_ONLINE;
ShowPlayerDialog(playerid, DIALOG_POLICES_ONLINE, DIALOG_STYLE_MSGBOX, DIALOG_CAPTION_PCCS_ONLINE, info, DIALOG_BUTTON_CLOSE, #);
}