09.01.2016, 22:58
after samp update to 0.3.7 R2
the Update3DTextLabelText
stopt workin
the text show for 1 sec and it disappear forever
the Update3DTextLabelText
stopt workin
the text show for 1 sec and it disappear forever
PHP код:
if(PlayerTimingBomb[i] > 1)
{
new str[200];
format(str,200,"%s's Bombs\nExplosion time: %i seconds",GetName(i),PlayerTimingBomb[i]-2);
Update3DTextLabelText(PlayerBombText[i],COLOR_3D,str);
PlayerTimingBomb[i] --;
}
if(PlayerTimingBomb[i] == 1)
{
BlowPlantedBomb(i);
Delete3DTextLabel(PlayerBombText[i]);
PlayerTimingBomb[i] =0;
}