25.12.2010, 01:28
I have a problem, I want to make car plates that each car has a plate, of course, everyone will have a different number ... arrays can not see because I'm doing something wrong but I do not know what else, help
OnGameModeInit
Код:
new Text3D:Reg[MAX_VEHICLES];
Код:
new str[10];
for(new d=1; d<100; d++)
{
format(str,10,"Los Santos 00%d",d);
Reg[d] = Create3DTextLabel(str, 0x43ADADFF , 0.0, 0.0, 0.0, 15.0, 0, 1);
}

