14.07.2012, 19:13
yes i know i am not a beginner i just don't have 1 pickup they are plenty
so what do i want to do ?
just like this code does (if there was a function called GetPickuptPos(i,x,y,z);
so what do i want to do ?
just like this code does (if there was a function called GetPickuptPos(i,x,y,z);
pawn Код:
for(new i=0;i<MAX_PICKUPS();i++) {
new Float:x,Float:y,Float:z;
new str[128];
new Text3D:pid;
GetPickuptPos(i,x,y,z);//this is what i need
pid = Create3DTextLabel("",0xFFFF00AA,x,y,z+2.5,100.0,0,0);
format(str,sizeof(str),"Pickupid %d",i);
Update3DTextLabelText(pid,0xFFFF00AA,str);
}