SA-MP Forums Archive
[Ajuda] Dificuldade em carregar Dynamic3DTextLabel - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Dificuldade em carregar Dynamic3DTextLabel (/showthread.php?tid=585545)



Dificuldade em carregar Dynamic3DTextLabel - kapazul - 14.08.2015

Boa noite pessoal,
Estou a criar um sistema que quando o policia apreende o veiculo й criada uma Dynamic3DTextLabel com as informaзхes, porйm quando desligo o servidor essa informaзгo e perdida jб tentei por no ongamemodeinit mas n funcionou.

PHP код:
public UpdateVeiculoApreendido(vehicleid)
{
       new 
idx vehicleid-1;
    
DestroyDynamic3DTextLabel(VeiculoApreendido[vehicleid]);
    
format(_String,sizeof(_String),"{DAA520}[ {FFFFFF}Veiculo Apreendido {DAA520}]\n\n{FFFFFF}Motivo:{FFFF00} %s\n{FFFFFF}Data: {FFFF00}%s\n{FFFFFF}Horas: {FFFF00}%s\n{FFFFFF}Fianзa: {FFFF00}%dЂ",
    
DynamicApreendidos[idx][Motivo], DynamicApreendidos[idx][Datas], DynamicApreendidos[idx][Hora], DynamicApreendidos[idx][Montante]);
    
VeiculoApreendido[vehicleid] = CreateDynamic3DTextLabel(_String0x008200FF001.510.0INVALID_PLAYER_IDvehicleid0, -1, -1, -1100.0);
    return 
1;
    

Precisava que me ajudassem a fazer para carregar os dados dos veнculos apreendidos quando o servidor reinicia numa Dynamic3DTextLabel . Obrigado pela atenзгo.