Something like this then..
PHP Code:
new szData[128];
new sz1[16], sz2[16], sz3[16];
new Float:vOrigin[3];
new file = fopen(g_File, "rt");
while (!feof(file))
{
fgets(file, szData, 128);
parse(szData, sz1, 16, sz2, 16, sz3, 16);
vOrigin[0] = str_to_float(sz1);
vOrigin[1] = str_to_float(sz2);
vOrigin[2] = str_to_float(sz3);
}
Correct? Thanks a bunch, ark and digital.
EDIT:
How can I remove an entity? Could I use get_user_aiming and get the classname of the ent and remove it?
__________________